-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.travis.yml
25 lines (21 loc) · 963 Bytes
/
.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
sudo: required
dist: trusty
language: c
git:
submodules: false
before_install:
- git submodule update --init
- echo "deb http://dl.bintray.com/sba1/adtools-deb /" | sudo tee -a /etc/apt/sources.list
- sudo apt-get update -qq
- sudo apt-get install -y cmake pandoc python-mako
- sudo apt-get install -y --force-yes adtools-sdk adtools-binutils adtools-gcc
- git config --global user.email "mail@sebastianbauer.info"
- git config --global user.name "Sebastian Bauer"
env:
- BUILD=STANDALONE
- BUILD=STANDALONE_AMISSL
- BUILD=CMAKE
script:
- if [ "${BUILD}" == "CMAKE" ]; then make -f makefile.aos4; fi
- if [ "${BUILD}" == "STANDALONE" ]; then make -f makefile.aos4.standalone pthread openssl libssh2 && make -f makefile.aos4.standalone; fi
- if [ "${BUILD}" == "STANDALONE_AMISSL" ]; then make -f makefile.aos4.standalone build-deps/amissl4-done pthread libssh2 USE_AMISSL=yes && make -f makefile.aos4.standalone USE_AMISSL=yes; fi