2021-03-15 08:49:57 -05:00
|
|
|
name: Various rustc tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
- push
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
bootstrap_rustc:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-04-30 06:40:16 -05:00
|
|
|
- uses: actions/checkout@v3
|
2021-03-15 08:49:57 -05:00
|
|
|
|
|
|
|
- name: Cache cargo target dir
|
2022-10-28 09:20:27 -05:00
|
|
|
uses: actions/cache@v3
|
2021-03-15 08:49:57 -05:00
|
|
|
with:
|
2022-12-01 09:49:34 -06:00
|
|
|
path: build/cg_clif
|
2021-03-15 08:49:57 -05:00
|
|
|
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('rust-toolchain', '**/Cargo.lock') }}
|
|
|
|
|
|
|
|
- name: Prepare dependencies
|
2023-01-13 07:51:51 -06:00
|
|
|
run: ./y.rs prepare
|
2021-03-15 08:49:57 -05:00
|
|
|
|
|
|
|
- name: Test
|
2022-12-15 08:12:46 -06:00
|
|
|
run: ./scripts/test_bootstrap.sh
|
2021-03-15 08:49:57 -05:00
|
|
|
rustc_test_suite:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-04-30 06:40:16 -05:00
|
|
|
- uses: actions/checkout@v3
|
2021-03-15 08:49:57 -05:00
|
|
|
|
|
|
|
- name: Cache cargo target dir
|
2022-10-28 09:20:27 -05:00
|
|
|
uses: actions/cache@v3
|
2021-03-15 08:49:57 -05:00
|
|
|
with:
|
2022-12-01 09:49:34 -06:00
|
|
|
path: build/cg_clif
|
2021-03-15 08:49:57 -05:00
|
|
|
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('rust-toolchain', '**/Cargo.lock') }}
|
|
|
|
|
|
|
|
- name: Prepare dependencies
|
2023-01-13 07:51:51 -06:00
|
|
|
run: ./y.rs prepare
|
2021-03-15 08:49:57 -05:00
|
|
|
|
|
|
|
- name: Test
|
2022-12-15 08:12:46 -06:00
|
|
|
run: ./scripts/test_rustc_tests.sh
|