File tree 1 file changed +12
-16
lines changed 1 file changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -143,36 +143,32 @@ jobs:
143
143
build-rdrand :
144
144
name : Build-only RDRAND
145
145
runs-on : ubuntu-latest
146
- strategy :
147
- matrix :
148
- target : [
149
- x86_64-unknown-cloudabi,
150
- x86_64-unknown-uefi,
151
- x86_64-unknown-hermit,
152
- x86_64-unknown-l4re-uclibc,
153
- x86_64-uwp-windows-gnu,
154
- x86_64-wrs-vxworks,
155
- ]
156
146
steps :
157
147
- uses : actions/checkout@v2
158
148
- name : Install toolchain
159
149
uses : actions-rs/toolchain@v1
160
150
with :
161
- # profile: minimal
151
+ profile : minimal
162
152
toolchain : nightly
163
- # components: rust-src
153
+ components : rust-src
164
154
override : true
165
155
- name : Cache cargo plugins
166
156
uses : actions/cache@v1
167
157
with :
168
158
path : ~/.cargo/bin/
169
159
key : ${{ runner.os }}-cargo-plugins
170
- - name : Install rust-src
171
- run : rustup component add rust-src
172
160
- name : Install xbuild
173
161
run : cargo install cargo-xbuild || true
174
- - name : Test
175
- run : cargo xbuild --features=rdrand --target ${{ matrix.target }}
162
+ # - name: CloudABI
163
+ # run: cargo xbuild --features=rdrand --target x86_64-unknown-cloudabi
164
+ - name : UEFI
165
+ run : cargo xbuild --features=rdrand --target x86_64-unknown-uefi
166
+ - name : Hermit
167
+ run : cargo xbuild --features=rdrand --target x86_64-unknown-hermit
168
+ - name : L4Re
169
+ run : cargo xbuild --features=rdrand --target x86_64-unknown-l4re-uclibc
170
+ - name : VxWorks
171
+ run : cargo xbuild --features=rdrand --target x86_64-wrs-vxworks
176
172
177
173
# clippy-fmt:
178
174
# name: Clippy + rustfmt
You can’t perform that action at this time.
0 commit comments