diff --git a/.travis.yml b/.travis.yml index 13ace73..6076754 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ # Based on the "trust" template v0.1.1 # https://github.com/japaric/trust/tree/v0.1.1 -dist: trusty +dist: bionic language: rust services: docker sudo: required @@ -21,9 +21,6 @@ matrix: - env: TARGET=x86_64-apple-darwin os: osx - # *BSD - - env: TARGET=x86_64-unknown-freebsd DISABLE_TESTS=1 - # Testing other channels - env: TARGET=x86_64-unknown-linux-gnu rust: nightly diff --git a/Cargo.lock b/Cargo.lock index 0b0c8ee..2a310ad 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -385,6 +385,7 @@ dependencies = [ "junit-report 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "openssl-sys 0.9.55 (registry+https://github.com/rust-lang/crates.io-index)", "prometheus 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rayon 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", "reqwest 0.9.24 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 3d00674..6a40b29 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,6 +27,7 @@ reqwest = "0.9" openssl-probe = "0.1" junit-report = "0.2" structopt = "0.3" +openssl-sys = "0.9.55" [profile.release] lto = true diff --git a/ci/install.sh b/ci/install.sh index 748ad9a..c5f74da 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -5,6 +5,7 @@ main() { if [ $TRAVIS_OS_NAME = linux ]; then target=x86_64-unknown-linux-musl sort=sort + sudo apt-get -y install libssl-dev else target=x86_64-apple-darwin sort=gsort # for `sort --sort-version`, from brew's coreutils.