Skip to content

Commit

Permalink
chore(.travis.yml): use ubuntu-14.04, g++-5, emacs25
Browse files Browse the repository at this point in the history
  • Loading branch information
soonhokong committed Jun 9, 2016
1 parent 265eeec commit 52696da
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
os:
- linux
language: c++
sudo: false
sudo: true
dist: trusty
cache: apt
addons:
apt:
sources:
- kalakris-cmake
- ubuntu-toolchain-r-test
- cassou-emacs
packages:
- emacs24
- cmake
- cmake-data
- mercurial
- python2.7
- texlive-latex-recommended
Expand All @@ -26,12 +26,12 @@ addons:
- pgf
- moreutils
- nodejs
- g++-4.8
- libstdc++-4.8-dev
- g++-5
- libstdc++-5-dev
- libgmp-dev
- libmpfr-dev
- liblua5.2-dev
- cmake
- emacs24
env:
global:
# GH_TOKEN=[secure] (to push to leanprover org)
Expand All @@ -44,7 +44,7 @@ env:
before_install:
- mkdir ~/bin
- export PATH="/home/travis/.cask/bin:~/bin:$PATH"
- curl -fsSkL https://raw.github.com/cask/cask/master/go | python
- curl -fsSL https://raw.github.com/cask/cask/master/go | python
- cask
- tar xvfz header/l3kernel.tar.gz -C ~/

Expand All @@ -57,7 +57,7 @@ install:
cd lean &&
mkdir build &&
cd build &&
cmake -DIGNORE_SORRY=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++-4.8 ../src &&
cmake -DIGNORE_SORRY=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=g++-5 ../src &&
make &&
cd ../../;
fi
Expand Down

0 comments on commit 52696da

Please sign in to comment.