X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e0e19ab7d5d501aa56549f4438ea93e1721849a1..d68e1c39ec0832cb2391aedd17a868c597dd399e:/.github/workflows/ci-wrench.yml diff --git a/.github/workflows/ci-wrench.yml b/.github/workflows/ci-wrench.yml index efd30bc26c..1a580b4a9e 100644 --- a/.github/workflows/ci-wrench.yml +++ b/.github/workflows/ci-wrench.yml @@ -3,56 +3,31 @@ name: CI Wrench on: workflow_dispatch: schedule: - - cron: '43 18 * * 0' + - cron: '0 20 * * 0' jobs: build: - runs-on: simgrid/unstable + runs-on: ubuntu-latest + container: simgrid/unstable steps: - - uses: actions/checkout@v2 - - name: Install APT dependencies + - uses: actions/checkout@v3 + - name: Build and test WRENCH 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 - - name: Install pugixml - run: | - wget https://github.com/zeux/pugixml/releases/download/v1.8.1/pugixml-1.8.1.tar.gz - tar -xf pugixml-1.8.1.tar.gz - cd pugixml-1.8 && cmake . && make install - - name: Install json for modern c++ - run: | - wget https://github.com/nlohmann/json/archive/v3.9.1.tar.gz - tar -xf v3.9.1.tar.gz - cd json-3.9.1 && cmake . && make install - - name: Install googletest - run: | - wget https://github.com/google/googletest/archive/release-1.8.0.tar.gz - tar xf release-1.8.0.tar.gz - cd googletest-release-1.8.0/googletest && cmake . && make install - - name: Install 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 + set -e + ./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}}