diff options
| author | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-04-29 12:00:43 +0000 |
|---|---|---|
| committer | bjorn3 <17426603+bjorn3@users.noreply.github.com> | 2023-04-29 12:00:43 +0000 |
| commit | 8bf550e616acdf226df60a7d4ae8ed1bb53f09a6 (patch) | |
| tree | 10038a672e47a766014bf55362a646370d6ce368 /.github/workflows/rustc.yml | |
| parent | 2f624db5eaeeebadbebdef727b941c599916aa15 (diff) | |
Merge commit 'ef07e8e60f994ec014d049a95591426fb92ebb79' into sync_cg_clif-2023-04-29
Diffstat (limited to '.github/workflows/rustc.yml')
| -rw-r--r-- | .github/workflows/rustc.yml | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/.github/workflows/rustc.yml b/.github/workflows/rustc.yml index 5faa8f05404..b2f772c4fc4 100644 --- a/.github/workflows/rustc.yml +++ b/.github/workflows/rustc.yml @@ -6,6 +6,7 @@ on: jobs: bootstrap_rustc: runs-on: ubuntu-latest + timeout-minutes: 60 steps: - uses: actions/checkout@v3 @@ -16,20 +17,16 @@ jobs: path: build/cg_clif key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('rust-toolchain', '**/Cargo.lock') }} - - name: Use sparse cargo registry - run: | - cat >> ~/.cargo/config.toml <<EOF - [unstable] - sparse-registry = true - EOF - - name: Prepare dependencies run: ./y.rs prepare - name: Test run: ./scripts/test_bootstrap.sh + + rustc_test_suite: runs-on: ubuntu-latest + timeout-minutes: 60 steps: - uses: actions/checkout@v3 @@ -40,13 +37,6 @@ jobs: path: build/cg_clif key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('rust-toolchain', '**/Cargo.lock') }} - - name: Use sparse cargo registry - run: | - cat >> ~/.cargo/config.toml <<EOF - [unstable] - sparse-registry = true - EOF - - name: Prepare dependencies run: ./y.rs prepare |
