aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: fe30a5f208a40e81122055801e03a77dc8829922 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
language: rust
env:
  matrix:
    - FEATURES=""
    - FEATURES="tlsv1_1 tlsv1_2 aes_xts"
os:
  - osx
  - linux
before_script:
  - openssl s_server -accept 15418 -www -cert test/cert.pem -key test/key.pem >/dev/null 2>&1 &
script:
  - cargo test --features "$FEATURES"