Skip to content

Commit cb45d89

Browse files
committed
Try building with the 32-bit toolchain
To see if it produces build failures or new test failures on CI.
1 parent d1487bd commit cb45d89

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -312,22 +312,19 @@ jobs:
312312
test-32bit-windows:
313313
runs-on: windows-latest
314314

315-
env:
316-
TARGET: i686-pc-windows-msvc
317-
318315
steps:
319316
- uses: actions/checkout@v4
320-
- uses: dtolnay/rust-toolchain@stable
317+
- uses: dtolnay/rust-toolchain@master
321318
with:
322-
targets: ${{ env.TARGET }}
319+
toolchain: stable-i686-pc-windows-msvc
323320
- uses: Swatinem/rust-cache@v2
324321
- name: cargo check default features
325-
run: cargo check --target $env:TARGET --workspace --bins --examples
322+
run: cargo check --workspace --bins --examples
326323
- uses: taiki-e/install-action@v2
327324
with:
328325
tool: nextest
329326
- name: Test (nextest)
330-
run: cargo nextest run --target $env:TARGET --workspace --no-fail-fast
327+
run: cargo nextest run --workspace --no-fail-fast
331328

332329
lint:
333330
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)