Skip to content

Commit

Permalink
Use golang:1.21-buster for glibc stuff
Browse files Browse the repository at this point in the history
From Matrix Yggdrasil developer room:

The only problem is on Ubuntu 20.04:
yggstack-linux-amd64: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.34' not found (required by ./yggstack-linux-amd64)
yggstack-linux-amd64: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.32' not found (required by ./yggstack-linux-amd64)

We do not need latest Ubuntu as we dont use external linking in static binaries.

Signed-off-by: Vasyl Gello <[email protected]>
  • Loading branch information
basilgello committed Jul 26, 2024
1 parent 3be03c7 commit 6e6d9cd
Showing 1 changed file with 113 additions and 57 deletions.
170 changes: 113 additions & 57 deletions .github/workflows/trunk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,12 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: write
packages: write

jobs:
build:
strategy:
fail-fast: false

name: Build Windows/Linux/MacOS/FreeBSD/Android
name: Build Windows/Linux-static/MacOS/FreeBSD/Android
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -41,64 +37,13 @@ jobs:
#
echo "::group::yggstack-windows-i386.exe"
GOOS=windows GOARCH=386 ./build -o yggstack-windows-i386.exe
GOOS=windows GOARCH=386 ./build -o yggstack-windows-386.exe
echo "::endgroup::"
#
echo "::group::yggstack-windows-amd64.exe"
GOOS=windows GOARCH=amd64 ./build -o yggstack-windows-amd64.exe
echo "::endgroup::"
#
echo "::group::yggstack-linux-i386"
GOOS=linux GOARCH=386 ./build -o yggstack-linux-i386
echo "::endgroup::"
#
echo "::group::yggstack-linux-amd64"
GOOS=linux GOARCH=amd64 ./build -o yggstack-linux-amd64
echo "::endgroup::"
#
echo "::group::yggstack-linux-armv6"
GOOS=linux GOARCH=arm GOARM=6 ./build -o yggstack-linux-armv6
echo "::endgroup::"
#
echo "::group::yggstack-linux-armv7"
GOOS=linux GOARCH=arm GOARM=7 ./build -o yggstack-linux-armv7
echo "::endgroup::"
#
echo "::group::yggstack-linux-arm64"
GOOS=linux GOARCH=arm64 ./build -o yggstack-linux-arm64
echo "::endgroup::"
#
echo "::group::yggstack-linux-mips-sf"
GOOS=linux GOARCH=mips GOMIPS=softfloat ./build -o yggstack-linux-mips-sf
echo "::endgroup::"
#
echo "::group::yggstack-linux-mipsle-sf"
GOOS=linux GOARCH=mipsle GOMIPS=softfloat ./build -o yggstack-linux-mipsle-sf
echo "::endgroup::"
#
echo "::group::yggstack-linux-mips64"
GOOS=linux GOARCH=mips64 ./build -o yggstack-linux-mips64
echo "::endgroup::"
#
echo "::group::yggstack-linux-mips64le"
GOOS=linux GOARCH=mips64le ./build -o yggstack-linux-mips64le
echo "::endgroup::"
#
echo "::group::yggstack-linux-ppc64"
GOOS=linux GOARCH=ppc64 ./build -o yggstack-linux-ppc64
echo "::endgroup::"
#
echo "::group::yggstack-linux-ppc64le"
GOOS=linux GOARCH=ppc64le ./build -o yggstack-linux-ppc64le
echo "::endgroup::"
#
echo "::group::yggstack-linux-riscv64"
GOOS=linux GOARCH=riscv64 ./build -o yggstack-linux-riscv64
echo "::endgroup::"
#
echo "::group::yggstack-linux-s390x"
GOOS=linux GOARCH=s390x ./build -o yggstack-linux-s390x
echo "::endgroup::"
#
echo "::group::yggstack-linux-i386-static"
CGO_ENABLED=0 GOOS=linux GOARCH=386 ./build -s -o yggstack-linux-i386-static
CGO_ENABLED=0 GOOS=linux GOARCH=386 ./build -s -o yggstack-linux-386-static
Expand Down Expand Up @@ -191,6 +136,7 @@ jobs:
#
echo "::group::yggstack-freebsd-i386"
GOOS=freebsd GOARCH=386 ./build -o yggstack-freebsd-i386
GOOS=freebsd GOARCH=386 ./build -o yggstack-freebsd-386
echo "::endgroup::"
#
echo "::group::yggstack-openbsd-arm64"
Expand All @@ -211,6 +157,7 @@ jobs:
#
echo "::group::yggstack-openbsd-i386"
GOOS=openbsd GOARCH=386 ./build -o yggstack-openbsd-i386
GOOS=openbsd GOARCH=386 ./build -o yggstack-openbsd-386
echo "::endgroup::"
#
echo "::group::yggstack-netbsd-arm64"
Expand All @@ -231,6 +178,7 @@ jobs:
#
echo "::group::yggstack-netbsd-i386"
GOOS=netbsd GOARCH=386 ./build -o yggstack-netbsd-i386
GOOS=netbsd GOARCH=386 ./build -o yggstack-netbsd-386
echo "::endgroup::"
#
echo "::group::yggstack-android-arm64"
Expand All @@ -247,6 +195,7 @@ jobs:
#
echo "::group::yggstack-android-i386"
CGO_ENABLED=1 CC="$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android21-clang" GOOS=android GOARCH=386 ./build -o yggstack-android-i386
CGO_ENABLED=1 CC="$ANDROID_NDK_ROOT/toolchains/llvm/prebuilt/linux-x86_64/bin/i686-linux-android21-clang" GOOS=android GOARCH=386 ./build -o yggstack-android-386
echo "::endgroup::"
#
#echo "::group::yggstack-ios-arm64"
Expand All @@ -257,6 +206,113 @@ jobs:
#GOOS=ios GOARCH=amd64 CC=$(go env GOROOT)/misc/ios/clangwrap.sh ./build -o yggstack-ios-amd64
#echo "::endgroup::"
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: yggstack-allnoglibc
path: yggstack-*

