File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,9 @@ description: "Common setup steps for GitHub workflows in the Hyperlight project"
5
5
6
6
inputs :
7
7
rust-toolchain :
8
- description : " (Default: 1.74 .0) Rust toolchain specification to install - see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification"
8
+ description : " (Default: 1.85 .0) Rust toolchain specification to install - see https://rust-lang.github.io/rustup/concepts/toolchains.html#toolchain-specification"
9
9
required : false
10
- default : " 1.74 .0"
10
+ default : " 1.85 .0"
11
11
12
12
runs :
13
13
using : composite
20
20
21
21
- uses : extractions/setup-just@v3
22
22
with :
23
- just-version : " 1.27 "
23
+ just-version : " 1.40 "
24
24
25
25
# ## Linux setup ###
26
26
@@ -143,6 +143,13 @@ runs:
143
143
rustup target add x86_64-unknown-none
144
144
shell : bash
145
145
146
+ # We do this in case there is toolchain skew between repos
147
+ - name : Install older rust toolchain(s)
148
+ if : ${{ (runner.os == 'Linux') }}
149
+ run : |
150
+ rustup toolchain install 1.81.0
151
+ shell : bash
152
+
146
153
- name : Set up env vars (Linux)
147
154
if : ${{ (runner.os == 'Linux') }}
148
155
run : |
@@ -179,6 +186,12 @@ runs:
179
186
rustup target add x86_64-unknown-none
180
187
shell : pwsh
181
188
189
+ - name : Install older rust toolchain(s) (Windows)
190
+ if : ${{ (runner.os == 'Windows') }}
191
+ run : |
192
+ rustup toolchain install 1.81.0
193
+ shell : pwsh
194
+
182
195
- name : Set up env vars (Windows)
183
196
if : ${{ (runner.os == 'Windows') }}
184
197
run : |
You can’t perform that action at this time.
0 commit comments