forked from Samsung/TizenRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
33 lines (26 loc) · 880 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
26
27
28
29
30
31
32
33
sudo: false
dist: trusty
language: c
services:
- docker
env:
global:
- TIZENRT_IMG_VERSION=1.4.6
matrix:
- BUILD_CONFIG=artik055s/audio
- BUILD_CONFIG=artik053/grpc
- BUILD_CONFIG=artik053/st_things
- BUILD_CONFIG=artik053/tc
- BUILD_CONFIG=artik053/iotjs
- BUILD_CONFIG=artik053/minimal
- BUILD_CONFIG=qemu/tc_64k
- BUILD_CONFIG=qemu/build_test
before_install:
- docker pull tizenrt/tizenrt:${TIZENRT_IMG_VERSION}
- echo "${TRAVIS_BUILD_DIR}"
script:
- docker run -d -it --name tizenrt_docker -v ${TRAVIS_BUILD_DIR}:/root/tizenrt -w /root/tizenrt/os tizenrt/tizenrt:${TIZENRT_IMG_VERSION} /bin/bash
- docker exec tizenrt_docker arm-none-eabi-gcc --version
- docker exec tizenrt_docker make distclean
- docker exec -it tizenrt_docker bash -c "cd tools; ./configure.sh ${BUILD_CONFIG}"
- docker exec -it tizenrt_docker bash -c "make"