qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/6] gitlab-ci: Allow using FreeBSD runners
@ 2021-05-12  5:37 Philippe Mathieu-Daudé
  2021-05-12  5:37 ` [PATCH v2 1/6] gitlab-ci: Extract &environment_variables template Philippe Mathieu-Daudé
                   ` (5 more replies)
  0 siblings, 6 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-05-12  5:37 UTC (permalink / raw)
  To: qemu-devel
  Cc: Thomas Huth, Kyle Evans, Philippe Mathieu-Daudé,
	Wainer dos Santos Moschetta, Willian Rampazzo, Alex Bennée,
	Warner Losh

Minor shell fixes to use FreeBSD runners.

Since v1:
- share the FreeBSD jobs, restricted with QEMU_CUSTOM_RUNNER=freebsd
  so mergeable in mainstream.

Jobs: https://gitlab.com/philmd/qemu/-/pipelines/301361673

Based-on: <20210511072952.2813358-1-f4bug@amsat.org>
gitlab-ci: Ease forks pipeline workflow
which itself is based on:
https://gitlab.com/thuth/qemu.git tags/pull-request-2021-05-03

Philippe Mathieu-Daudé (6):
  gitlab-ci: Extract &environment_variables template
  gitlab-ci: Adapt JOBS variable for FreeBSD runners
  gitlab-ci: Run GNU make via the $MAKE variable
  gitlab-ci: Add ccache in $PATH and display statistics
  gitlab-ci: Simplify before/after script for Avocado based jobs
  gitlab-ci: Add FreeBSD jobs

 .gitlab-ci.d/buildtest-freebsd.yml  | 59 +++++++++++++++++++++++++++++
 .gitlab-ci.d/buildtest-template.yml | 38 +++++++++++++++----
 .gitlab-ci.d/qemu-project.yml       |  1 +
 3 files changed, 91 insertions(+), 7 deletions(-)
 create mode 100644 .gitlab-ci.d/buildtest-freebsd.yml

-- 
2.26.3



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

* [PATCH v2 1/6] gitlab-ci: Extract &environment_variables template
  2021-05-12  5:37 [PATCH v2 0/6] gitlab-ci: Allow using FreeBSD runners Philippe Mathieu-Daudé
@ 2021-05-12  5:37 ` Philippe Mathieu-Daudé
  2021-05-12  5:37 ` [PATCH v2 2/6] gitlab-ci: Adapt JOBS variable for FreeBSD runners Philippe Mathieu-Daudé
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-05-12  5:37 UTC (permalink / raw)
  To: qemu-devel
  Cc: Thomas Huth, Kyle Evans, Philippe Mathieu-Daudé,
	Wainer dos Santos Moschetta, Willian Rampazzo, Alex Bennée,
	Warner Losh

To be able to set the same environment variables to multiple jobs,
extract what we currently have as a template.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 .gitlab-ci.d/buildtest-template.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.d/buildtest-template.yml b/.gitlab-ci.d/buildtest-template.yml
index 32aaef1a213..58b01744751 100644
--- a/.gitlab-ci.d/buildtest-template.yml
+++ b/.gitlab-ci.d/buildtest-template.yml
@@ -1,8 +1,11 @@
+.environment_variables_template:
+  before_script:
+    - JOBS=$(expr $(nproc) + 1)
+
 .native_build_job_template:
   stage: build
   image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:latest
-  before_script:
-    - JOBS=$(expr $(nproc) + 1)
+  extends: .environment_variables_template
   script:
     - if test -n "$LD_JOBS";
       then
-- 
2.26.3



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

