From 2e328f467e082aa0cfe007b20badc977889934ca Mon Sep 17 00:00:00 2001 From: Michele Azzolari Date: Sun, 3 Dec 2023 06:21:49 +0100 Subject: [PATCH] CI: add job to test on 20.04 binary built on 22.04 ref https://github.com/golang/go/issues/57328 --- .github/workflows/go.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 45f19c0..eca81bd 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -26,3 +26,21 @@ jobs: run: make build - name: Print theo-agent -version run: ./build/theo-agent -version + - name: Cross build + run: | + GOOS=linux GOARCH=amd64 make -e buildx + - name: Upload theo-agent + uses: actions/upload-artifact@v3 + with: + name: theo-agent-Linux-x86_64 + path: build/theo-agent-Linux-x86_64 + test-build: + name: Build + runs-on: ubuntu-20.04 + steps: + - name: Download theo-agent + uses: actions/download-artifact@v3 + with: + name: theo-agent-Linux-x86_64 + - name: Print theo-agent -version + run: ./theo-agent-Linux-x86_64 -version