Skip to content

Commit 99f9982

Browse files
committed
Actually test i686-pc-windows-msvc with clang-cl
Was missing a --target...
1 parent c7ddd7f commit 99f9982

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
- uses: actions-rs/cargo@v1
7373
with:
7474
command: test
75-
args: --manifest-path=${{ matrix.manifest }} -- --nocapture
75+
args: --target=${{rust_target}} --manifest-path=${{ matrix.manifest }} -- --nocapture
7676
env:
7777
CC: ${{ matrix.clang_cl }}
7878

psm/build.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ fn find_assembly(
3636
}
3737
("x86", _, "windows", _) => Some(("src/arch/x86_windows_gnu.s", false)),
3838
("x86_64", _, "windows", _) => Some(("src/arch/x86_64_windows_gnu.s", false)),
39-
4039
("x86", _, _, _) => Some(("src/arch/x86.s", true)),
4140
("x86_64", _, _, _) => Some(("src/arch/x86_64.s", true)),
4241
("arm", _, _, _) => Some(("src/arch/arm_aapcs.s", true)),

0 commit comments

Comments
 (0)