blob: 704a8f76aabf563c7fabbf7e311a6b315b950cbd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
env:
global:
- secure: NUmm2nbBlVozEj4DGiXh7h4HCtCxDl90r6aQUIF+5bfuj0vMBxPVK6tygIZH2eyUQLferssHoAofidGPKAcb6KzWF+EgBqddaXkIS2gDWxHYV1motHn99gqKZVxy7LIxC35THfkXHNu91iJCNRlzZ9rDhogzpwBo6RTqtkdbzq0=
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 &
- ./configure
script:
- make all test doc
after_success:
- curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh
|