blob: 2fb7b21313f7e09135670f40d239fdc3f0b41bde (
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 &
script:
- rustc --test lib.rs
- ./lib
|