xenomai.lists.linux.dev archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ci: Run qemu jobs only for the latest supported kernel version
@ 2023-03-22 23:59 Florian Bezdeka
  2023-03-22 23:59 ` [PATCH 2/2] ci: Limit ci jobs, remove qemu compat jobs Florian Bezdeka
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Florian Bezdeka @ 2023-03-22 23:59 UTC (permalink / raw)
  To: xenomai; +Cc: jan.kiszka, Florian Bezdeka

Each branch (represented by the xenomai_<branch>.yml files) can now
define the latest kernel version that is supported by this branch. The
qemu build and test jobs will only be run for this kernel version.

Note: The stable/v3.0.x and stable/v3.1.x branches do not define a
latest kernel version. For those branches no qemu build and test jobs
will be scheduled. For stable/v3.0.x the situation is unchanged,
for stable/v3.1.x no qemu tasks will be scheduled anymore.

All qemu jobs can be re-enabled on pipeline creation time when the env
variale named ALL_QEMU_JOBS is set to "true". CI documentation has been
updated.

ALL_QEMU_JOBS and LAVA_TESTS_ENABLED might be feeded in by the gitlab UI
to limit the number of CI jobs.

We have to forward this variables to the downstream pipelines. Previously
they were defined with their default values in downstream pipelines which
made it impossible to overwrite the default from outside.

Signed-off-by: Florian Bezdeka <florian.bezdeka@siemens.com>
---
 .gitlab-ci.yml        |  7 +++++++
 ci/gitlab-ci-base.yml | 25 ++++++++++++++++++-------
 ci/xenomai_3_2_x.yml  |  1 +
 ci/xenomai_next.yml   |  1 +
 tests/README.md       |  4 ++++
 5 files changed, 31 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 58398fc..58d61b1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,6 +9,10 @@
 # SPDX-License-Identifier: MIT
 #
 
+variables:
+  LAVA_TESTS_ENABLED: "true"
+  ALL_QEMU_JOBS: "false"
+
 stages:
   - parent
 
@@ -16,6 +20,9 @@ stages:
   stage: parent
   trigger:
     strategy: depend
+  variables:
+    LAVA_TESTS_ENABLED: "${LAVA_TESTS_ENABLED}" 
+    ALL_QEMU_JOBS: "${ALL_QEMU_JOBS}"
   rules:
     - if: '$ONLY_RUN == null || $ONLY_RUN == $CI_JOB_NAME'
 
diff --git a/ci/gitlab-ci-base.yml b/ci/gitlab-ci-base.yml
index ee71ea3..f1980b6 100644
--- a/ci/gitlab-ci-base.yml
+++ b/ci/gitlab-ci-base.yml
@@ -20,7 +20,6 @@ variables:
   no_proxy: "$NO_PROXY"
   ISAR_IMAGE: demo-image
   ISAR_DISTRIBUTION: xenomai-demo
-  LAVA_TESTS_ENABLED: "true"
   BUILD_IDENTIFIER: "xenomai-${XENOMAI_VERSION}_kernel-${KERNEL_VERSION}"
 
 default:
@@ -45,6 +44,12 @@ default:
     - kas build kas.yml:board-${TARGET}.yml${XENOMAI_BUILD_OPTION}${LINUX_BUILD_OPTION}${BUILD_OPTIONS}:opt-ci.yml
     - if [ -n "${USE_S3_BUCKET}" ]; then scripts/deploy_to_aws.sh ${TARGET}; fi
 
+.build-qemu:
+  extends: .build
+  rules:
+    - if: '$KERNEL_VERSION == $LATEST_KERNEL_VERSION'
+    - if: '$ALL_QEMU_JOBS == "true"'
+
 .test:
   extends: .common-config
   stage: test
@@ -62,33 +67,39 @@ default:
   rules:
     - if: '$LAVA_TESTS_ENABLED == "true"'
 
+.test-qemu:
+  extends: .test
+  rules:
+    - if: '$KERNEL_VERSION == $LATEST_KERNEL_VERSION'
+    - if: '$ALL_QEMU_JOBS == "true"'
+
 .build:qemu-amd64:
-  extends: .build
+  extends: .build-qemu
   variables:
     TARGET: qemu-amd64
 
 .lava-test:qemu-amd64:
-  extends: .test
+  extends: .test-qemu
   variables:
     TARGET: qemu-amd64
 
 .build:qemu-armhf:
-  extends: .build
+  extends: .build-qemu
   variables:
     TARGET: qemu-armhf
 
 .lava-test:qemu-armhf:
-  extends: .test
+  extends: .test-qemu
   variables:
     TARGET: qemu-armhf
 
 .build:qemu-arm64:
-  extends: .build
+  extends: .build-qemu
   variables:
     TARGET: qemu-arm64
 
 .lava-test:qemu-arm64:
-  extends: .test
+  extends: .test-qemu
   variables:
     TARGET: qemu-arm64
 
diff --git a/ci/xenomai_3_2_x.yml b/ci/xenomai_3_2_x.yml
index 3ee0b7d..781eec8 100644
--- a/ci/xenomai_3_2_x.yml
+++ b/ci/xenomai_3_2_x.yml
@@ -20,3 +20,4 @@ include:
 variables:
   XENOMAI_BUILD_OPTION: ":opt-xenomai-3.2.x.yml"
   XENOMAI_VERSION: "3.2.x"
+  LATEST_KERNEL_VERSION: "5.15"
diff --git a/ci/xenomai_next.yml b/ci/xenomai_next.yml
index 3e4d513..b611e60 100644
--- a/ci/xenomai_next.yml
+++ b/ci/xenomai_next.yml
@@ -19,3 +19,4 @@ include:
 variables:
   XENOMAI_BUILD_OPTION: ":opt-xenomai-next.yml"
   XENOMAI_VERSION: "next"
+  LATEST_KERNEL_VERSION: "6.1"
diff --git a/tests/README.md b/tests/README.md
index 50942df..c092d54 100644
--- a/tests/README.md
+++ b/tests/README.md
@@ -106,6 +106,10 @@ The following variables are used and set by the ci system:
   - `ALT_DNS_SERVER`: optional, can be set to something like "8.8.8.8" to use a specific DNS server
   - `DISTRO_APT_PREMIRRORS`: optional, can be set to something like "deb\.debian\.org cdn-aws.deb.debian.org\n" to use a specific Debian mirror
 
+- CI job "filers":
+  - `ALL_QEMU_JOBS`: Default is false. Set to true to enable all qemu based jobs
+  - `LAVA_TESTS_ENABLED`: Default is true. Set to false to disable all LAVA jobs
+
 - LAVA settings:
   - `LAVA_MASTER_ACCOUNT`: lava master account name to register lavacli for test execution
   - `LAVA_MASTER_TOKEN`: token to connect with the lava master
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] ci: Limit ci jobs, remove qemu compat jobs
  2023-03-22 23:59 [PATCH 1/2] ci: Run qemu jobs only for the latest supported kernel version Florian Bezdeka
@ 2023-03-22 23:59 ` Florian Bezdeka
  2023-03-22 23:59 ` [xenomai-images][PATCH v2 1/2] ci: Run qemu jobs only for the latest supported kernel version Florian Bezdeka
  2023-03-22 23:59 ` [xenomai-images][PATCH v2 2/2] ci: Limit ci jobs, remove qemu compat jobs Florian Bezdeka
  2 siblings, 0 replies; 5+ messages in thread
