mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 09:46:30 -05:00
f1f0cb7aef
Two reasons here: 1) Ubuntu Precise is reaching EOL, though Travis CI may take care of it. we still can move to Trusty earlier as I didn't see any dependency of Precise here. 2) g++4.8 is built-in in Travis CI's Ubuntu Trusty environment, which means we don't need to spend time on adding ppa repository, apt update and apt install, could save time on the CI.
9 lines
99 B
YAML
9 lines
99 B
YAML
language: node_js
|
|
dist: trusty
|
|
node_js:
|
|
- 6
|
|
- 7
|
|
- lts/boron
|
|
env:
|
|
- CXX=g++-4.8
|
|
cache: yarn
|