* [PATCH v2 2/6] gitlab-ci: Adapt JOBS variable for FreeBSD runners
  2021-05-12  5:37 [PATCH v2 0/6] gitlab-ci: Allow using FreeBSD runners Philippe Mathieu-Daudé
  2021-05-12  5:37 ` [PATCH v2 1/6] gitlab-ci: Extract &environment_variables template Philippe Mathieu-Daudé
@ 2021-05-12  5:37 ` Philippe Mathieu-Daudé
  2021-05-12  5:37 ` [PATCH v2 3/6] gitlab-ci: Run GNU make via the $MAKE variable Philippe Mathieu-Daudé
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-05-12  5:37 UTC (permalink / raw)
  To: qemu-devel
  Cc: Thomas Huth, Kyle Evans, Philippe Mathieu-Daudé,
	Wainer dos Santos Moschetta, Willian Rampazzo, Alex Bennée,
	Warner Losh

'nproc' is not available on FreeBSD:

  $ JOBS=$(expr $(nproc) + 1)
  bash: line 119: nproc: command not found
  expr: syntax error

Instead, use 'sysctl -n hw.ncpu'.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 .gitlab-ci.d/buildtest-template.yml | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.d/buildtest-template.yml b/.gitlab-ci.d/buildtest-template.yml
index 58b01744751..fe4f18595ac 100644
--- a/.gitlab-ci.d/buildtest-template.yml
+++ b/.gitlab-ci.d/buildtest-template.yml
@@ -1,6 +1,16 @@
 .environment_variables_template:
   before_script:
-    - JOBS=$(expr $(nproc) + 1)
+    - if
+        test $(uname) = "FreeBSD"
+        ;
+      then
+        JOBS=$(sysctl -n hw.ncpu)
+        ;
+      else
+        JOBS=$(expr $(nproc) + 1)
+        ;
+      fi
+    - echo "=== Using $JOBS simultaneous jobs ==="
 
 .native_build_job_template:
   stage: build
-- 
2.26.3



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

* [PATCH v2 3/6] gitlab-ci: Run GNU make via the $MAKE variable
  2021-05-12  5:37 [PATCH v2 0/6] gitlab-ci: Allow using FreeBSD runners Philippe Mathieu-Daudé
  2021-05-12  5:37 ` [PATCH v2 1/6] gitlab-ci: Extract &environment_variables template Philippe Mathieu-Daudé
  2021-05-12  5:37 ` [PATCH v2 2/6] gitlab-ci: Adapt JOBS variable for FreeBSD runners Philippe Mathieu-Daudé
@ 2021-05-12  5:37 ` Philippe Mathieu-Daudé
  2021-05-12  5:37 ` [PATCH v2 4/6] gitlab-ci: Add ccache in $PATH and display statistics Philippe Mathieu-Daudé
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-05-12  5:37 UTC (permalink / raw)
  To: qemu-devel
  Cc: Thomas Huth, Kyle Evans, Philippe Mathieu-Daudé,
	Wainer dos Santos Moschetta, Willian Rampazzo, Alex Bennée,
	Warner Losh

Add the $MAKE variable to call GNU make, and set it to 'gmake'
on FreeBSD to avoid:

  $ make -j"$JOBS"
  make: Unknown modifier ','
  make: "/builds/dTyar424/0/qemu/build/Makefile" line 3: Need an operator
  make: "/builds/dTyar424/0/qemu/build/Makefile" line 4: Missing dependency operator

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 .gitlab-ci.d/buildtest-template.yml | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci.d/buildtest-template.yml b/.gitlab-ci.d/buildtest-template.yml
index fe4f18595ac..f284d7a0eec 100644
--- a/.gitlab-ci.d/buildtest-template.yml
+++ b/.gitlab-ci.d/buildtest-template.yml
@@ -5,9 +5,11 @@
         ;
       then
         JOBS=$(sysctl -n hw.ncpu)
+        MAKE=gmake
         ;
       else
         JOBS=$(expr $(nproc) + 1)
+        MAKE=make
         ;
       fi
     - echo "=== Using $JOBS simultaneous jobs ==="
@@ -33,22 +35,23 @@
       then
         ../meson/meson.py configure . -Dbackend_max_links="$LD_JOBS" ;
       fi || exit 1;
-    - make -j"$JOBS"
+    - $MAKE -j"$JOBS"
     - if test -n "$MAKE_CHECK_ARGS";
       then
-        make -j"$JOBS" $MAKE_CHECK_ARGS ;
+        $MAKE -j"$JOBS" $MAKE_CHECK_ARGS ;
       fi
 
 .native_test_job_template:
   stage: test
   image: $CI_REGISTRY_IMAGE/qemu/$IMAGE:latest
+  extends: .environment_variables_template
   script:
     - scripts/git-submodule.sh update
         $(sed -n '/GIT_SUBMODULES=/ s/.*=// p' build/config-host.mak)
     - cd build
     - find . -type f -exec touch {} +
     # Avoid recompiling by hiding ninja with NINJA=":"
-    - make NINJA=":" $MAKE_CHECK_ARGS
+    - $MAKE NINJA=":" $MAKE_CHECK_ARGS
 
 .integration_test_job_template:
   extends: .native_test_job_template
-- 
2.26.3



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

* [PATCH v2 4/6] gitlab-ci: Add ccache in $PATH and display statistics
  2021-05-12  5:37 [PATCH v2 0/6] gitlab-ci: Allow using FreeBSD runners Philippe Mathieu-Daudé
                   ` (2 preceding siblings ...)
  2021-05-12  5:37 ` [PATCH v2 3/6] gitlab-ci: Run GNU make via the $MAKE variable Philippe Mathieu-Daudé
@ 2021-05-12  5:37 ` Philippe Mathieu-Daudé
  2021-05-12  5:37 ` [PATCH v2 5/6] gitlab-ci: Simplify before/after script for Avocado based jobs Philippe Mathieu-Daudé
  2021-05-12  5:37 ` [PATCH v2 6/6] gitlab-ci: Add FreeBSD jobs Philippe Mathieu-Daudé
  5 siblings, 0 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-05-12  5:37 UTC (permalink / raw)
  To: qemu-devel
  Cc: Thomas Huth, Kyle Evans, Philippe Mathieu-Daudé,
	Wainer dos Santos Moschetta, Willian Rampazzo, Alex Bennée,
	Warner Losh

