Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Install python deps on GHaction + better documentation of build dependencies
[simgrid.git] / .github / workflows / git.yml
index 8ea42fe..240eee9 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,15 +21,15 @@ jobs:
 
       - name: build
         run: |
-          sudo apt update && sudo apt-get install ninja-build libboost-dev libboost-context-dev libns3-dev
+          sudo apt-get update && sudo apt-get install ninja-build libboost-dev libboost-context-dev pybind11-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
-          ctest --output-on-verbose
+          ninja tests
+          ctest --output-on-failure
       - name: Create the failure Message
         if: ${{ failure() }}
         run: |
@@ -56,15 +56,16 @@ jobs:
 
       - name: build
         run: |
-          sudo apt update && sudo apt-get install ninja-build libboost-dev libboost-context-dev
+          sudo apt-get update && sudo apt-get install ninja-build libboost-dev libboost-context-dev pybind11-dev
+          sudo apt-get install libunwind-dev libdw-dev libelf-dev libevent-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
-          ctest --output-on-verbose
+          ninja tests
+          ctest --output-on-failure
       - name: Create the failure Message
         if: ${{ failure() }}
         run: |