windows-x86: Add CircleCI testing.

This commit is contained in:
Matt McCormick 2016-04-16 21:37:33 -04:00
parent f3be2be983
commit b2d25e9a57

View File

@ -14,6 +14,7 @@ dependencies:
- docker pull thewtex/cross-compiler-linux-x64 - docker pull thewtex/cross-compiler-linux-x64
- docker pull thewtex/cross-compiler-linux-x86 - docker pull thewtex/cross-compiler-linux-x86
- docker pull thewtex/cross-compiler-windows-x64 - docker pull thewtex/cross-compiler-windows-x64
- docker pull thewtex/cross-compiler-windows-x86
test: test:
override: override:
@ -36,6 +37,9 @@ test:
- make windows-x64: - make windows-x64:
timeout: 3000 timeout: 3000
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-windows-x64 python /usr/src/test/run.py --emulator /usr/bin/wine --exe-suffix ".exe" - docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-windows-x64 python /usr/src/test/run.py --emulator /usr/bin/wine --exe-suffix ".exe"
- make windows-x86:
timeout: 3000
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-windows-x86 python /usr/src/test/run.py --emulator /usr/bin/wine --exe-suffix ".exe"
deployment: deployment:
hub: hub:
@ -51,3 +55,4 @@ deployment:
- docker push thewtex/cross-compiler-linux-x64 - docker push thewtex/cross-compiler-linux-x64
- docker push thewtex/cross-compiler-linux-x86 - docker push thewtex/cross-compiler-linux-x86
- docker push thewtex/cross-compiler-windows-x64 - docker push thewtex/cross-compiler-windows-x64
- docker push thewtex/cross-compiler-windows-x86