diff options
| author | Emīls Piņķis <emils@mullvad.net> | 2018-07-04 17:57:30 +0100 |
|---|---|---|
| committer | Emīls Piņķis <emils@mullvad.net> | 2018-07-05 16:05:36 +0100 |
| commit | 1da6d62e3e43c717a99cdf5f5c6fcff872955e86 (patch) | |
| tree | 969e051923cc895f091bb473e480a65fa3688851 | |
| parent | a4f9c92d7b9eaceec4bbce9d8bbb7a52eec9ce7c (diff) | |
| download | mullvadvpn-1da6d62e3e43c717a99cdf5f5c6fcff872955e86.tar.xz mullvadvpn-1da6d62e3e43c717a99cdf5f5c6fcff872955e86.zip | |
Attempt fixing .travis.yml
| -rw-r--r-- | .travis.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 3a4dcdf3a2..209c0424f6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,6 +34,9 @@ matrix: rust: stable os: osx cache: cargo + env: + - OPENSSL_LIB_DIR="$TRAVIS_BUILD_DIR/dist-assets/binaries/macos" + - OPENSSL_INCLUDE_DIR="$TRAVIS_BUILD_DIR/dist-assets/binaries/macos/include" before_script: &rust_before_script - env @@ -47,6 +50,9 @@ matrix: os: linux cache: cargo before_script: *rust_before_script + env: + - OPENSSL_LIB_DIR="$TRAVIS_BUILD_DIR/dist-assets/binaries/linux" + - OPENSSL_INCLUDE_DIR="$TRAVIS_BUILD_DIR/dist-assets/binaries/linux/include" script: - cargo build --verbose - cargo test --verbose @@ -59,6 +65,9 @@ matrix: rust: beta os: linux cache: cargo + env: + - OPENSSL_LIB_DIR="$TRAVIS_BUILD_DIR/dist-assets/binaries/linux" + - OPENSSL_INCLUDE_DIR="$TRAVIS_BUILD_DIR/dist-assets/binaries/linux/include" before_script: *rust_before_script script: &rust_linux_script - cargo build --verbose @@ -68,6 +77,9 @@ matrix: rust: stable os: linux cache: cargo + env: + - OPENSSL_LIB_DIR="$TRAVIS_BUILD_DIR/dist-assets/binaries/linux" + - OPENSSL_INCLUDE_DIR="$TRAVIS_BUILD_DIR/dist-assets/binaries/linux/include" before_script: *rust_before_script script: *rust_linux_script |
