mirror of
https://github.com/KjellKod/g3log.git
synced 2025-01-06 00:31:12 +01:00
13 lines
435 B
YAML
13 lines
435 B
YAML
language: cpp
|
|
compiler: gcc
|
|
script:
|
|
- sudo apt-get install python-software-properties
|
|
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
|
|
- sudo apt-get update
|
|
- sudo apt-get install gcc-4.8 g++-4.8
|
|
- sudo apt-get install cmake
|
|
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 10
|
|
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 10
|
|
- "./scripts/buildtravis.sh"
|
|
|