File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 71
71
- name : Run check
72
72
run : cargo hack check --feature-powerset --all-targets --examples --bins --tests --target ${{ matrix.target }}
73
73
74
+ # Redox needs a nightly compiler for libc:
75
+ # https://github.com/rust-lang/libc/issues/2012
76
+ Check_Redox :
77
+ name : Check
78
+ runs-on : ubuntu-latest
79
+ strategy :
80
+ matrix :
81
+ target : ["x86_64-unknown-redox"]
82
+ steps :
83
+ - uses : actions/checkout@master
84
+ - name : Install Rust nightly
85
+ run : rustup update nightly && rustup default nightly
86
+ - name : Install cargo-hack
87
+ run : cargo install cargo-hack
88
+ - name : Install Target
89
+ run : rustup target add ${{ matrix.target }}
90
+ - name : Run check
91
+ run : cargo hack check --feature-powerset --all-targets --examples --bins --tests --target ${{ matrix.target }}
92
+
74
93
Publish_docs :
75
94
name : Publish Documentation
76
95
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments