Skip to content

Fix/travis build #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 4 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions ci/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down