If a runner has ccache installed, use it and display statistics
at the end of the build.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 .gitlab-ci.d/buildtest-template.yml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/.gitlab-ci.d/buildtest-template.yml b/.gitlab-ci.d/buildtest-template.yml
index f284d7a0eec..a625c697d3b 100644
--- a/.gitlab-ci.d/buildtest-template.yml
+++ b/.gitlab-ci.d/buildtest-template.yml
@@ -6,13 +6,18 @@
       then
         JOBS=$(sysctl -n hw.ncpu)
         MAKE=gmake
+        PATH=/usr/local/libexec/ccache:$PATH
         ;
       else
         JOBS=$(expr $(nproc) + 1)
         MAKE=make
+        PATH=/usr/lib/ccache:/usr/lib64/ccache:$PATH
         ;
       fi
     - echo "=== Using $JOBS simultaneous jobs ==="
+    - if command -v ccache > /dev/null ; then ccache --zero-stats ; fi
+  after_script:
+    - if command -v ccache > /dev/null ; then ccache --show-stats ; fi
 
 .native_build_job_template:
   stage: build
-- 
2.26.3



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

* [PATCH v2 5/6] gitlab-ci: Simplify before/after script for Avocado based jobs
  2021-05-12  5:37 [PATCH v2 0/6] gitlab-ci: Allow using FreeBSD runners Philippe Mathieu-Daudé
                   ` (3 preceding siblings ...)
  2021-05-12  5:37 ` [PATCH v2 4/6] gitlab-ci: Add ccache in $PATH and display statistics Philippe Mathieu-Daudé
