We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e69811 commit cb62226Copy full SHA for cb62226
.github/workflows/main.yaml
@@ -157,7 +157,7 @@ jobs:
157
with:
158
msystem: UCRT64
159
update: true
160
- install: diffutils m4 make mingw-w64-rustup
+ install: diffutils m4 make # mingw-w64-rustup
161
162
- name: Run on Windows
163
if: matrix.os == 'windows-2025'
ci/run-windows.sh
@@ -7,8 +7,14 @@ target="$1"
7
m4 --help
8
make --help
9
10
-rustup update nightly-x86_64-gnu
11
-rustup default nightly-x86_64-gnu
12
-rustup target add "$target"
+curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs |
+ sh --default-toolchain nightly-x86_64-gnu \
+ --target "$target" \
13
+
14
+cargo -vV
15
16
+# rustup update nightly-x86_64-gnu
17
+# rustup default nightly-x86_64-gnu
18
+# rustup target add "$target"
19
20
./ci/run.sh ${{ matrix.target }}
0 commit comments