Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
travis doesn't like https today
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishearth committed Jan 29, 2015
1 parent d432626 commit b468158
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
language: c
# gets us cargo
language: rust

env:
- RUST_SNAPSHOT=00b112c45a604fa6f4b59af2a40c9deeadfdb7c6/rustc-1.0.0-dev
install:
- wget https://static.rust-lang.org/cargo-dist/cargo-nightly-x86_64-unknown-linux-gnu.tar.gz
- tar -zxf cargo-nightly-x86_64-unknown-linux-gnu.tar.gz
- cd cargo-nightly-x86_64-unknown-linux-gnu.tar.gz && sudo bash install.sh
- wget -O rustc.tar "http://servo-rust.s3.amazonaws.com/${RUST_SNAPSHOT}-i686-unknown-linux-gnu.tar.gz"
- tar -zxf rustc.tar
- cd rustc* && sudo bash install.sh
- ls /lib/x86_64-linux-gnu/ | grep ssl
- sudo ln -s /lib/x86_64-linux-gnu/libssl.so.1.0.0 /usr/local/lib/libssl.so.10
- sudo ln -s /lib/x86_64-linux-gnu/libcrypto.so.1.0.0 /usr/local/lib/libcrypto.so.10
- wget -O /tmp/rustc.tgz "http://servo-rust.s3.amazonaws.com/${RUST_SNAPSHOT}-i686-unknown-linux-gnu.tar.gz"
- cd /tmp && tar -zxf rustc.tgz
- sudo bash /tmp/rustc*/install.sh

script:
- ./configure
Expand Down

0 comments on commit b468158

Please sign in to comment.