Skip to content

Commit

Permalink
fix arch
Browse files Browse the repository at this point in the history
  • Loading branch information
absolutelightning committed Feb 22, 2024
1 parent 38bd77f commit 5d68659
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/terraform-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ jobs:
working-directory: ./test/acceptance
acceptance:
strategy:
max-parallel: 1
matrix:
platform:
- {goos: "linux", goarch: "amd64"}
Expand Down
2 changes: 1 addition & 1 deletion consul-lambda/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5d68659

Please sign in to comment.