-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: more attempts at open SSL support
- Loading branch information
1 parent
d70dabe
commit 55347de
Showing
1 changed file
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,26 @@ | ||
language: rust | ||
env: OPENSSL=1.1.0 | ||
sudo: required | ||
dist: trusty | ||
|
||
cache: | ||
cargo: true | ||
|
||
env: | ||
global: | ||
- OPENSSL_VERSION=openssl-1.0.2 | ||
|
||
|
||
before_install: | ||
- sudo add-apt-repository -y ppa:0k53d-karl-f830m/openssl | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -y openssl libssl-dev libelf-dev libdw-dev cmake gcc binutils-dev libiberty-dev | ||
|
||
rust: | ||
- stable | ||
|
||
before_script: | ||
- rustup component add rustfmt-preview | ||
- export PATH=$PATH:~/.cargo/bin | ||
|
||
script: | ||
- cargo build | ||
- cargo test |