diff --git a/circle.yml b/circle.yml index 786412b..27720b8 100644 --- a/circle.yml +++ b/circle.yml @@ -10,6 +10,7 @@ dependencies: - docker pull thewtex/cross-compiler-browser-asmjs - docker pull thewtex/cross-compiler-linux-armv6 - docker pull thewtex/cross-compiler-linux-armv7 + - docker pull thewtex/cross-compiler-linux-ppc64le test: override: @@ -23,6 +24,8 @@ test: - 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 - 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 + - 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 deployment: hub: @@ -34,3 +37,4 @@ deployment: - docker push thewtex/cross-compiler-browser-asmjs - docker push thewtex/cross-compiler-linux-armv6 - docker push thewtex/cross-compiler-linux-armv7 + - docker push thewtex/cross-compiler-linux-ppc64le