build-linux-glibc:
strategy:
fail-fast: false

name: Build Linux-glibc
runs-on: ubuntu-latest
container:
image: jumpserver/golang:1.21-buster
volumes:
- ${PWD}:/workspace
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Build yggstack executables
run: |
echo "::group::yggstack-linux-i386"
GOOS=linux GOARCH=386 ./build -o yggstack-linux-i386
GOOS=linux GOARCH=386 ./build -o yggstack-linux-386
echo "::endgroup::"
#
echo "::group::yggstack-linux-amd64"
GOOS=linux GOARCH=amd64 ./build -o yggstack-linux-amd64
echo "::endgroup::"
#
echo "::group::yggstack-linux-armv6"
GOOS=linux GOARCH=arm GOARM=6 ./build -o yggstack-linux-armv6
echo "::endgroup::"
#
echo "::group::yggstack-linux-armv7"
GOOS=linux GOARCH=arm GOARM=7 ./build -o yggstack-linux-armv7
echo "::endgroup::"
#
echo "::group::yggstack-linux-arm64"
GOOS=linux GOARCH=arm64 ./build -o yggstack-linux-arm64
echo "::endgroup::"
#
echo "::group::yggstack-linux-mips-sf"
GOOS=linux GOARCH=mips GOMIPS=softfloat ./build -o yggstack-linux-mips-sf
echo "::endgroup::"
#
echo "::group::yggstack-linux-mipsle-sf"
GOOS=linux GOARCH=mipsle GOMIPS=softfloat ./build -o yggstack-linux-mipsle-sf
echo "::endgroup::"
#
echo "::group::yggstack-linux-mips64"
GOOS=linux GOARCH=mips64 ./build -o yggstack-linux-mips64
echo "::endgroup::"
#
echo "::group::yggstack-linux-mips64le"
GOOS=linux GOARCH=mips64le ./build -o yggstack-linux-mips64le
echo "::endgroup::"
#
echo "::group::yggstack-linux-ppc64"
GOOS=linux GOARCH=ppc64 ./build -o yggstack-linux-ppc64
echo "::endgroup::"
#
echo "::group::yggstack-linux-ppc64le"
GOOS=linux GOARCH=ppc64le ./build -o yggstack-linux-ppc64le
echo "::endgroup::"
#
echo "::group::yggstack-linux-riscv64"
GOOS=linux GOARCH=riscv64 ./build -o yggstack-linux-riscv64
echo "::endgroup::"
#
echo "::group::yggstack-linux-s390x"
GOOS=linux GOARCH=s390x ./build -o yggstack-linux-s390x
echo "::endgroup::"
#
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: yggstack-linuxglibc
path: yggstack-*

publish:
strategy:
fail-fast: false

needs:
- build
- build-linux-glibc

permissions:
contents: write
packages: write

runs-on: ubuntu-latest
steps:
- name: Download artifacts (all excluding glibc)
uses: actions/download-artifact@master
with:
name: yggstack-allnoglibc

- name: Download artifacts (linux glibc)
uses: actions/download-artifact@master
with:
name: yggstack-linuxglibc

- name: Publish release
run: |
gh release create trunk --prerelease yggstack-* || gh release upload trunk yggstack-* --clobber
Expand Down

0 comments on commit 6e6d9cd

Please sign in to comment.