forked from Samsung/TizenRT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (20 loc) · 701 Bytes
/
.travis.yml
File metadata and controls
29 lines (20 loc) · 701 Bytes
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
sudo: false
dist: trusty
language: c
services:
- docker
env:
- BUILD_CONFIG=artik053/minimal
- BUILD_CONFIG=artik053/tc
- BUILD_CONFIG=artik053/st_things
- BUILD_CONFIG=artik053/iotjs
- BUILD_CONFIG=artik055s/audio
- BUILD_CONFIG=qemu/tc_64k
before_install:
- docker pull tizenrt/tizenrt:1.2
- echo "${TRAVIS_BUILD_DIR}"
script:
- docker run -d -it --name tizenrt_docker -v ${TRAVIS_BUILD_DIR}:/root/tizenrt -w /root/tizenrt/os tizenrt/tizenrt:1.2 /bin/bash
- 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 "export PATH=/root/gcc-arm-none-eabi-4_9-2015q3/bin:$PATH;make;"