Skip to content

Commit 4889a85

Browse files
wip
1 parent 9ac4ee1 commit 4889a85

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/rust.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,28 @@ jobs:
6262
cargo test --no-default-features --features quickjs-ng
6363
6464
build-test-msvc:
65-
#if: ${{ false }}
65+
runs-on: windows-latest
66+
steps:
67+
- uses: actions/checkout@v1
68+
69+
- name: Install stable toolchain (windows)
70+
uses: actions-rs/toolchain@v1
71+
with:
72+
profile: minimal
73+
toolchain: stable
74+
target: x86_64-pc-windows-msvc
75+
override: true
76+
- name: Setup (windows)
77+
run: |
78+
echo "CARGO_BUILD_TARGET=x86_64-pc-windows-msvc" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
79+
- name: Build (windows)
80+
run: |
81+
cargo build
82+
- name: Test (windows)
83+
run: |
84+
cargo test
85+
86+
build-test-msvc-ng:
6687
runs-on: windows-latest
6788
steps:
6889
- uses: actions/checkout@v1

0 commit comments

Comments
 (0)