mirror of https://github.com/eldruin/ds323x-rs
Put paths in quotes
parent
7891a53705
commit
dfe90b9000
11
.travis.yml
11
.travis.yml
|
@ -1,10 +1,11 @@
|
||||||
language: rust
|
language: rust
|
||||||
# sudo is required to enable kcov to use the personality syscall
|
# sudo is required to enable kcov to use the personality syscall
|
||||||
sudo: required
|
sudo: required
|
||||||
env: CI_SCRIPTS="https://github.com/eldruin/rust-driver-ci-scripts/raw/master"
|
env:
|
||||||
|
- CI_SCRIPTS="https://github.com/eldruin/rust-driver-ci-scripts/raw/master"
|
||||||
|
|
||||||
before_script:
|
before_script:
|
||||||
bash <(curl -s $CI_SCRIPTS/global_before_script.sh)
|
bash <(curl -s "$CI_SCRIPTS/global_before_script.sh")
|
||||||
|
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
|
@ -55,10 +56,10 @@ before_install:
|
||||||
- rustup self update
|
- rustup self update
|
||||||
|
|
||||||
install:
|
install:
|
||||||
bash <(curl -s $CI_SCRIPTS/install.sh)
|
bash <(curl -s "$CI_SCRIPTS/install.sh")
|
||||||
|
|
||||||
script:
|
script:
|
||||||
bash <(curl -s $CI_SCRIPTS/script.sh)
|
bash <(curl -s "$CI_SCRIPTS/script.sh")
|
||||||
|
|
||||||
after_script: set +e
|
after_script: set +e
|
||||||
|
|
||||||
|
@ -68,7 +69,7 @@ cache:
|
||||||
- /home/travis/.cargo
|
- /home/travis/.cargo
|
||||||
|
|
||||||
before_cache:
|
before_cache:
|
||||||
bash <(curl -s $CI_SCRIPTS/before_cache.sh)
|
bash <(curl -s "$CI_SCRIPTS/before_cache.sh")
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
only:
|
only:
|
||||||
|
|
Loading…
Reference in New Issue