X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/200e7e0760350c93ebc1c1e86b47316df9d53901..dbac5943d31dac983835ccccf3e31ff5d3b3e9e4:/.github/workflows/ci-wrench.yml diff --git a/.github/workflows/ci-wrench.yml b/.github/workflows/ci-wrench.yml index 5baaaef6bc..1a580b4a9e 100644 --- a/.github/workflows/ci-wrench.yml +++ b/.github/workflows/ci-wrench.yml @@ -3,7 +3,7 @@ name: CI Wrench on: workflow_dispatch: schedule: - - cron: '43 18 * * 0' + - cron: '0 20 * * 0' jobs: build: @@ -12,36 +12,22 @@ jobs: container: simgrid/unstable steps: - - uses: actions/checkout@v2 - - name: Install APT dependencies - run: | - apt update - apt -y install cmake - apt -y install gcc - apt -y install g++ - apt -y install unzip - apt -y install doxygen - apt -y install wget - apt -y install git - apt -y install libboost-all-dev - apt -y install libpugixml-dev - apt -y install nlohmann-json3-dev - apt -y install googletest + - uses: actions/checkout@v3 - name: Build and test WRENCH run: | set -e - rm -rf wrench.git && git clone --depth 1 --branch simgrid-external-project-ci https://github.com/wrench-project/wrench.git wrench.git - mkdir wrench.git/build && cd wrench.git/build && cmake -DSIMGRID_INSTALL_PATH=/usr/ .. && make unit_tests && ./unit_tests + ./tools/jenkins/ci-wrench.sh - name: Create the failure Message if: ${{ failure() }} run: | - echo "{\"attachments\": [{\"color\": \"#FF0000\", \"text\":\"Failure when building docker images ! See ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json + echo "{\"attachments\": [{\"color\": \"#FF0000\", \"text\":\"@henricasanova: Wrench's git failed to build on simgrid/unstable docker image! See ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json - name: Create the success Message if: ${{ success() }} run: | - echo "{\"attachments\": [{\"color\": \"#00FF00\", \"text\":\"Docker images built and pushed successfully ! ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json + echo "{\"attachments\": [{\"color\": \"#00FF00\", \"text\":\"Wrench's git successfully built on simgrid/unstable docker image. ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json - uses: mattermost/action-mattermost-notify@master + if: ${{ always() }} env: MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }} MATTERMOST_CHANNEL: ${{ secrets.MATTERMOST_CHANNEL}}