From 9606baa5a185c0207484e98c24ffdedaadc2ce56 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Mon, 28 Mar 2016 12:47:01 -0400 Subject: [PATCH] linux-x64: Add CircleCI testing. --- circle.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/circle.yml b/circle.yml index 27720b8..b07e074 100644 --- a/circle.yml +++ b/circle.yml @@ -11,6 +11,7 @@ dependencies: - docker pull thewtex/cross-compiler-linux-armv6 - docker pull thewtex/cross-compiler-linux-armv7 - docker pull thewtex/cross-compiler-linux-ppc64le + - docker pull thewtex/cross-compiler-linux-x64 test: override: @@ -26,6 +27,8 @@ test: - 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 + - 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 deployment: hub: @@ -38,3 +41,4 @@ deployment: - docker push thewtex/cross-compiler-linux-armv6 - docker push thewtex/cross-compiler-linux-armv7 - docker push thewtex/cross-compiler-linux-ppc64le + - docker push thewtex/cross-compiler-linux-x64