We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3fb043 commit 2606a2cCopy full SHA for 2606a2c
.github/workflows/enzyme-rust.yml
@@ -18,6 +18,7 @@ jobs:
18
fail-fast: false
19
matrix:
20
os: [linux-x86-n2-32]
21
+ commit: [51ff895062ba60a7cba53f57af928c3fb7b0f2f4]
22
23
timeout-minutes: 90
24
@@ -42,7 +43,7 @@ jobs:
42
43
. ~/.cargo/env
44
git clone https://github.com/rust-lang/rust.git
45
cd rust
- git checkout 51ff895062ba60a7cba53f57af928c3fb7b0f2f4
46
+ git checkout ${{ matrix.commit }}
47
./configure \
48
--enable-llvm-link-shared \
49
--enable-llvm-plugins \
@@ -59,9 +60,9 @@ jobs:
59
60
with:
61
path: |
62
rust/build
- key: rust-51ff8950-${{ matrix.os }}
63
+ key: rust-${{ matrix.commit }}-${{ matrix.os }}
64
restore-keys: |
- rust-51ff8950-
65
+ rust-${{ matrix.commit }}-
66
- name: Build Rust compiler stage 1
67
working-directory: rust
68
run: |
0 commit comments