Skip to content

Nightly Tests

Nightly Tests #83

name: Nightly Tests
on:
schedule:
- cron: "0 22 * * 1-5"
workflow_dispatch:
env:
CARGO_NET_GIT_FETCH_WITH_CLI: 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=100GiB ./gradlew nightlyTests
env:
JAVA_OPTS: -Dorg.gradle.daemon=false
CORSET_FLAGS: disable
GOCORSET_FLAGS: -wd --ansi-escapes=false --report --air
- name: Upload test report
if: ${{ always() }}
uses: actions/upload-artifact@v3
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 }}"