Skip to content

Commit 446cff3

Browse files
committed
Fix cross-compilation script; disable non-existant Fuchsia target
1 parent 25bc1ac commit 446cff3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ matrix:
8787
- rustup target add x86_64-sun-solaris
8888
- rustup target add x86_64-unknown-cloudabi
8989
- rustup target add x86_64-unknown-freebsd
90-
- rustup target add x86_64-unknown-fuchsia
90+
#- rustup target add x86_64-unknown-fuchsia
9191
- rustup target add x86_64-unknown-netbsd
9292
- rustup target add x86_64-unknown-redox
9393
script:
9494
- cargo build --target=x86_64-sun-solaris --all-features
9595
- cargo build --target=x86_64-unknown-cloudabi --all-features
9696
- cargo build --target=x86_64-unknown-freebsd --all-features
97-
- cargo build --target=x86_64-unknown-fuchsia --all-features
97+
#- cargo build --target=x86_64-unknown-fuchsia --all-features
9898
- cargo build --target=x86_64-unknown-netbsd --all-features
9999
- cargo build --target=x86_64-unknown-redox --all-features
100100

utils/ci/script.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
set -ex
44

55
main() {
6-
- cross test --target $TARGET
7-
- cross test --target $TARGET --benches
8-
- cross test --target $TARGET --examples
6+
cross test --target $TARGET
7+
cross test --target $TARGET --benches
8+
cross test --target $TARGET --examples
99
}
1010

1111
# we don't run the "test phase" when doing deploys

0 commit comments

Comments
 (0)