From 5d6865977020a3391c52b1660fbe123764681e49 Mon Sep 17 00:00:00 2001 From: Ashesh Vidyut Date: Thu, 22 Feb 2024 20:45:52 +0530 Subject: [PATCH] fix arch --- .github/workflows/terraform-ci.yml | 1 - consul-lambda/Makefile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/terraform-ci.yml b/.github/workflows/terraform-ci.yml index 82016a3e..f1b68efe 100644 --- a/.github/workflows/terraform-ci.yml +++ b/.github/workflows/terraform-ci.yml @@ -61,7 +61,6 @@ jobs: working-directory: ./test/acceptance acceptance: strategy: - max-parallel: 1 matrix: platform: - {goos: "linux", goarch: "amd64"} diff --git a/consul-lambda/Makefile b/consul-lambda/Makefile index 02eab67a..05b671b7 100644 --- a/consul-lambda/Makefile +++ b/consul-lambda/Makefile @@ -3,7 +3,7 @@ SHELL = /usr/bin/env bash -euo pipefail -c # ---------- CRT ---------- BIN_NAME = consul-lambda-registrator -ARCH = $(shell A=$$(uname -m); [ $$A = x86_64 ] && A=amd64; echo $$A) +ARCH ?= $(shell A=$$(uname -m); [ $$A = x86_64 ] && A=amd64; echo $$A) OS = linux PLATFORM = $(OS)/$(ARCH) DIST = dist/$(PLATFORM)