Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[ci skip] remove spurious line
[simgrid.git] / .github / workflows / git.yml
1 name: Git builds
2
3 # This workflow uses actions that are not certified by GitHub.
4 # They are provided by a third-party and are governed by
5 # separate terms of service, privacy policy, and support
6 # documentation.
7
8 # Only trigger manually
9 on: workflow_dispatch
10
11 jobs:
12   simgrid-regular-ubuntu:
13     runs-on: ${{ matrix.config.os }}-latest
14     strategy:
15         matrix:
16           config:
17           - { name: "Ubuntu gcc", os: ubuntu, cc: "gcc", cxx: "g++", generator: "Unix Makefiles", cmake_extra_options: "-DLTO_EXTRA_FLAG=auto" }
18           - { name: "MacOS clang", os: macos, cc: "clang", cxx: "clang++", generator: "Unix Makefiles", cmake_extra_options: "-DLTO_EXTRA_FLAG=auto" }
19     permissions:
20       contents: read
21       packages: write
22
23     steps:
24       - name: Checkout repository
25         uses: actions/checkout@v2
26       - name: Init options
27         run: |
28           echo "CC=${{ matrix.config.cc }}"   >> $GITHUB_ENV
29           echo "CXX=${{ matrix.config.cxx }}" >> GITHUB_ENV
30       - name: prepare for ubuntu
31         if: matrix.config.os == 'ubuntu'
32         run: |
33           sudo apt-get update && sudo apt-get install ninja-build libboost-dev libboost-context-dev pybind11-dev
34       - name: prepare for macos
35         if: matrix.config.os == 'macos'
36         run: brew install boost eigen pybind11 ninja
37       - name: build
38         run: |
39           mkdir build ; cd build
40           cmake -GNinja -Denable_debug=ON -Denable_documentation=OFF -Denable_coverage=OFF \
41                 -Denable_compile_optimizations=ON -Denable_compile_warnings=ON \
42                 -Denable_model-checking=OFF -Denable_smpi_MBI_testsuite=OFF \
43                 -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=ON \
44                 -DCMAKE_DISABLE_SOURCE_CHANGES=ON  -DLTO_EXTRA_FLAG="auto" ..
45           ninja tests
46           ctest --output-on-failure
47       - name: Create the failure Message
48         if: ${{ failure() }}
49         run: |
50           ver=$(grep set.SIMGRID_VERSION_MINOR CMakeLists.txt|sed 's/[^"]*"//'|sed 's/".*$//') echo "{\"attachments\": [{\"color\": \"#FF0000\", \"text\":\"Failure when building simgrid on ${{ matrix.config.name }}! See ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json
51       - name: Create the success Message
52         if: ${{ success() }}
53         run: |
54           ver=$(grep set.SIMGRID_VERSION_MINOR CMakeLists.txt|sed 's/[^"]*"//'|sed 's/".*$//') echo "{\"attachments\": [{\"color\": \"#00FF00\", \"text\":\"Simgrid built on successfully on ${{ matrix.config.name }}! successfully! ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json
55       - uses: mattermost/action-mattermost-notify@master
56         env:
57           MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
58           MATTERMOST_CHANNEL: ${{ secrets.MATTERMOST_CHANNEL}}
59
60   simgrid-modelcheck-ubuntu:
61
62     runs-on: ubuntu-latest
63     permissions:
64       contents: read
65       packages: write
66
67     steps:
68       - name: Checkout repository
69         uses: actions/checkout@v2
70
71       - name: build
72         run: |
73           sudo apt-get update && sudo apt-get install ninja-build libboost-dev libboost-context-dev pybind11-dev
74           sudo apt-get install libunwind-dev libdw-dev libelf-dev libevent-dev
75           mkdir build ; cd build
76           cmake -GNinja -Denable_debug=ON -Denable_documentation=OFF -Denable_coverage=OFF \
77                 -Denable_compile_optimizations=ON -Denable_compile_warnings=ON \
78                 -Denable_model-checking=ON -Denable_smpi_MBI_testsuite=OFF \
79                 -Denable_smpi=ON -Denable_smpi_MPICH3_testsuite=OFF \
80                 -Denable_ns3=OFF \
81                 -DCMAKE_DISABLE_SOURCE_CHANGES=ON  -DLTO_EXTRA_FLAG="auto" ..
82           ninja tests
83           ctest --output-on-failure
84       - name: Create the failure Message
85         if: ${{ failure() }}
86         run: |
87           ver=$(grep set.SIMGRID_VERSION_MINOR CMakeLists.txt|sed 's/[^"]*"//'|sed 's/".*$//') echo "{\"attachments\": [{\"color\": \"#FF0000\", \"text\":\"Failure when building simgrid Modelchecker on ubuntu-stable! See ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json
88       - name: Create the success Message
89         if: ${{ success() }}
90         run: |
91           ver=$(grep set.SIMGRID_VERSION_MINOR CMakeLists.txt|sed 's/[^"]*"//'|sed 's/".*$//') echo "{\"attachments\": [{\"color\": \"#00FF00\", \"text\":\"Simgrid Modelchecker built successfully on ubuntu-stable! ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json
92       - uses: mattermost/action-mattermost-notify@master
93         env:
94           MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
95           MATTERMOST_CHANNEL: ${{ secrets.MATTERMOST_CHANNEL}}
96