[libvirt PATCH v3 01/12] gitlab: add variable for make command name

Daniel P. Berrangé berrange at redhat.com
Thu Mar 26 12:35:27 UTC 2020


To facilitate future jobs that will use FreeBSD

Reviewed-by: Andrea Bolognani <abologna at redhat.com>
Reviewed-by: Erik Skultety <eskultet at redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange at redhat.com>
---
 .gitlab-ci.yml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ea49c6178b..6f77ab55ba 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,9 +1,12 @@
+variables:
+  MAKE: make
+
 .job_template: &job_definition
   script:
     - mkdir build
     - cd build
     - ../autogen.sh $CONFIGURE_OPTS || (cat config.log && exit 1)
-    - make -j $(getconf _NPROCESSORS_ONLN)
+    - $MAKE -j $(getconf _NPROCESSORS_ONLN)
 
 # We could run every arch on every versions, but it is a little
 # overkill. Instead we split jobs evenly across 9, 10 and sid
-- 
2.24.1




More information about the libvir-list mailing list