Weekly Tests #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly Tests | |
on: | |
schedule: | |
- cron: "0 4 * * 1" | |
workflow_dispatch: | |
env: | |
CARGO_NET_GIT_FETCH_WITH_CLI: true | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
${{ secrets.CONSTRAINTS_SSH_KEY }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: temurin | |
- name: Setup Rust Corset | |
uses: ./.github/actions/setup-rust-corset | |
- name: Run Weekly tests | |
run: ./gradlew weeklyTests | |
env: | |
JAVA_OPTS: -Dorg.gradle.daemon=false | |
CORSET_FLAGS: fields,expand,expand,expand | |
WEEKLY_TESTS_PARALLELISM: 4 | |
- name: Upload test report | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: nightly-tests-report | |
path: build/reports/tests/**/* | |
go-corset-tests: | |
runs-on: ubuntu-latest | |
continue-on-error: true | |
steps: | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: | | |
${{ secrets.CONSTRAINTS_SSH_KEY }} | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: temurin | |
- name: Setup Go Corset | |
uses: ./.github/actions/setup-go-corset | |
- name: Run Weekly tests | |
run: GOMEMLIMIT=196GiB ./gradlew weeklyTests | |
env: | |
JAVA_OPTS: -Dorg.gradle.daemon=false | |
CORSET_FLAGS: disable | |
GOCORSET_FLAGS: -wd --ansi-escapes=false --report --air | |
WEEKLY_TESTS_PARALLELISM: 4 |