File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -244,3 +244,25 @@ jobs:
244
244
disable_extra_builds : true
245
245
disable_tests : true
246
246
target : x86_64-unknown-netbsd
247
+
248
+ x86_64-pc-windows-msvc-nightly :
249
+ uses : ./.github/workflows/build.yaml
250
+ with :
251
+ runs_on : windows-2019
252
+ target : x86_64-pc-windows-msvc
253
+ toolchain : nightly
254
+
255
+ x86_64-unknown-linux-gnu-nightly :
256
+ uses : ./.github/workflows/build.yaml
257
+ with :
258
+ extra_packages : libudev-dev
259
+ target : x86_64-unknown-linux-gnu
260
+ toolchain : nightly
261
+
262
+ aarch64-apple-darwin-nightly :
263
+ uses : ./.github/workflows/build.yaml
264
+ with :
265
+ disable_tests : true
266
+ runs_on : macos-latest
267
+ target : aarch64-apple-darwin
268
+ toolchain : nightly
Original file line number Diff line number Diff line change 32
32
// doc tests.
33
33
#![ doc( test( attr( allow( unused_must_use) ) ) ) ]
34
34
35
- use std:: convert:: From ;
36
35
use std:: error:: Error as StdError ;
37
36
use std:: fmt;
38
37
use std:: io;
You can’t perform that action at this time.
0 commit comments