@ 2021-05-12  5:37 ` Philippe Mathieu-Daudé
  2021-05-12  5:37 ` [PATCH v2 6/6] gitlab-ci: Add FreeBSD jobs Philippe Mathieu-Daudé
  5 siblings, 0 replies; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-05-12  5:37 UTC (permalink / raw)
  To: qemu-devel
  Cc: Thomas Huth, Kyle Evans, Philippe Mathieu-Daudé,
	Wainer dos Santos Moschetta, Willian Rampazzo, Alex Bennée,
	Warner Losh

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 .gitlab-ci.d/buildtest-template.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.d/buildtest-template.yml b/.gitlab-ci.d/buildtest-template.yml
index a625c697d3b..f968fa1ad99 100644
--- a/.gitlab-ci.d/buildtest-template.yml
+++ b/.gitlab-ci.d/buildtest-template.yml
@@ -74,7 +74,7 @@
       - build/tests/results/latest/test-results
     reports:
       junit: build/tests/results/latest/results.xml
-  before_script:
+  script:
     - mkdir -p ~/.config/avocado
     - echo "[datadir.paths]" > ~/.config/avocado/avocado.conf
     - echo "cache_dirs = ['${CI_PROJECT_DIR}/avocado-cache']"
@@ -85,6 +85,9 @@
         du -chs ${CI_PROJECT_DIR}/avocado-cache ;
       fi
     - export AVOCADO_ALLOW_UNTRUSTED_CODE=1
-  after_script:
     - cd build
+    - find . -type f -exec touch {} +
+    # Avoid recompiling by hiding ninja with NINJA=":"
+    - $MAKE NINJA=":" $MAKE_CHECK_ARGS
+  after_script:
     - du -chs ${CI_PROJECT_DIR}/avocado-cache
-- 
2.26.3



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

* [PATCH v2 6/6] gitlab-ci: Add FreeBSD jobs
  2021-05-12  5:37 [PATCH v2 0/6] gitlab-ci: Allow using FreeBSD runners Philippe Mathieu-Daudé
                   ` (4 preceding siblings ...)
  2021-05-12  5:37 ` [PATCH v2 5/6] gitlab-ci: Simplify before/after script for Avocado based jobs Philippe Mathieu-Daudé
@ 2021-05-12  5:37 ` Philippe Mathieu-Daudé
  2021-05-12 20:25   ` Warner Losh
  5 siblings, 1 reply; 8+ messages in thread
From: Philippe Mathieu-Daudé @ 2021-05-12  5:37 UTC (permalink / raw)
  To: qemu-devel
  Cc: Thomas Huth, Kyle Evans, Philippe Mathieu-Daudé,
	Wainer dos Santos Moschetta, Willian Rampazzo, Alex Bennée,
	Warner Losh

Add system/user emulation jobs on FreeBSD host.

To build these jobs, you need to add a FreeBSD runner and
add 'freebsd' to the QEMU_CUSTOM_RUNNER variable in your
GitLab project.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 .gitlab-ci.d/buildtest-freebsd.yml | 59 ++++++++++++++++++++++++++++++
 .gitlab-ci.d/qemu-project.yml      |  1 +
 2 files changed, 60 insertions(+)
 create mode 100644 .gitlab-ci.d/buildtest-freebsd.yml

