-
Notifications
You must be signed in to change notification settings - Fork 4
63 lines (58 loc) · 1.75 KB
/
nightly-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: "Nightly E2E run"
on:
workflow_call:
workflow_dispatch:
schedule:
# run every day at 03:00 UTC
- cron: "0 3 * * *"
jobs:
run-tests:
uses: atomone-hub/atomone/.github/workflows/test.yml@main
run-simulations:
uses: atomone-hub/atomone/.github/workflows/sims.yml@main
run-vulncheck:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.21"
check-latest: true
- name: run-vulncheck
id: vulncheck
run: make vulncheck
warn-if-failure:
if: failure()
needs: [ run-tests, run-vulncheck, run-simulations]
runs-on: ubuntu-latest
steps:
- name: Notify Slack on failure
uses: slackapi/[email protected]
env:
SLACK_WEBHOOK_URL: ${{ secrets.NIGHTLY_E2E_SLACK_WEBHOOK_URL }}
SLACK_WEBHOOK_TYPE: INCOMING_WEBHOOK
BRANCH: ${{ github.ref_name }}
RUN_URL: "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}"
COMMITS_URL: "${{ github.server_url }}/${{ github.repository }}/commits/${{ github.ref_name }}"
with:
payload: |
{
"blocks": [
{
"type": "header",
"text": {
"type": "plain_text",
"text": "❗Nightly tests failed",
"emoji": true
}
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "See the <${{ env.RUN_URL }}|run details>"
}
}
]
}