From 2ae7b9813caf936f33771cec1a4d07552295cbfa Mon Sep 17 00:00:00 2001 From: Quim Muntal Date: Wed, 4 Sep 2024 02:14:12 +0200 Subject: [PATCH] Add Azure Linux 3.0 coverage in GitHub Actions (#154) * add Azure Linux coverage in GitHub Actions * Apply suggestions from code review Co-authored-by: Martijn Verburg * Add umbrella issue link --------- Co-authored-by: Martijn Verburg --- .github/workflows/test.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f9e0de88..6fd84280 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -81,3 +81,14 @@ jobs: run: go test -gcflags=all=-d=checkptr -count 10 -v ./... env: GO_OPENSSL_VERSION_OVERRIDE: ${{ matrix.openssl-version }} + azurelinux: + runs-on: ubuntu-latest + container: mcr.microsoft.com/oss/go/microsoft/golang:1.23-azurelinux3.0 + steps: + - name: Checkout code + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - name: Run Test + run: go test -v ./... + # Go with FIPs / OpenSSL support on Azure Linux 3.0 is currently broken due to symcrypt change, so we ignore failures. + # See https://github.com/golang-fips/openssl/issues/158. + continue-on-error: true