Skip to content

Commit

Permalink
Add Azure Linux 3.0 coverage in GitHub Actions (#154)
Browse files Browse the repository at this point in the history
* add Azure Linux coverage in GitHub Actions

* Apply suggestions from code review

Co-authored-by: Martijn Verburg <[email protected]>

* Add umbrella issue link

---------

Co-authored-by: Martijn Verburg <[email protected]>
  • Loading branch information
qmuntal and karianna authored Sep 4, 2024
1 parent 787d2c4 commit 2ae7b98
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 2ae7b98

Please sign in to comment.