mirror of
https://github.com/portainer/portainer.git
synced 2025-08-04 21:35:23 +02:00
chore(build-system): add support for linux 386 architecture (#871)
This commit is contained in:
parent
a2e781fb3f
commit
6e95e1279a
2 changed files with 74 additions and 38 deletions
18
build.sh
18
build.sh
|
@ -38,36 +38,42 @@ mkdir -pv /tmp/portainer-builds
|
|||
|
||||
PLATFORM="linux"
|
||||
ARCH="amd64"
|
||||
grunt release
|
||||
grunt release-${PLATFORM}-${ARCH}
|
||||
build_and_push_images ${PLATFORM} ${ARCH}
|
||||
build_archive ${PLATFORM} ${ARCH}
|
||||
|
||||
PLATFORM="linux"
|
||||
ARCH="386"
|
||||
grunt release-${PLATFORM}-${ARCH}
|
||||
build_and_push_images ${PLATFORM} ${ARCH}
|
||||
build_archive ${PLATFORM} ${ARCH}
|
||||
|
||||
PLATFORM="linux"
|
||||
ARCH="arm"
|
||||
grunt release-arm
|
||||
grunt release-${PLATFORM}-${ARCH}
|
||||
build_and_push_images ${PLATFORM} ${ARCH}
|
||||
build_archive ${PLATFORM} ${ARCH}
|
||||
|
||||
PLATFORM="linux"
|
||||
ARCH="arm64"
|
||||
grunt release-arm64
|
||||
grunt release-${PLATFORM}-${ARCH}
|
||||
build_and_push_images ${PLATFORM} ${ARCH}
|
||||
build_archive ${PLATFORM} ${ARCH}
|
||||
|
||||
PLATFORM="linux"
|
||||
ARCH="ppc64le"
|
||||
grunt release-ppc64le
|
||||
grunt release-${PLATFORM}-${ARCH}
|
||||
build_and_push_images ${PLATFORM} ${ARCH}
|
||||
build_archive ${PLATFORM} ${ARCH}
|
||||
|
||||
PLATFORM="darwin"
|
||||
ARCH="amd64"
|
||||
grunt release-macos
|
||||
grunt release-${PLATFORM}-${ARCH}
|
||||
build_archive ${PLATFORM} ${ARCH}
|
||||
|
||||
PLATFORM="windows"
|
||||
ARCH="amd64"
|
||||
grunt release-win
|
||||
grunt release-${PLATFORM}-${ARCH}
|
||||
build_archive ${PLATFORM} ${ARCH}
|
||||
|
||||
exit 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue