-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml
44 lines (36 loc) · 1.02 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
################################################################################
# File: .travis.yml
# Author: GAndaLF
# Brief: Configuration file for Travis-CI continuous integration tool.
################################################################################
sudo: false
dist: trusty
# Cache storing toolchain compiled from source
cache:
directories:
- "${HOME}/cache"
# Turn off default travis email notifications
notifications:
email: false
# environmental variables
env:
- XZ_OPT="-0 -T 0 -v"
# install packages needed by toolchain and gcc-4.8 with gnu++11 support.
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- texinfo
- texlive
language: generic
script:
- chmod +x scripts/install_bleeding_edge_toolchain.sh
- ./scripts/install_bleeding_edge_toolchain.sh
- export PATH=$PATH:${HOME}/toolchains/arm-none-eabi-gcc/bin; echo $PATH;
- make
after_failure:
- tail -n 1000 /tmp/stdout.log
- tail -n 1000 /tmp/stderr.log