Skip to content

Commit 31ea600

Browse files
committed
images: Adds GOARM to images' Makefiles
In order to build the image binaries, the GOARM variable is required, but not all Makefiles have it defined, causing the make to fail on those images. This adds the require GOARM variable to the Makefiles in question.
1 parent fa6b8e8 commit 31ea600

File tree

9 files changed

+9
-0
lines changed

9 files changed

+9
-0
lines changed

test/images/agnhost/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
SRCS=agnhost
1616
ARCH ?= amd64
1717
TARGET ?= $(CURDIR)
18+
GOARM ?= 7
1819
GOLANG_VERSION ?= latest
1920
SRC_DIR = $(notdir $(shell pwd))
2021
export

test/images/apparmor-loader/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
SRCS=loader
1616
ARCH ?= amd64
1717
TARGET ?= $(CURDIR)
18+
GOARM ?= 7
1819
GOLANG_VERSION ?= latest
1920
SRC_DIR = $(notdir $(shell pwd))
2021
export

test/images/metadata-concealment/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
SRCS=check_metadata_concealment
1616
ARCH ?= amd64
1717
TARGET ?= $(CURDIR)
18+
GOARM ?= 7
1819
GOLANG_VERSION ?= latest
1920
SRC_DIR = $(notdir $(shell pwd))
2021
export

test/images/nonewprivs/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
SRCS = nnp
1616
ARCH ?= amd64
1717
TARGET ?= $(CURDIR)
18+
GOARM ?= 7
1819
GOLANG_VERSION ?= latest
1920
SRC_DIR = $(notdir $(shell pwd))
2021
export

test/images/pets/peer-finder/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
SRCS = peer-finder
1616
ARCH ?= amd64
1717
TARGET ?= $(CURDIR)
18+
GOARM ?= 7
1819
GOLANG_VERSION ?= latest
1920
SRC_DIR = pets/peer-finder
2021
export

test/images/pets/redis-installer/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
SRCS = peer-finder
1616
ARCH ?= amd64
1717
TARGET ?= $(CURDIR)
18+
GOARM ?= 7
1819
GOLANG_VERSION ?= latest
1920
SRC_DIR = pets/peer-finder
2021
export

test/images/pets/zookeeper-installer/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
SRCS = peer-finder
1616
ARCH ?= amd64
1717
TARGET ?= $(CURDIR)
18+
GOARM ?= 7
1819
GOLANG_VERSION ?= latest
1920
SRC_DIR = pets/peer-finder
2021
export

test/images/resource-consumer/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
SRCS = consumer consume-cpu/consume-cpu
1616
ARCH ?= amd64
1717
TARGET ?= $(CURDIR)
18+
GOARM ?= 7
1819
GOLANG_VERSION ?= latest
1920
SRC_DIR = $(notdir $(shell pwd))
2021
export

test/images/sample-device-plugin/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
SRCS=sampledeviceplugin
1616
ARCH ?= amd64
1717
TARGET ?= $(CURDIR)
18+
GOARM ?= 7
1819
GOLANG_VERSION ?= latest
1920
SRC_DIR = $(notdir $(shell pwd))
2021
export

0 commit comments

Comments
 (0)