Skip to content

Commit 2ae7b98

Browse files
qmuntalkarianna
andauthored
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 <[email protected]> * Add umbrella issue link --------- Co-authored-by: Martijn Verburg <[email protected]>
1 parent 787d2c4 commit 2ae7b98

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/test.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,3 +81,14 @@ jobs:
8181
run: go test -gcflags=all=-d=checkptr -count 10 -v ./...
8282
env:
8383
GO_OPENSSL_VERSION_OVERRIDE: ${{ matrix.openssl-version }}
84+
azurelinux:
85+
runs-on: ubuntu-latest
86+
container: mcr.microsoft.com/oss/go/microsoft/golang:1.23-azurelinux3.0
87+
steps:
88+
- name: Checkout code
89+
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
90+
- name: Run Test
91+
run: go test -v ./...
92+
# Go with FIPs / OpenSSL support on Azure Linux 3.0 is currently broken due to symcrypt change, so we ignore failures.
93+
# See https://github.com/golang-fips/openssl/issues/158.
94+
continue-on-error: true

0 commit comments

Comments
 (0)