From: Florian Bezdeka @ 2023-03-22 23:59 UTC (permalink / raw)
  To: xenomai; +Cc: jan.kiszka, Florian Bezdeka

One more optimization to narrow down the number of CI jobs that we spawn
for each CI run.

Signed-off-by: Florian Bezdeka <florian.bezdeka@siemens.com>
---
 ci/compat_jobs.yml | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/ci/compat_jobs.yml b/ci/compat_jobs.yml
index 9308679..d8ee86b 100644
--- a/ci/compat_jobs.yml
+++ b/ci/compat_jobs.yml
@@ -9,22 +9,6 @@
 # SPDX-License-Identifier: MIT
 #
 
-build-5.15-compat:qemu-amd64:
-  extends:
-    - .build:qemu-amd64
-    - .compat-vars
-  variables:
-    LINUX_BUILD_OPTION: ":opt-linux-latest-5.15.yml"
-    KERNEL_VERSION: "5.15"
-
-lava-test-5.15-compat:qemu-amd64:
-  needs: [ "build-5.15-compat:qemu-amd64" ]
-  extends:
-    - .lava-test:qemu-amd64
-    - .compat-vars
-  variables:
-    KERNEL_VERSION: "5.15"
-
 build-5.15-compat:x86-64-efi:
   extends:
     - .build:x86-64-efi
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [xenomai-images][PATCH v2 1/2] ci: Run qemu jobs only for the latest supported kernel version
  2023-03-22 23:59 [PATCH 1/2] ci: Run qemu jobs only for the latest supported kernel version Florian Bezdeka
  2023-03-22 23:59 ` [PATCH 2/2] ci: Limit ci jobs, remove qemu compat jobs Florian Bezdeka
@ 2023-03-22 23:59 ` Florian Bezdeka
  2023-03-23  5:10   ` Jan Kiszka
  2023-03-22 23:59 ` [xenomai-images][PATCH v2 2/2] ci: Limit ci jobs, remove qemu compat jobs Florian Bezdeka
  2 siblings, 1 reply; 5+ messages in thread
