diff --git a/appveyor.yml b/appveyor.yml index 87d1c9a..5a29ab1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -45,11 +45,7 @@ test_script: # we don't run the "test phase" when doing deploys - if [%APPVEYOR_REPO_TAG%]==[false] ( cargo build --target %TARGET% && - cargo build --target %TARGET% --release && - cargo test --target %TARGET% && - cargo test --target %TARGET% --release && - cargo run --target %TARGET% && - cargo run --target %TARGET% --release + cargo build --target %TARGET% --release ) before_deploy: diff --git a/ci/script.sh b/ci/script.sh index ddd7f93..41f7c9a 100644 --- a/ci/script.sh +++ b/ci/script.sh @@ -11,11 +11,11 @@ main() { return fi - cross test --target $TARGET - cross test --target $TARGET --release + # cross test --target $TARGET + # cross test --target $TARGET --release - cross run --target $TARGET - cross run --target $TARGET --release + # cross run --target $TARGET + # cross run --target $TARGET --release } # we don't run the "test phase" when doing deploys