diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2017-04-07 10:19:11 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2017-04-07 10:19:11 +0200 |
| commit | 6ece7c2b6af70987d2088bd95039af2cf3f0361b (patch) | |
| tree | c5e35143ee3481339f85843c1e4a84a109ef3ff3 | |
| parent | 86be715a7fa38393f03c4c478cea8fbf26b8e082 (diff) | |
| download | mullvadvpn-6ece7c2b6af70987d2088bd95039af2cf3f0361b.tar.xz mullvadvpn-6ece7c2b6af70987d2088bd95039af2cf3f0361b.zip | |
Update CI configs to handle empty root crate
| -rw-r--r-- | .travis.yml | 2 | ||||
| -rw-r--r-- | appveyor.yml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 6181134077..4312818114 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ before_script: - env script: - - cargo build --verbose + - cargo build --all --verbose - cargo test --all --verbose - ./format.sh --write-mode=diff diff --git a/appveyor.yml b/appveyor.yml index dc84cadf7f..fbc57ab0ed 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -41,8 +41,8 @@ install: # This is the "test phase", tweak it as you see fit test_script: - - cargo build --target %TARGET% - - cargo build --target %TARGET% --release + - cargo build --all --target %TARGET% + - cargo build --all --target %TARGET% --release - cargo test --all --target %TARGET% - cargo test --all --target %TARGET% --release |