diff --git a/.gitlab-ci.d/buildtest-freebsd.yml b/.gitlab-ci.d/buildtest-freebsd.yml
new file mode 100644
index 00000000000..683e815afbf
--- /dev/null
+++ b/.gitlab-ci.d/buildtest-freebsd.yml
@@ -0,0 +1,59 @@
+include:
+  - local: '/.gitlab-ci.d/buildtest-template.yml'
+
+.runner_freebsd_template:
+  rules:
+    # To enable thss job template, add 'freebsd' to the QEMU_CUSTOM_RUNNER
+    # variable in your project UI via Settings -> CI/CD -> Variables
+    # https://docs.gitlab.com/ee/ci/variables/README.html#project-cicd-variables
+    - if: $QEMU_CUSTOM_RUNNER =~ /freebsd/
+      when: always
+    - when: never
+  tags:
+    - freebsd
+
+build-user-freebsd:
+  extends:
+    - .runner_freebsd_template
+    - .native_build_job_template
+  image:
+  variables:
+    MAKE_CHECK_ARGS: check-build
+    CONFIGURE_ARGS: --disable-system --python=/usr/local/bin/python3.7
+
+build-system-freebsd:
+  extends:
+    - .runner_freebsd_template
+    - .native_build_job_template
+  image:
+  variables:
+    TARGETS: aarch64-softmmu avr-softmmu hppa-softmmu ppc64-softmmu
+      riscv64-softmmu s390x-softmmu x86_64-softmmu
+    MAKE_CHECK_ARGS: check-build
+    CONFIGURE_ARGS: --enable-trace-backends=log,simple,syslog
+      --python=/usr/local/bin/python3.7
+  artifacts:
+    expire_in: 2 days
+    paths:
+      - .git-submodule-status
+      - build
+
+check-system-freebsd:
+  extends:
+    - .runner_freebsd_template
+    - .native_test_job_template
+  needs:
+    - job: build-system-freebsd
+      artifacts: true
+  variables:
+    MAKE_CHECK_ARGS: check
+
+acceptance-system-freebsd:
+  extends:
+    - .runner_freebsd_template
+    - .integration_test_job_template
+  needs:
+    - job: build-system-freebsd
+      artifacts: true
+  variables:
+    MAKE_CHECK_ARGS: check-acceptance
diff --git a/.gitlab-ci.d/qemu-project.yml b/.gitlab-ci.d/qemu-project.yml
index 64cb2ba1da5..5dcf1d34c5b 100644
--- a/.gitlab-ci.d/qemu-project.yml
+++ b/.gitlab-ci.d/qemu-project.yml
@@ -8,4 +8,5 @@ include:
   - local: '/.gitlab-ci.d/containers.yml'
   - local: '/.gitlab-ci.d/crossbuilds.yml'
   - local: '/.gitlab-ci.d/buildtest.yml'
+  - local: '/.gitlab-ci.d/buildtest-freebsd.yml'
   - local: '/.gitlab-ci.d/static_checks.yml'
-- 
2.26.3



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

* Re: [PATCH v2 6/6] gitlab-ci: Add FreeBSD jobs
  2021-05-12  5:37 ` [PATCH v2 6/6] gitlab-ci: Add FreeBSD jobs Philippe Mathieu-Daudé
@ 2021-05-12 20:25   ` Warner Losh
  0 siblings, 0 replies; 8+ messages in thread
From: Warner Losh @ 2021-05-12 20:25 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé
  Cc: Thomas Huth, Kyle Evans, QEMU Developers,
	Wainer dos Santos Moschetta, Willian Rampazzo, Alex Bennée