From: Florian Bezdeka @ 2023-03-22 23:59 UTC (permalink / raw)
  To: xenomai; +Cc: jan.kiszka, Florian Bezdeka

Each branch (represented by the xenomai_<branch>.yml files) can now
define the latest kernel version that is supported by this branch. The
qemu build and test jobs will only be run for this kernel version.

Note: The stable/v3.0.x and stable/v3.1.x branches do not define a
latest kernel version. For those branches no qemu build and test jobs
will be scheduled. For stable/v3.0.x the situation is unchanged,
for stable/v3.1.x no qemu tasks will be scheduled anymore.

All qemu jobs can be re-enabled on pipeline creation time when the env
variale named ALL_QEMU_JOBS is set to "true". CI documentation has been
updated.

ALL_QEMU_JOBS and LAVA_TESTS_ENABLED might be feeded in by the gitlab UI
to limit the number of CI jobs.

We have to forward this variables to the downstream pipelines. Previously
they were defined with their default values in downstream pipelines which
made it impossible to overwrite the default from outside.

Signed-off-by: Florian Bezdeka <florian.bezdeka@siemens.com>
---

v2:
  - Fixed (GUI) variable forwarding from parent to child pipelines
    Side effect was missing test jobs.
  - Disable all LAVA tests when LAVA_TESTS_ENABLED is set to != true (GUI)

 .gitlab-ci.yml        |  6 ++++++
 ci/gitlab-ci-base.yml | 27 ++++++++++++++++++++-------
 ci/xenomai_3_2_x.yml  |  1 +
 ci/xenomai_next.yml   |  1 +
 tests/README.md       |  4 ++++
 5 files changed, 32 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 58398fc..6e4f1df 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -9,6 +9,10 @@
 # SPDX-License-Identifier: MIT
 #
 
+variables:
+  LAVA_TESTS_ENABLED: "true"
+  ALL_QEMU_JOBS: "false"
+
 stages:
   - parent
 
@@ -16,6 +20,8 @@ stages:
   stage: parent
   trigger:
     strategy: depend
