Merge pull request #16 from thewtex/circleci-test-commands

ci: Fix make *.test invocation
This commit is contained in:
Matt McCormick 2016-07-16 17:39:32 -04:00 committed by GitHub
commit ae9d28a177
2 changed files with 13 additions and 12 deletions

View File

@ -89,6 +89,7 @@ base: Dockerfile
$(DOCKER) build -t $(ORG)/base .
base.test: base test/run.py
mkdir -p $(BIN)
$(DOCKER) run --rm dockcross/base > $(BIN)/dockcross-base && chmod +x $(BIN)/dockcross-base
$(BIN)/dockcross-base python test/run.py --emulator 'sh -c'

View File

@ -24,19 +24,19 @@ dependencies:
test:
override:
- make base/test
- make android-arm/test
- make browser-asmjs/test
- make linux-arm64/test
- make linux-armv5/test
- make linux-armv6/test
- make linux-armv7/test
- make linux-ppc64le/test
- make linux-x64/test
- make linux-x86/test
- make windows-x64/test:
- make base.test
- make android-arm.test
- make browser-asmjs.test
- make linux-arm64.test
- make linux-armv5.test
- make linux-armv6.test
- make linux-armv7.test
- make linux-ppc64le.test
- make linux-x64.test
- make linux-x86.test
- make windows-x64.test:
timeout: 3000
- make windows-x86/test:
- make windows-x86.test:
timeout: 3000
deployment: