blob: d689551a532418a6948079f5ece0bfbd387b73a3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
before_install:
- yes | sudo add-apt-repository ppa:hansjorg/rust
- sudo apt-get update
install:
- sudo apt-get install rust-nightly
before_script:
- openssl s_server -accept 15418 -www -cert test/cert.pem -key test/key.pem >/dev/null &
script:
- rustpkg build
- env RUST_TEST_TASKS=1 rustpkg test
|