Skip to content

Commit 790ab2e

Browse files
committed
try rdrand fix
1 parent d61ee32 commit 790ab2e

File tree

1 file changed

+12
-16
lines changed

1 file changed

+12
-16
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -143,36 +143,32 @@ jobs:
143143
build-rdrand:
144144
name: Build-only RDRAND
145145
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-
]
156146
steps:
157147
- uses: actions/checkout@v2
158148
- name: Install toolchain
159149
uses: actions-rs/toolchain@v1
160150
with:
161-
# profile: minimal
151+
profile: minimal
162152
toolchain: nightly
163-
# components: rust-src
153+
components: rust-src
164154
override: true
165155
- name: Cache cargo plugins
166156
uses: actions/cache@v1
167157
with:
168158
path: ~/.cargo/bin/
169159
key: ${{ runner.os }}-cargo-plugins
170-
- name: Install rust-src
171-
run: rustup component add rust-src
172160
- name: Install xbuild
173161
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
176172

177173
# clippy-fmt:
178174
# name: Clippy + rustfmt

0 commit comments

Comments
 (0)