Skip to content
This repository was archived by the owner on May 18, 2020. It is now read-only.

Commit 90410ac

Browse files
committed
update yml
1 parent e0ef63a commit 90410ac

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.travis.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ matrix:
3838
# os: osx
3939

4040
# Linux
41-
- env: TARGET=aarch64-unknown-linux-gnu
42-
- env: TARGET=arm-unknown-linux-gnueabi
43-
- env: TARGET=armv7-unknown-linux-gnueabihf
41+
- env: TARGET=aarch64-unknown-linux-gnu DISABLE_TESTS=1
42+
- env: TARGET=arm-unknown-linux-gnueabi DISABLE_TESTS=1
43+
- env: TARGET=armv7-unknown-linux-gnueabihf DISABLE_TESTS=1
4444
# - env: TARGET=i686-unknown-linux-gnu
4545
# - env: TARGET=i686-unknown-linux-musl
4646
# - env: TARGET=mips-unknown-linux-gnu
@@ -51,13 +51,13 @@ matrix:
5151
# - env: TARGET=powerpc64-unknown-linux-gnu
5252
# - env: TARGET=powerpc64le-unknown-linux-gnu
5353
# - env: TARGET=s390x-unknown-linux-gnu DISABLE_TESTS=1
54-
- env: TARGET=x86_64-unknown-linux-gnu
55-
- env: TARGET=x86_64-unknown-linux-musl
54+
- env: TARGET=x86_64-unknown-linux-gnu DISABLE_TESTS=1
55+
- env: TARGET=x86_64-unknown-linux-musl DISABLE_TESTS=1
5656

5757
# OSX
5858
# - env: TARGET=i686-apple-darwin
5959
# os: osx
60-
- env: TARGET=x86_64-apple-darwin
60+
- env: TARGET=x86_64-apple-darwin DISABLE_TESTS=1
6161
os: osx
6262

6363
# *BSD
@@ -66,7 +66,7 @@ matrix:
6666
- env: TARGET=x86_64-unknown-netbsd DISABLE_TESTS=1
6767

6868
# Windows
69-
- env: TARGET=x86_64-pc-windows-gnu
69+
- env: TARGET=x86_64-pc-windows-gnu DISABLE_TESTS=1
7070

7171
# Bare metal
7272
# These targets don't support std and as such are likely not suitable for

appveyor.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ install:
4141
- cargo -V
4242

4343
# TODO This is the "test phase", tweak it as you see fit
44-
test_script:
45-
# we don't run the "test phase" when doing deploys
46-
- if [%APPVEYOR_REPO_TAG%]==[false] (
47-
cargo build --target %TARGET% &&
48-
cargo build --target %TARGET% --release &&
49-
cargo test --target %TARGET% &&
50-
cargo test --target %TARGET% --release &&
51-
cargo run --target %TARGET% &&
52-
cargo run --target %TARGET% --release
53-
)
44+
# test_script:
45+
# # we don't run the "test phase" when doing deploys
46+
# - if [%APPVEYOR_REPO_TAG%]==[false] (
47+
# cargo build --target %TARGET% &&
48+
# cargo build --target %TARGET% --release &&
49+
# cargo test --target %TARGET% &&
50+
# cargo test --target %TARGET% --release &&
51+
# cargo run --target %TARGET% &&
52+
# cargo run --target %TARGET% --release
53+
# )
5454

5555
before_deploy:
5656
# TODO Update this to build the artifacts that matter to you

0 commit comments

Comments
 (0)