From 550b616ebf80ae1d3c8b1ed9ad5f6acd1a22ff9b Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 11 May 2014 21:30:37 -0700 Subject: [PATCH] Switch travis.yaml to use nightlies --- .travis.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 737a55c2..bd3a7ffc 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,11 @@ -env: - global: - - secure: MDV8QzYhRm55CkEBbpjzqWmw9fLIwDRjf0O/xBC2nBJmpGWhe6v+IumH9SJFVdtSA8j8FZR0qqdCHZOs0Zl5O0SpGWyC3kKHrdW6oeQATKyRGC0HNh3BOGWnkidexvnpv/auDFWA6Vgiorvxq9B162BkEDijh6Eyz0kshsUjgTU= addons: postgresql: 9.3 -before_install: - - yes | sudo add-apt-repository ppa:hansjorg/rust - - sudo apt-get update install: - - sudo apt-get install rust-nightly + - curl -O http://static.rust-lang.org/dist/rust-nightly-x86_64-unknown-linux-gnu.tar.gz + - tar xfz rust-nightly-x86_64-unknown-linux-gnu.tar.gz + - (cd rust-nightly-x86_64-unknown-linux-gnu/ && sudo ./install.sh) before_script: - ./travis/setup.sh - ./configure script: - make all check doc -after_success: - - curl http://www.rust-ci.org/artifacts/put?t=$RUSTCI_TOKEN | sh