+    forward:
+      pipeline_variables: true
   rules:
     - if: '$ONLY_RUN == null || $ONLY_RUN == $CI_JOB_NAME'
 
diff --git a/ci/gitlab-ci-base.yml b/ci/gitlab-ci-base.yml
index ee71ea3..b7dd4dc 100644
--- a/ci/gitlab-ci-base.yml
+++ b/ci/gitlab-ci-base.yml
@@ -20,7 +20,6 @@ variables:
   no_proxy: "$NO_PROXY"
   ISAR_IMAGE: demo-image
   ISAR_DISTRIBUTION: xenomai-demo
-  LAVA_TESTS_ENABLED: "true"
   BUILD_IDENTIFIER: "xenomai-${XENOMAI_VERSION}_kernel-${KERNEL_VERSION}"
 
 default:
@@ -45,6 +44,12 @@ default:
     - kas build kas.yml:board-${TARGET}.yml${XENOMAI_BUILD_OPTION}${LINUX_BUILD_OPTION}${BUILD_OPTIONS}:opt-ci.yml
     - if [ -n "${USE_S3_BUCKET}" ]; then scripts/deploy_to_aws.sh ${TARGET}; fi
 
+.build-qemu:
+  extends: .build
+  rules:
+    - if: '$KERNEL_VERSION == $LATEST_KERNEL_VERSION'
+    - if: '$ALL_QEMU_JOBS == "true"'
+
 .test:
   extends: .common-config
   stage: test
@@ -62,33 +67,41 @@ default:
   rules:
     - if: '$LAVA_TESTS_ENABLED == "true"'
 
+.test-qemu:
+  extends: .test
+  rules:
+    - if: '$LAVA_TESTS_ENABLED != "true"'
+      when: never
+    - if: '$KERNEL_VERSION == $LATEST_KERNEL_VERSION'
+    - if: '$ALL_QEMU_JOBS == "true"'
+
 .build:qemu-amd64:
-  extends: .build
+  extends: .build-qemu
   variables:
     TARGET: qemu-amd64
 
 .lava-test:qemu-amd64:
-  extends: .test
+  extends: .test-qemu
   variables:
     TARGET: qemu-amd64
 
 .build:qemu-armhf:
-  extends: .build
+  extends: .build-qemu
   variables:
     TARGET: qemu-armhf
 
 .lava-test:qemu-armhf:
-  extends: .test
+  extends: .test-qemu
   variables:
     TARGET: qemu-armhf
 
 .build:qemu-arm64:
-  extends: .build
+  extends: .build-qemu
   variables:
     TARGET: qemu-arm64
 
 .lava-test:qemu-arm64:
-  extends: .test
+  extends: .test-qemu
   variables:
     TARGET: qemu-arm64
 
diff --git a/ci/xenomai_3_2_x.yml b/ci/xenomai_3_2_x.yml
index 3ee0b7d..781eec8 100644
--- a/ci/xenomai_3_2_x.yml
+++ b/ci/xenomai_3_2_x.yml
@@ -20,3 +20,4 @@ include:
 variables:
   XENOMAI_BUILD_OPTION: ":opt-xenomai-3.2.x.yml"
   XENOMAI_VERSION: "3.2.x"
+  LATEST_KERNEL_VERSION: "5.15"
diff --git a/ci/xenomai_next.yml b/ci/xenomai_next.yml
index 3e4d513..b611e60 100644
--- a/ci/xenomai_next.yml
+++ b/ci/xenomai_next.yml
@@ -19,3 +19,4 @@ include:
 variables:
   XENOMAI_BUILD_OPTION: ":opt-xenomai-next.yml"
   XENOMAI_VERSION: "next"
+  LATEST_KERNEL_VERSION: "6.1"
diff --git a/tests/README.md b/tests/README.md
index 50942df..c092d54 100644
--- a/tests/README.md
+++ b/tests/README.md
@@ -106,6 +106,10 @@ The following variables are used and set by the ci system:
   - `ALT_DNS_SERVER`: optional, can be set to something like "8.8.8.8" to use a specific DNS server
   - `DISTRO_APT_PREMIRRORS`: optional, can be set to something like "deb\.debian\.org cdn-aws.deb.debian.org\n" to use a specific Debian mirror
 
+- CI job "filers":
+  - `ALL_QEMU_JOBS`: Default is false. Set to true to enable all qemu based jobs
+  - `LAVA_TESTS_ENABLED`: Default is true. Set to false to disable all LAVA jobs
+
 - LAVA settings:
   - `LAVA_MASTER_ACCOUNT`: lava master account name to register lavacli for test execution
   - `LAVA_MASTER_TOKEN`: token to connect with the lava master
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [xenomai-images][PATCH v2 2/2] ci: Limit ci jobs, remove qemu compat jobs
  2023-03-22 23:59 [PATCH 1/2] ci: Run qemu jobs only for the latest supported kernel version Florian Bezdeka
  2023-03-22 23:59 ` [PATCH 2/2] ci: Limit ci jobs, remove qemu compat jobs Florian Bezdeka
  2023-03-22 23:59 ` [xenomai-images][PATCH v2 1/2] ci: Run qemu jobs only for the latest supported kernel version Florian Bezdeka
@ 2023-03-22 23:59 ` Florian Bezdeka
  2 siblings, 0 replies; 5+ messages in thread
From: Florian Bezdeka @ 2023-03-22 23:59 UTC (permalink / raw)
  To: xenomai; +Cc: jan.kiszka, Florian Bezdeka

One more optimization to narrow down the number of CI jobs that we spawn
for each CI run.

Signed-off-by: Florian Bezdeka <florian.bezdeka@siemens.com>
---

v2:
  - No changes, resending to keep the patch posting consistent

 ci/compat_jobs.yml | 16 ----------------
 1 file changed, 16 deletions(-)

diff --git a/ci/compat_jobs.yml b/ci/compat_jobs.yml
index 9308679..d8ee86b 100644
--- a/ci/compat_jobs.yml
+++ b/ci/compat_jobs.yml
@@ -9,22 +9,6 @@
 # SPDX-License-Identifier: MIT
 #
 
-build-5.15-compat:qemu-amd64:
-  extends:
-    - .build:qemu-amd64
-    - .compat-vars
-  variables:
-    LINUX_BUILD_OPTION: ":opt-linux-latest-5.15.yml"
-    KERNEL_VERSION: "5.15"
-
-lava-test-5.15-compat:qemu-amd64:
-  needs: [ "build-5.15-compat:qemu-amd64" ]
-  extends:
-    - .lava-test:qemu-amd64
-    - .compat-vars
-  variables:
-    KERNEL_VERSION: "5.15"
-
 build-5.15-compat:x86-64-efi:
   extends:
     - .build:x86-64-efi
-- 
2.39.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [xenomai-images][PATCH v2 1/2] ci: Run qemu jobs only for the latest supported kernel version
  2023-03-22 23:59 ` [xenomai-images][PATCH v2 1/2] ci: Run qemu jobs only for the latest supported kernel version Florian Bezdeka
@ 2023-03-23  5:10   ` Jan Kiszka
  0 siblings, 0 replies; 5+ messages in thread
From: Jan Kiszka @ 2023-03-23  5:10 UTC (permalink / raw)
  To: Florian Bezdeka, xenomai

On 23.03.23 00:59, Florian Bezdeka wrote:
> Each branch (represented by the xenomai_<branch>.yml files) can now
> define the latest kernel version that is supported by this branch. The
> qemu build and test jobs will only be run for this kernel version.
> 
> Note: The stable/v3.0.x and stable/v3.1.x branches do not define a
> latest kernel version. For those branches no qemu build and test jobs
> will be scheduled. For stable/v3.0.x the situation is unchanged,
> for stable/v3.1.x no qemu tasks will be scheduled anymore.
> 
> All qemu jobs can be re-enabled on pipeline creation time when the env
> variale named ALL_QEMU_JOBS is set to "true". CI documentation has been
> updated.
> 
> ALL_QEMU_JOBS and LAVA_TESTS_ENABLED might be feeded in by the gitlab UI
> to limit the number of CI jobs.
> 
> We have to forward this variables to the downstream pipelines. Previously
> they were defined with their default values in downstream pipelines which
> made it impossible to overwrite the default from outside.
> 
> Signed-off-by: Florian Bezdeka <florian.bezdeka@siemens.com>
> ---
> 
> v2:
>   - Fixed (GUI) variable forwarding from parent to child pipelines
>     Side effect was missing test jobs.
>   - Disable all LAVA tests when LAVA_TESTS_ENABLED is set to != true (GUI)
> 
>  .gitlab-ci.yml        |  6 ++++++
>  ci/gitlab-ci-base.yml | 27 ++++++++++++++++++++-------
>  ci/xenomai_3_2_x.yml  |  1 +
>  ci/xenomai_next.yml   |  1 +
>  tests/README.md       |  4 ++++
>  5 files changed, 32 insertions(+), 7 deletions(-)
> 
> diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
> index 58398fc..6e4f1df 100644
> --- a/.gitlab-ci.yml
> +++ b/.gitlab-ci.yml
> @@ -9,6 +9,10 @@
>  # SPDX-License-Identifier: MIT
>  #
>  
> +variables:
> +  LAVA_TESTS_ENABLED: "true"
> +  ALL_QEMU_JOBS: "false"
> +
>  stages:
>    - parent
>  
> @@ -16,6 +20,8 @@ stages:
>    stage: parent
>    trigger:
>      strategy: depend
> +    forward:
> +      pipeline_variables: true
>    rules:
>      - if: '$ONLY_RUN == null || $ONLY_RUN == $CI_JOB_NAME'
>  
> diff --git a/ci/gitlab-ci-base.yml b/ci/gitlab-ci-base.yml
> index ee71ea3..b7dd4dc 100644
> --- a/ci/gitlab-ci-base.yml
> +++ b/ci/gitlab-ci-base.yml
> @@ -20,7 +20,6 @@ variables:
>    no_proxy: "$NO_PROXY"
>    ISAR_IMAGE: demo-image
>    ISAR_DISTRIBUTION: xenomai-demo
> -  LAVA_TESTS_ENABLED: "true"
>    BUILD_IDENTIFIER: "xenomai-${XENOMAI_VERSION}_kernel-${KERNEL_VERSION}"
>  
>  default:
> @@ -45,6 +44,12 @@ default:
>      - kas build kas.yml:board-${TARGET}.yml${XENOMAI_BUILD_OPTION}${LINUX_BUILD_OPTION}${BUILD_OPTIONS}:opt-ci.yml
>      - if [ -n "${USE_S3_BUCKET}" ]; then scripts/deploy_to_aws.sh ${TARGET}; fi
>  
> +.build-qemu:
> +  extends: .build
> +  rules:
> +    - if: '$KERNEL_VERSION == $LATEST_KERNEL_VERSION'
> +    - if: '$ALL_QEMU_JOBS == "true"'
> +
>  .test:
>    extends: .common-config
>    stage: test
> @@ -62,33 +67,41 @@ default:
>    rules:
>      - if: '$LAVA_TESTS_ENABLED == "true"'
>  
> +.test-qemu:
> +  extends: .test
> +  rules:
> +    - if: '$LAVA_TESTS_ENABLED != "true"'
> +      when: never
> +    - if: '$KERNEL_VERSION == $LATEST_KERNEL_VERSION'
> +    - if: '$ALL_QEMU_JOBS == "true"'
> +
>  .build:qemu-amd64:
> -  extends: .build
> +  extends: .build-qemu
>    variables:
>      TARGET: qemu-amd64
>  
>  .lava-test:qemu-amd64:
> -  extends: .test
> +  extends: .test-qemu
>    variables:
>      TARGET: qemu-amd64
>  
>  .build:qemu-armhf:
> -  extends: .build
> +  extends: .build-qemu
>    variables:
>      TARGET: qemu-armhf
>  
>  .lava-test:qemu-armhf:
> -  extends: .test
> +  extends: .test-qemu
>    variables:
>      TARGET: qemu-armhf
>  
>  .build:qemu-arm64:
> -  extends: .build
> +  extends: .build-qemu
>    variables:
>      TARGET: qemu-arm64
>  
>  .lava-test:qemu-arm64:
> -  extends: .test
> +  extends: .test-qemu
>    variables:
>      TARGET: qemu-arm64
>  
> diff --git a/ci/xenomai_3_2_x.yml b/ci/xenomai_3_2_x.yml
> index 3ee0b7d..781eec8 100644
> --- a/ci/xenomai_3_2_x.yml
> +++ b/ci/xenomai_3_2_x.yml
> @@ -20,3 +20,4 @@ include:
>  variables:
>    XENOMAI_BUILD_OPTION: ":opt-xenomai-3.2.x.yml"
>    XENOMAI_VERSION: "3.2.x"
> +  LATEST_KERNEL_VERSION: "5.15"
> diff --git a/ci/xenomai_next.yml b/ci/xenomai_next.yml
> index 3e4d513..b611e60 100644
> --- a/ci/xenomai_next.yml
> +++ b/ci/xenomai_next.yml
> @@ -19,3 +19,4 @@ include:
>  variables:
>    XENOMAI_BUILD_OPTION: ":opt-xenomai-next.yml"
>    XENOMAI_VERSION: "next"
> +  LATEST_KERNEL_VERSION: "6.1"
> diff --git a/tests/README.md b/tests/README.md
> index 50942df..c092d54 100644
> --- a/tests/README.md
> +++ b/tests/README.md
> @@ -106,6 +106,10 @@ The following variables are used and set by the ci system:
>    - `ALT_DNS_SERVER`: optional, can be set to something like "8.8.8.8" to use a specific DNS server
>    - `DISTRO_APT_PREMIRRORS`: optional, can be set to something like "deb\.debian\.org cdn-aws.deb.debian.org\n" to use a specific Debian mirror
>  
> +- CI job "filers":
> +  - `ALL_QEMU_JOBS`: Default is false. Set to true to enable all qemu based jobs
> +  - `LAVA_TESTS_ENABLED`: Default is true. Set to false to disable all LAVA jobs
> +
>  - LAVA settings:
>    - `LAVA_MASTER_ACCOUNT`: lava master account name to register lavacli for test execution
>    - `LAVA_MASTER_TOKEN`: token to connect with the lava master

Thanks, both taken to next. Looks better now:
https://source.denx.de/Xenomai/xenomai-images/-/pipelines/15707

Jan

-- 
Siemens AG, Technology
Competence Center Embedded Linux


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-03-23  5:40 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-22 23:59 [PATCH 1/2] ci: Run qemu jobs only for the latest supported kernel version Florian Bezdeka
2023-03-22 23:59 ` [PATCH 2/2] ci: Limit ci jobs, remove qemu compat jobs Florian Bezdeka
2023-03-22 23:59 ` [xenomai-images][PATCH v2 1/2] ci: Run qemu jobs only for the latest supported kernel version Florian Bezdeka
2023-03-23  5:10   ` Jan Kiszka
2023-03-22 23:59 ` [xenomai-images][PATCH v2 2/2] ci: Limit ci jobs, remove qemu compat jobs Florian Bezdeka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).