[-- Attachment #1: Type: text/plain, Size: 3237 bytes --]

On Tue, May 11, 2021 at 11:37 PM Philippe Mathieu-Daudé <f4bug@amsat.org>
wrote:

> Add system/user emulation jobs on FreeBSD host.
>
> To build these jobs, you need to add a FreeBSD runner and
> add 'freebsd' to the QEMU_CUSTOM_RUNNER variable in your
> GitLab project.
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  .gitlab-ci.d/buildtest-freebsd.yml | 59 ++++++++++++++++++++++++++++++
>  .gitlab-ci.d/qemu-project.yml      |  1 +
>  2 files changed, 60 insertions(+)
>  create mode 100644 .gitlab-ci.d/buildtest-freebsd.yml
>

This looks good to my eye, modulo the typo below. Fix that and it's

Reviewed by: Warner Losh <imp@bsdimp.com>

I can't wait to use it...

Warner


> diff --git a/.gitlab-ci.d/buildtest-freebsd.yml
> b/.gitlab-ci.d/buildtest-freebsd.yml
> new file mode 100644
> index 00000000000..683e815afbf
> --- /dev/null
> +++ b/.gitlab-ci.d/buildtest-freebsd.yml
> @@ -0,0 +1,59 @@
> +include:
> +  - local: '/.gitlab-ci.d/buildtest-template.yml'
> +
> +.runner_freebsd_template:
> +  rules:
> +    # To enable thss job template, add 'freebsd' to the QEMU_CUSTOM_RUNNER
>

thss -> this


> +    # variable in your project UI via Settings -> CI/CD -> Variables
> +    #
> https://docs.gitlab.com/ee/ci/variables/README.html#project-cicd-variables
> +    - if: $QEMU_CUSTOM_RUNNER =~ /freebsd/
> +      when: always
> +    - when: never
> +  tags:
> +    - freebsd
> +
> +build-user-freebsd:
> +  extends:
> +    - .runner_freebsd_template
> +    - .native_build_job_template
> +  image:
> +  variables:
> +    MAKE_CHECK_ARGS: check-build
> +    CONFIGURE_ARGS: --disable-system --python=/usr/local/bin/python3.7
> +
> +build-system-freebsd:
> +  extends:
> +    - .runner_freebsd_template
> +    - .native_build_job_template
> +  image:
> +  variables:
> +    TARGETS: aarch64-softmmu avr-softmmu hppa-softmmu ppc64-softmmu
> +      riscv64-softmmu s390x-softmmu x86_64-softmmu
> +    MAKE_CHECK_ARGS: check-build
> +    CONFIGURE_ARGS: --enable-trace-backends=log,simple,syslog
> +      --python=/usr/local/bin/python3.7
> +  artifacts:
> +    expire_in: 2 days
> +    paths:
> +      - .git-submodule-status
> +      - build
> +
> +check-system-freebsd:
> +  extends:
> +    - .runner_freebsd_template
> +    - .native_test_job_template
> +  needs:
> +    - job: build-system-freebsd
> +      artifacts: true
> +  variables:
> +    MAKE_CHECK_ARGS: check
> +
> +acceptance-system-freebsd:
> +  extends:
> +    - .runner_freebsd_template
> +    - .integration_test_job_template
> +  needs:
> +    - job: build-system-freebsd
> +      artifacts: true
> +  variables:
> +    MAKE_CHECK_ARGS: check-acceptance
> diff --git a/.gitlab-ci.d/qemu-project.yml b/.gitlab-ci.d/qemu-project.yml
> index 64cb2ba1da5..5dcf1d34c5b 100644
> --- a/.gitlab-ci.d/qemu-project.yml
> +++ b/.gitlab-ci.d/qemu-project.yml
> @@ -8,4 +8,5 @@ include:
>    - local: '/.gitlab-ci.d/containers.yml'
>    - local: '/.gitlab-ci.d/crossbuilds.yml'
>    - local: '/.gitlab-ci.d/buildtest.yml'
> +  - local: '/.gitlab-ci.d/buildtest-freebsd.yml'
>    - local: '/.gitlab-ci.d/static_checks.yml'
> --
> 2.26.3
>
>

[-- Attachment #2: Type: text/html, Size: 4509 bytes --]

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

end of thread, other threads:[~2021-05-12 20:27 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-12  5:37 [PATCH v2 0/6] gitlab-ci: Allow using FreeBSD runners Philippe Mathieu-Daudé
2021-05-12  5:37 ` [PATCH v2 1/6] gitlab-ci: Extract &environment_variables template Philippe Mathieu-Daudé
2021-05-12  5:37 ` [PATCH v2 2/6] gitlab-ci: Adapt JOBS variable for FreeBSD runners Philippe Mathieu-Daudé
2021-05-12  5:37 ` [PATCH v2 3/6] gitlab-ci: Run GNU make via the $MAKE variable Philippe Mathieu-Daudé
2021-05-12  5:37 ` [PATCH v2 4/6] gitlab-ci: Add ccache in $PATH and display statistics Philippe Mathieu-Daudé
2021-05-12  5:37 ` [PATCH v2 5/6] gitlab-ci: Simplify before/after script for Avocado based jobs Philippe Mathieu-Daudé
2021-05-12  5:37 ` [PATCH v2 6/6] gitlab-ci: Add FreeBSD jobs Philippe Mathieu-Daudé
2021-05-12 20:25   ` Warner Losh

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).