Update to MMTk core PR #949 #837
Workflow file for this run
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: DaCapo Tests | |
on: | |
pull_request: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup environments | |
run: | | |
./.github/scripts/ci-checkout.sh | |
./.github/scripts/ci-setup.sh | |
# Run the tests | |
- name: DaCapo Tests | |
run: | | |
./.github/scripts/ci-build.sh | |
./.github/scripts/ci-test-only-normal.sh | |
- name: DaCapo Tests with valid object bit (VO bit) | |
run: ./.github/scripts/ci-test-vo-bit.sh | |
- name: DaCapo Tests with malloc Mark-Sweep | |
run: ./.github/scripts/ci-test-malloc-mark-sweep.sh | |
# Style check | |
- name: Style checks | |
run: ./.github/scripts/ci-style.sh | |
test-weak-ref: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup environments | |
run: | | |
./.github/scripts/ci-checkout.sh | |
./.github/scripts/ci-setup.sh | |
# Run the tests | |
- name: DaCapo Tests with weak reference processing | |
run: | | |
./.github/scripts/ci-build.sh | |
./.github/scripts/ci-test-only-weak-ref.sh | |
test-assertions: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Environments | |
run: | | |
./.github/scripts/ci-checkout.sh | |
./.github/scripts/ci-setup.sh | |
# Run the tests with assertions | |
- name: DaCapo Test (with extreme_assertions) | |
run: ./.github/scripts/ci-test-assertions.sh | |
msrv: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Install cargo-msrv | |
run: cargo install cargo-msrv | |
# Verify the MSRV defined in Cargo.toml | |
- name: Verify MSRV | |
run: cargo msrv --path mmtk verify | |
# If the previous step fails, find MSRV | |
- name: Find MSRV | |
if: failure() | |
run: cargo msrv --path mmtk |