From ebf5b38a81d45c5300347357ee1a733cb9c8ca25 Mon Sep 17 00:00:00 2001 From: Jacob Vallejo Date: Mon, 10 Feb 2020 16:43:15 -0800 Subject: [PATCH] build: force Circle CI to use amd64 for unit tests Though the tests don't require CGO with cross-compilation support, the tests do still require support to exec the golang test binaries. --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d95a390561d..212e4827565 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,7 +19,8 @@ references: - run: make build-linux "ARCH=$ARCH" - run: make lint - run: make vet - - run: make unit-test + # TODO: Enable architecture specific unit-test when Circle CI supports it! + - run: make unit-test ARCH=amd64 jobs: build_x86_64: