Browse Source

Removed run commandwq

develop
Paul Masurel 6 years ago
parent
commit
9e921e1b5c
2 changed files with 5 additions and 9 deletions
  1. +1
    -5
      appveyor.yml
  2. +4
    -4
      ci/script.sh

+ 1
- 5
appveyor.yml View File

@@ -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:


+ 4
- 4
ci/script.sh View File

@@ -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


Loading…
Cancel
Save