Skip to content

Commit

Permalink
build: Limit exporter builds to amd, arm and 386
Browse files Browse the repository at this point in the history
* We are still missing btf info for different archs in vmlinux.h. Until we figure that out, dont build for other "exotic" archs.

Signed-off-by: Mahendra Paipuri <[email protected]>
  • Loading branch information
mahendrapaipuri committed Sep 28, 2024
1 parent 83d30fa commit 1b009cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .promu-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ crossbuild:
- linux/386
- linux/amd64
- linux/arm64
- linux/mips
- linux/mips64
- linux/mips64le
- linux/mipsle
# - linux/mips
# - linux/mips64
# - linux/mips64le
# - linux/mipsle
# - linux/ppc64
- linux/ppc64le
- linux/riscv64
# - linux/ppc64le
# - linux/riscv64
# - linux/s390x
2 changes: 1 addition & 1 deletion pkg/collector/bpf/Makefile.common
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ else ifeq ($(GOARCH),amd64)
else ifeq ($(GOARCH),arm64)
BPF_TARGET_ARCH = arm64
BPF_TARGET_MARCH = bpfel
else ifeq ($(GOARCH),mpis)
else ifeq ($(GOARCH),mips)
BPF_TARGET_ARCH = mips
BPF_TARGET_MARCH = bpfeb
else ifeq ($(GOARCH),ppc64)
Expand Down

0 comments on commit 1b009cd

Please sign in to comment.