Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
GH action: ninja is verbose on error anyway
[simgrid.git] / .github / workflows / git.yml
index 3ea5813..c2747ae 100644 (file)
@@ -9,7 +9,7 @@ name: Git builds
 on: workflow_dispatch
 
 jobs:
-  simgrid-regular:
+  simgrid-regular-ubuntu:
     runs-on: ubuntu-latest
     permissions:
       contents: read
@@ -21,14 +21,14 @@ jobs:
 
       - name: build
         run: |
-          sudo apt update && sudo apt-get install ninja libboost-dev libboost-context-dev libns3-dev
+          sudo apt update && sudo apt-get install ninja-build libboost-dev libboost-context-dev libns3-dev
           cmake -GNinja -Denable_debug=ON -Denable_documentation=OFF -Denable_coverage=OFF \
                 -Denable_compile_optimizations=ON -Denable_compile_warnings=ON \
                 -Denable_model-checking=OFF -Denable_smpi_MBI_testsuite=OFF \
                 -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON \
                 -Denable_ns3=ON \
                 -DCMAKE_DISABLE_SOURCE_CHANGES=ON  -DLTO_EXTRA_FLAG="auto"
-          ninja tests VERBOSE=1
+          ninja tests
           ctest --output-on-verbose
       - name: Create the failure Message
         if: ${{ failure() }}
@@ -56,14 +56,14 @@ jobs:
 
       - name: build
         run: |
-          sudo apt update && sudo apt-get install ninja libboost-dev libboost-context-dev
+          sudo apt update && sudo apt-get install ninja-build libboost-dev libboost-context-dev
           cmake -GNinja -Denable_debug=ON -Denable_documentation=OFF -Denable_coverage=OFF \
                 -Denable_compile_optimizations=ON -Denable_compile_warnings=ON \
                 -Denable_model-checking=ON -Denable_smpi_MBI_testsuite=OFF \
                 -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=OFF \
                 -Denable_ns3=OFF \
                 -DCMAKE_DISABLE_SOURCE_CHANGES=ON  -DLTO_EXTRA_FLAG="auto"
-          ninja tests VERBOSE=1
+          ninja tests
           ctest --output-on-verbose
       - name: Create the failure Message
         if: ${{ failure() }}