Skip to content

Commit 03e1ea6

Browse files
committed
Disable Darwin and Windows build targets
Temporary commit which should be reverted on rebuild of their respective bindings. Signed-off-by: Keith Koskie <[email protected]>
1 parent 2c7f127 commit 03e1ea6

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ jobs:
2828
rustup target add aarch64-unknown-linux-gnu &&
2929
rustup target add i686-unknown-linux-gnu &&
3030
rustup target add powerpc64-unknown-linux-gnu &&
31-
rustup target add powerpc64le-unknown-linux-gnu &&
32-
rustup target add x86_64-pc-windows-msvc &&
33-
rustup target add x86_64-apple-darwin
31+
rustup target add powerpc64le-unknown-linux-gnu
32+
#rustup target add x86_64-pc-windows-msvc &&
33+
#rustup target add x86_64-apple-darwin
3434
3535
- name: Test script
3636
env:

ci.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ RUST_BACKTRACE=1 cargo build --target aarch64-unknown-linux-gnu
1616
RUST_BACKTRACE=1 cargo build --target i686-unknown-linux-gnu
1717
RUST_BACKTRACE=1 cargo build --target powerpc64-unknown-linux-gnu
1818
RUST_BACKTRACE=1 cargo build --target powerpc64le-unknown-linux-gnu
19-
RUST_BACKTRACE=1 cargo build --target x86_64-pc-windows-msvc
20-
RUST_BACKTRACE=1 cargo build --target x86_64-apple-darwin
19+
#RUST_BACKTRACE=1 cargo build --target x86_64-pc-windows-msvc
20+
#RUST_BACKTRACE=1 cargo build --target x86_64-apple-darwin
2121

2222
pushd cryptoki-sys
2323
RUST_BACKTRACE=1 cargo build --features generate-bindings

0 commit comments

Comments
 (0)