[PATCH v2 7/8] gitlab: add --without-default-features build

Alex Bennée posted 8 patches 5 years, 2 months ago
[PATCH v2 7/8] gitlab: add --without-default-features build
Posted by Alex Bennée 5 years, 2 months ago
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>

---
v2
  - swap with centos8, don't include --without-default-devuces
---
 .gitlab-ci.yml | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2134453717..229545bc03 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -521,6 +521,13 @@ build-without-default-devices:
     IMAGE: centos8
     CONFIGURE_ARGS: --without-default-devices --disable-user
 
+build-without-default-features:
+  <<: *native_build_job_definition
+  variables:
+    IMAGE: debian-amd64
+    CONFIGURE_ARGS: --without-default-features --disable-user
+    MAKE_CHECK_ARGS: check-unit
+
 check-patch:
   stage: build
   image: $CI_REGISTRY_IMAGE/qemu/centos8:latest
-- 
2.20.1


Re: [PATCH v2 7/8] gitlab: add --without-default-features build
Posted by Thomas Huth 5 years, 2 months ago
On 10/12/2020 20.04, Alex Bennée wrote:
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> 
> ---
> v2
>   - swap with centos8, don't include --without-default-devuces
> ---
>  .gitlab-ci.yml | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index 2134453717..229545bc03 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -521,6 +521,13 @@ build-without-default-devices:
>      IMAGE: centos8
>      CONFIGURE_ARGS: --without-default-devices --disable-user
>  
> +build-without-default-features:
> +  <<: *native_build_job_definition
> +  variables:
> +    IMAGE: debian-amd64
> +    CONFIGURE_ARGS: --without-default-features --disable-user
> +    MAKE_CHECK_ARGS: check-unit
> +
>  check-patch:
>    stage: build
>    image: $CI_REGISTRY_IMAGE/qemu/centos8:latest
> 

Reviewed-by: Thomas Huth <thuth@redhat.com>