You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TOOLCHAIN="stable" ## default to "stable" toolchain
115
-
# * specify alternate TOOLCHAIN for *-pc-windows-gnu targets; gnu targets on Windows are broken for the standard *-pc-windows-msvc toolchain (refs: <https://github.com/rust-lang/rust/issues/47048>, <https://github.com/rust-lang/rust/issues/53454>, <https://github.com/rust-lang/cargo/issues/6754>)
116
-
case ${{ matrix.job.target }} in *-pc-windows-gnu) TOOLCHAIN="stable-${{ matrix.job.target }}" ;; esac;
117
113
# staging directory
118
114
STAGING='_staging'
119
115
echo set-output name=STAGING::${STAGING}
@@ -214,7 +210,7 @@ jobs:
214
210
- name: Install Rust toolchain
215
211
uses: actions-rs/toolchain@v1
216
212
with:
217
-
toolchain: ${{ steps.vars.outputs.TOOLCHAIN }}
213
+
toolchain: stable
218
214
target: ${{ matrix.job.target }}
219
215
override: true
220
216
profile: minimal # minimal component installation (ie, no documentation)
0 commit comments