From eede4a14ace6b766787bfdf20949e917344ad7cc Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Mon, 7 Feb 2022 16:40:39 -0500 Subject: [PATCH] ci: fix arm64 build 'make dev' is not enough, we need to move it into PATH as well. --- .circleci/config.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index c2d09266a4..c5ea84484a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -270,7 +270,12 @@ jobs: - run: go mod download - run: name: make dev - command: if [[ "$CIRCLE_BRANCH" =~ ^main$|^release/ ]]; then make dev; fi + command: | + if [[ "$CIRCLE_BRANCH" =~ ^main$|^release/ ]]; then + make dev + mkdir -p /home/circleci/bin + cp ./bin/consul /home/circleci/bin/consul + fi - run-go-test-full: go_test_flags: 'if ! [[ "$CIRCLE_BRANCH" =~ ^main$|^release/ ]]; then export GO_TEST_FLAGS="-short"; fi'