Skip to content

Commit 378f44a

Browse files
committed
Add clang-cl test, maybe?
1 parent 948e604 commit 378f44a

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/test.yml

+21
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,27 @@ jobs:
4646
command: test
4747
args: --manifest-path=${{ matrix.manifest }} ${{ matrix.mode }} --examples -- --nocapture
4848

49+
clang-cl-test:
50+
name: Test ${{ matrix.manifest }} on Windows with stable and clang-cl
51+
runs-on: windows-latest
52+
strategy:
53+
fail-fast: false
54+
matrix:
55+
manifest: ['psm/Cargo.toml', 'Cargo.toml']
56+
steps:
57+
- uses: actions/checkout@v2
58+
- uses: actions-rs/toolchain@v1
59+
with:
60+
toolchain: stable
61+
profile: minimal
62+
default: true
63+
- uses: actions-rs/cargo@v1
64+
with:
65+
command: test
66+
args: --manifest-path=${{ matrix.manifest }} -- --nocapture
67+
env:
68+
CC: clang_cl
69+
4970
windows-gnu-test:
5071
name: Test ${{ matrix.manifest }} on ${{ matrix.rust_target }} with ${{ matrix.rust_toolchain }}
5172
runs-on: windows-latest

0 commit comments

Comments
 (0)