Skip to content

Commit

Permalink
images: Adds GOARM to images' Makefiles
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
claudiubelu committed Jan 1, 2020
1 parent fa6b8e8 commit 31ea600
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/images/agnhost/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
SRCS=agnhost
ARCH ?= amd64
TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd))
export
Expand Down
1 change: 1 addition & 0 deletions test/images/apparmor-loader/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
SRCS=loader
ARCH ?= amd64
TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd))
export
Expand Down
1 change: 1 addition & 0 deletions test/images/metadata-concealment/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
SRCS=check_metadata_concealment
ARCH ?= amd64
TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd))
export
Expand Down
1 change: 1 addition & 0 deletions test/images/nonewprivs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
SRCS = nnp
ARCH ?= amd64
TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd))
export
Expand Down
1 change: 1 addition & 0 deletions test/images/pets/peer-finder/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
SRCS = peer-finder
ARCH ?= amd64
TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest
SRC_DIR = pets/peer-finder
export
Expand Down
1 change: 1 addition & 0 deletions test/images/pets/redis-installer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
SRCS = peer-finder
ARCH ?= amd64
TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest
SRC_DIR = pets/peer-finder
export
Expand Down
1 change: 1 addition & 0 deletions test/images/pets/zookeeper-installer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
SRCS = peer-finder
ARCH ?= amd64
TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest
SRC_DIR = pets/peer-finder
export
Expand Down
1 change: 1 addition & 0 deletions test/images/resource-consumer/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
SRCS = consumer consume-cpu/consume-cpu
ARCH ?= amd64
TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd))
export
Expand Down
1 change: 1 addition & 0 deletions test/images/sample-device-plugin/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
SRCS=sampledeviceplugin
ARCH ?= amd64
TARGET ?= $(CURDIR)
GOARM ?= 7
GOLANG_VERSION ?= latest
SRC_DIR = $(notdir $(shell pwd))
export
Expand Down

0 comments on commit 31ea600

Please sign in to comment.