rust/.github/workflows/rustc.yml

58 lines
1.1 KiB
YAML
Raw Normal View History

2021-03-15 08:49:57 -05:00
name: Various rustc tests
on:
- push
permissions: {}
2021-03-15 08:49:57 -05:00
jobs:
bootstrap_rustc:
runs-on: ubuntu-latest
timeout-minutes: 60
2021-03-15 08:49:57 -05:00
steps:
- uses: actions/checkout@v4
2021-03-15 08:49:57 -05:00
- name: CPU features
run: cat /proc/cpuinfo
2021-03-15 08:49:57 -05:00
- name: Cache cargo target dir
uses: actions/cache@v4
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
run: ./y.sh prepare
2021-03-15 08:49:57 -05:00
- name: Test
run: ./scripts/test_bootstrap.sh
2021-03-15 08:49:57 -05:00
rustc_test_suite:
runs-on: ubuntu-latest
timeout-minutes: 60
2021-03-15 08:49:57 -05:00
steps:
- uses: actions/checkout@v4
2021-03-15 08:49:57 -05:00
- name: CPU features
run: cat /proc/cpuinfo
2021-03-15 08:49:57 -05:00
- name: Cache cargo target dir
uses: actions/cache@v4
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: Install ripgrep
run: |
sudo apt update
sudo apt install -y ripgrep
2021-03-15 08:49:57 -05:00
- name: Prepare dependencies
run: ./y.sh prepare
2021-03-15 08:49:57 -05:00
- name: Test
run: ./scripts/test_rustc_tests.sh