You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
267 B
16 lines
267 B
9 years ago
|
language: cpp
|
||
|
sudo: required
|
||
|
compiler: g++
|
||
|
|
||
|
before_install:
|
||
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
||
|
- sudo apt-get update -qq
|
||
|
|
||
|
install:
|
||
|
- sudo apt-get install -qq g++-4.8
|
||
|
- export CXX="g++-4.8"
|
||
|
|
||
|
before_script:
|
||
|
- chmod +x build.sh
|
||
|
|
||
|
script: ./build.sh
|