-
Notifications
You must be signed in to change notification settings - Fork 35
49 lines (42 loc) · 1.28 KB
/
gradle-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
name: Nightly Tests
on:
schedule:
- cron: "0 22 * * 1-5"
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
nightly-tests:
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-xxl
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Test Environment
uses: ./.github/actions/setup-environment
with:
go-corset: true
- name: Run Nightly tests
run: GOMEMLIMIT=64GiB ./gradlew nightlyTests
env:
JAVA_OPTS: -Dorg.gradle.daemon=false
CORSET_FLAGS: disable
GOCORSET_FLAGS: -vw --ansi-escapes=false --report --mir
ZKEVM_BIN: "zkevm.go.bin"
- name: Upload test report
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: nightly-tests-report
path: build/reports/tests/**/*
- name: Failure Notification
if: ${{ failure() || cancelled() }}
uses: slackapi/[email protected]
with:
webhook: ${{ secrets.SLACK_WEBHOOK_URL }}
webhook-type: webhook-trigger
payload: |
name: "Nightly"
status: "${{ job.status }}"