blob: 55c9e4321edf3b2dee1fd7424a6588db1c029923 (
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:
- rustc --test lib.rs
- ./lib
|