qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v3 3/6] gitlab-ci: Run GNU make via the $MAKE variable


From: Wainer dos Santos Moschetta
Subject: Re: [PATCH v3 3/6] gitlab-ci: Run GNU make via the $MAKE variable
Date: Thu, 20 May 2021 15:26:15 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.0


On 5/19/21 3:45 PM, Philippe Mathieu-Daudé wrote:
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(-)


Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>



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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]