Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packaging/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ override_dh_auto_build:
mkdir -p build/src/github.com/percona/percona-telemetry-agent
find . -mindepth 1 -maxdepth 1 -not -name build -exec cp -r {} build/src/github.com/percona/percona-telemetry-agent/ \;
ifeq ($(DEB_BUILD_ARCH),arm64)
cd build/src/github.com/percona/percona-telemetry-agent/ && env GOARCH=arm64 make build
cd build/src/github.com/percona/percona-telemetry-agent/ && env GOARCH=arm64 make build COMPONENT_VERSION=$(COMPONENT_VERSION) TELEMETRY_AGENT_RELEASE_FULLCOMMIT=$(TELEMETRY_AGENT_RELEASE_FULLCOMMIT)
else
cd build/src/github.com/percona/percona-telemetry-agent/ && env GOARCH=amd64 make build
cd build/src/github.com/percona/percona-telemetry-agent/ && env GOARCH=amd64 make build COMPONENT_VERSION=$(COMPONENT_VERSION) TELEMETRY_AGENT_RELEASE_FULLCOMMIT=$(TELEMETRY_AGENT_RELEASE_FULLCOMMIT)
endif
touch $@

Expand Down