X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4c1336d251a27ce83c041dd3e9d296a695037cf9..35bf365de6be434aeeafa8b3d5f5c9a1e3082ce3:/.github/workflows/git.yml diff --git a/.github/workflows/git.yml b/.github/workflows/git.yml index 3bb82255c6..eb6bc035ab 100644 --- a/.github/workflows/git.yml +++ b/.github/workflows/git.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Init options run: | echo "CC=${{ matrix.config.cc }}" >> $GITHUB_ENV @@ -39,8 +39,8 @@ jobs: mkdir build ; cd build 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_model-checking=OFF -Denable_testsuite_smpi_MBI=OFF \ + -Denable_smpi=ON -Denable_testsuite_smpi_MPICH3=ON \ -DCMAKE_DISABLE_SOURCE_CHANGES=ON -DLTO_EXTRA_FLAG="auto" .. ninja tests ctest --output-on-failure -j$(nproc) @@ -51,7 +51,7 @@ jobs: - name: Create the success Message if: ${{ success() }} run: | - ver=$(grep set.SIMGRID_VERSION_MINOR CMakeLists.txt|sed 's/[^"]*"//'|sed 's/".*$//') echo "{\"attachments\": [{\"color\": \"#00FF00\", \"text\":\"Simgrid built successfully on ${{ matrix.config.name }}! ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json + ver=$(grep set.SIMGRID_VERSION_MINOR CMakeLists.txt|sed 's/[^"]*"//'|sed 's/".*$//') echo "{\"attachments\": [{\"color\": \"#00FF00\", \"text\":\"SimGrid built successfully on ${{ matrix.config.name }}! ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json - uses: komarnitskyi/action-mattermost-notification@v0.1.2-beta if: ${{ always() }} env: @@ -68,17 +68,16 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: build run: | - 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 + sudo apt-get update && sudo apt-get install ninja-build libboost-dev libboost-context-dev pybind11-dev libevent-dev mkdir build ; cd build 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_model-checking=ON -Denable_testsuite_smpi_MBI=OFF \ + -Denable_smpi=ON -Denable_testsuite_smpi_MPICH3=OFF \ -Denable_ns3=OFF \ -DCMAKE_DISABLE_SOURCE_CHANGES=ON -DLTO_EXTRA_FLAG="auto" .. ninja tests