Merge pull request #6858 from mgiessing/main

Create ppc64le release
This commit is contained in:
Phil Estes 2022-04-27 16:14:27 +01:00 committed by GitHub
commit 9da2ce2195
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

@ -133,6 +133,8 @@ jobs:
- goos: linux
goarch: arm
goarm: "5"
- goos: linux
goarch: ppc64le
- goos: freebsd
goarch: amd64
- goos: freebsd
@ -171,6 +173,11 @@ jobs:
echo "CGO_ENABLED=1" >> $GITHUB_ENV
echo "CC=aarch64-linux-gnu-gcc" >> $GITHUB_ENV
;;
linux/ppc64le)
packages+=" crossbuild-essential-ppc64el"
echo "CGO_ENABLED=1" >> $GITHUB_ENV
echo "CC=powerpc64le-linux-gnu-gcc" >> $GITHUB_ENV
;;
windows/arm/v7)
echo "CGO_ENABLED=0" >> $GITHUB_ENV
;;

View File

@ -59,6 +59,7 @@ jobs:
platform:
- linux/amd64
- linux/arm64
- linux/ppc64le
- windows/amd64
steps:
- name: Install Go