Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set Linux package architecture for 32-bit ARM #2618

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/publish-linux-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
rpm: aarch64
- goreleaser: armv7
gox: arm
deb: armv7
rpm: armv7
deb: armhf
rpm: armv7hl
packager:
- rpm
- deb
Expand All @@ -41,7 +41,7 @@ jobs:
ZITI_MAINTAINER: "OpenZiti Maintainers <[email protected]>"
ZITI_HOMEPAGE: "https://openziti.io"
ZITI_VENDOR: "NetFoundry Inc."
qrkourier marked this conversation as resolved.
Show resolved Hide resolved
GOARCH: ${{ matrix.arch.goreleaser }}
TARGETARCH: ${{ matrix.packager == 'deb' && matrix.arch.deb || matrix.arch.rpm }}
MINIMUM_SYSTEMD_VERSION: 232
ZITI_DEB_TEST_REPO: ${{ vars.ZITI_DEB_TEST_REPO || 'zitipax-openziti-deb-test' }}
ZITI_RPM_TEST_REPO: ${{ vars.ZITI_RPM_TEST_REPO || 'zitipax-openziti-rpm-test' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-deployments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
ZITI_MAINTAINER: "OpenZiti Maintainers <[email protected]>"
ZITI_HOMEPAGE: "https://openziti.io"
ZITI_VENDOR: "NetFoundry Inc."
GOARCH: ${{ matrix.arch.goreleaser }}
TARGETARCH: ${{ matrix.arch.goreleaser }}
MINIMUM_SYSTEMD_VERSION: 232

- name: Upload Package to Build Summary
Expand Down
2 changes: 1 addition & 1 deletion dist/dist-packages/linux/nfpm-openziti-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# check https://nfpm.goreleaser.com/configuration for detailed usage
#
name: openziti-controller
arch: ${GOARCH}
arch: ${TARGETARCH}
platform: linux
version: ${ZITI_VERSION}
prerelease: ${ZITI_REV}
Expand Down
2 changes: 1 addition & 1 deletion dist/dist-packages/linux/nfpm-openziti-router.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# check https://nfpm.goreleaser.com/configuration for detailed usage
#
name: openziti-router
arch: ${GOARCH}
arch: ${TARGETARCH}
platform: linux
version: ${ZITI_VERSION}
prerelease: ${ZITI_REV}
Expand Down
2 changes: 1 addition & 1 deletion dist/dist-packages/linux/nfpm-openziti.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# check https://nfpm.goreleaser.com/configuration for detailed usage
#
name: openziti
arch: ${GOARCH}
arch: ${TARGETARCH}
platform: linux
version: ${ZITI_VERSION}
prerelease: ${ZITI_REV}
Expand Down
Loading