From dd0ac8b7fb3c19669a72ba9bc2554fcedcb0e046 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Tue, 16 Jun 2015 17:16:11 +0530 Subject: [PATCH 1/3] Create .travis.yml --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..7f57a9d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,7 @@ +language: rust +rust: + - nightly + - stable +sudo: false +notifications: + webhooks: http://build.servo.org:54856/travis From 324bace6dfc89ceba233deceb3cc9c0cc528c4eb Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Tue, 16 Jun 2015 18:10:56 +0530 Subject: [PATCH 2/3] needs more gcc --- .travis.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7f57a9d..6c5f6db 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,15 @@ language: rust rust: - nightly - stable -sudo: false + +before_install: + - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test + - sudo apt-get update + - sudo apt-get install gcc-4.7 g++-4.7 + - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.7 20 + - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.7 20 + - g++ --version + - sudo apt-get update -qq + notifications: webhooks: http://build.servo.org:54856/travis From f5edaa3c85598e7002cff8412743420e32029fb1 Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Tue, 16 Jun 2015 18:42:02 +0530 Subject: [PATCH 3/3] Update .travis.yml --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6c5f6db..8437f29 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ language: rust rust: - nightly - - stable before_install: - sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test