diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-07-10 19:21:39 -0300 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2015-07-10 20:00:59 -0300 |
commit | 73b6a715eeb8a837d6528921a4ad00f7a1c7aa17 (patch) | |
tree | 6fea8104fe5165482f0fe7c8edaa019f1991eb82 /.travis.yml | |
parent | ac7bc214abe6b8f9eb2c122709ea99a0ca4b4245 (diff) |
Travis: Remove use of sudo to enable use container-based builds
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 5c882a574..a4ec8ab81 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,21 @@ env: global: - secure: "AXHFIafTmbGDsHD3mUVj5a4I397DQjti/WoqAJGUp2PglxTcc04BwxZ9Z+xLuf5N2Hs5r9ojAJLT8OGxJCLBDXzneQTNSqXbFuYSLbqrEAiIRlA9eRIotWCg+wYcO+5e8MKX+cHVKwiIWasUB21AtCdq6msh6Y3pUshZp212VPg=" +sudo: false + +addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - gcc-4.9 + - g++-4.9 + - xorg-dev + - libglu1-mesa-dev + - libxcursor-dev + - lib32stdc++6 # For CMake + - lftp # To upload builds + before_install: - sh .travis-deps.sh |