dockcross/circle.yml

49 lines
2.4 KiB
YAML
Raw Normal View History

2016-03-02 16:21:14 +01:00
machine:
services:
- docker
dependencies:
override:
- docker info
- docker pull thewtex/cross-compiler-base
- docker pull thewtex/cross-compiler-android-arm
2016-03-13 03:26:41 +01:00
- docker pull thewtex/cross-compiler-browser-asmjs
2016-03-14 22:54:40 +01:00
- docker pull thewtex/cross-compiler-linux-armv6
- docker pull thewtex/cross-compiler-linux-armv7
2016-03-20 23:24:32 +01:00
- docker pull thewtex/cross-compiler-linux-ppc64le
2016-03-28 18:47:01 +02:00
- docker pull thewtex/cross-compiler-linux-x64
2016-04-06 22:48:12 +02:00
- docker pull thewtex/cross-compiler-linux-x86
2016-03-02 16:21:14 +01:00
test:
override:
- make base
2016-03-04 03:20:30 +01:00
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-base python /usr/src/test/run.py --emulator 'sh -c'
- make android-arm
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-android-arm python /usr/src/test/run.py
2016-03-13 03:26:41 +01:00
- make browser-asmjs
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-browser-asmjs python /usr/src/test/run.py --emulator /usr/bin/node --exe-suffix ".js"
2016-03-14 22:54:40 +01:00
- make linux-armv6
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-linux-armv6 python /usr/src/test/run.py --emulator /usr/bin/qemu-arm
2016-03-18 23:21:43 +01:00
- make linux-armv7
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-linux-armv7 python /usr/src/test/run.py --emulator /usr/bin/qemu-arm
2016-03-20 23:24:32 +01:00
- make linux-ppc64le
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-linux-ppc64le python /usr/src/test/run.py --emulator /usr/bin/qemu-ppc64le --languages C
2016-03-28 18:47:01 +02:00
- make linux-x64
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-linux-x64 python /usr/src/test/run.py
2016-04-06 22:48:12 +02:00
- make linux-x86
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-linux-x86 python /usr/src/test/run.py
2016-03-02 18:24:00 +01:00
deployment:
hub:
branch: master
commands:
- docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS
- docker push thewtex/cross-compiler-base
- docker push thewtex/cross-compiler-android-arm
2016-03-14 22:54:40 +01:00
- docker push thewtex/cross-compiler-browser-asmjs
- docker push thewtex/cross-compiler-linux-armv6
2016-03-18 23:21:43 +01:00
- docker push thewtex/cross-compiler-linux-armv7
2016-03-20 23:24:32 +01:00
- docker push thewtex/cross-compiler-linux-ppc64le
2016-03-28 18:47:01 +02:00
- docker push thewtex/cross-compiler-linux-x64
2016-04-06 22:48:12 +02:00
- docker push thewtex/cross-compiler-linux-x86