2013-07-03 13:34:30 +00:00
|
|
|
language: c
|
2020-03-29 18:17:26 +00:00
|
|
|
script: make && make travis && ./src/sslproxy -V
|
2018-11-03 15:23:31 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
|
|
|
compiler: gcc
|
|
|
|
env: SSL=ubuntu EVENT=ubuntu
|
|
|
|
before_install:
|
|
|
|
- sudo apt-get install -qq libssl-dev libevent-dev libnet1-dev libpcap-dev check
|
2020-03-31 12:59:53 +00:00
|
|
|
# Do use the following line:
|
|
|
|
# - curl https://sh.rustup.rs -sSf | sh
|
|
|
|
# Download rustup.sh and run with -y, otherwise it stops and prompts for an answer
|
2020-03-31 09:34:41 +00:00
|
|
|
- curl -f -L https://static.rust-lang.org/rustup.sh -O
|
|
|
|
- sh rustup.sh -y
|
2020-03-31 12:59:53 +00:00
|
|
|
# Add .cargo/bin to $PATH
|
2020-03-31 09:38:38 +00:00
|
|
|
- source $HOME/.cargo/env
|
2020-03-31 08:55:30 +00:00
|
|
|
- cargo install testproxy
|