Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
gh action: allow tuto-s4u to build on unstable, as I wish
[simgrid.git] / .github / workflows / docker-tuto-s4u.yml
1 name: Docker tutorial S4U
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 on:
9   workflow_dispatch:
10   # Rebuild when changing the stable branch
11   push:
12       branches:
13             - stable
14 #  release:
15 #    types: [published, created, edited]
16
17 jobs:
18   build:
19
20     runs-on: ubuntu-latest
21     permissions:
22       contents: read
23       packages: write
24
25     steps:
26       - name: Checkout repository
27         uses: actions/checkout@v2
28
29       # Login against a Docker registry except on PR
30       # https://github.com/docker/login-action
31       - name: Log into registry ${{ env.REGISTRY }}
32         uses: docker/login-action@v1
33         with:
34           username: ${{ secrets.DOCKERHUB_USERNAME }}
35           password: ${{ secrets.DOCKERHUB_TOKEN }}
36
37       - name: build
38         run: |
39           # grep SIMGRID_VERSION_PATCH CMakeLists.txt| grep -q 'SIMGRID_VERSION_PATCH "0"' || (echo "Only run this action on stable source";exit 1)
40           cd tools/docker
41           make tuto-s4u
42           docker push simgrid/tuto-s4u
43       - name: Create the failure Message
44         if: ${{ failure() }}
45         run: |
46           echo "{\"attachments\": [{\"color\": \"#FF0000\", \"text\":\"Failure when building tuto-s4u docker images ! See ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json
47       - name: Create the success Message
48         if: ${{ success() }}
49         run: |
50           echo "{\"attachments\": [{\"color\": \"#00FF00\", \"text\":\"Docker tuto-s4u images built and pushed successfully ! ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} \"}]}" > mattermost.json
51       - uses: mattermost/action-mattermost-notify@master
52         env:
53           MATTERMOST_WEBHOOK_URL: ${{ secrets.MATTERMOST_WEBHOOK_URL }}
54           MATTERMOST_CHANNEL: ${{ secrets.MATTERMOST_CHANNEL}}
55