We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 263a60e commit df4eef9Copy full SHA for df4eef9
.github/workflows/rust.yml
@@ -141,12 +141,19 @@ jobs:
141
name: Check that the build works on a Windows target
142
runs-on: windows-latest
143
steps:
144
+ - name: Install QEMU
145
+ run: choco install qemu
146
+
147
- name: Checkout sources
148
uses: actions/checkout@v3
149
150
- name: Build
151
run: cargo xtask build
152
153
+ - name: Run VM tests
154
+ run: cargo xtask run --target x86_64 --ci
155
+ timeout-minutes: 2
156
157
# Run the build with our current nightly MSRV (specified in
158
# ./msrv_toolchain.toml). This serves to check that we don't
159
# accidentally start relying on a new feature without intending
0 commit comments