Skip to content

Commit

Permalink
add mariner2 to CI matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
qmuntal committed Oct 25, 2024
1 parent 3bd1a03 commit 99817ba
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 1 deletion.
4 changes: 4 additions & 0 deletions eng/pipeline/pr-outerloop-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ resources:
image: golangpublicimages.azurecr.io/go-infra-images/prereqs:cbl-mariner-1.0.20211027-20211201-0cccc22
- container: mariner1arm64
image: golangpublicimages.azurecr.io/go-infra-images/prereqs:cbl-mariner-arm64-1.0-20220314-a003148
- container: mariner2
image: mcr.microsoft.com/microsoft-go/infra-images:cbl-mariner-2.0-amd64-default-20241024174534-e697cea
- container: mariner2arm64
image: mcr.microsoft.com/microsoft-go/infra-images:cbl-mariner-2.0-arm64-default-20241024174534-e697cea
- container: azurelinux3
image: mcr.microsoft.com/microsoft-go/infra-images:azurelinux-3.0-amd64-default-20241024144202-a3a1203

Expand Down
4 changes: 4 additions & 0 deletions eng/pipeline/rolling-innerloop-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ extends:
image: golangpublicimages.azurecr.io/go-infra-images/prereqs:cbl-mariner-1.0.20211027-20211201-0cccc22
mariner1arm64:
image: golangpublicimages.azurecr.io/go-infra-images/prereqs:cbl-mariner-arm64-1.0-20220314-a003148
mariner2:
image: mcr.microsoft.com/microsoft-go/infra-images:cbl-mariner-2.0-amd64-default-20241024174534-e697cea
mariner2arm64:
image: mcr.microsoft.com/microsoft-go/infra-images:cbl-mariner-2.0-arm64-default-20241024174534-e697cea
azurelinux3:
image: mcr.microsoft.com/microsoft-go/infra-images:azurelinux-3.0-amd64-default-20241024144202-a3a1203

Expand Down
4 changes: 4 additions & 0 deletions eng/pipeline/rolling-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ extends:
image: golangpublicimages.azurecr.io/go-infra-images/prereqs:cbl-mariner-1.0.20211027-20211201-0cccc22
mariner1arm64:
image: golangpublicimages.azurecr.io/go-infra-images/prereqs:cbl-mariner-arm64-1.0-20220314-a003148
mariner2:
image: mcr.microsoft.com/microsoft-go/infra-images:cbl-mariner-2.0-amd64-default-20241024174534-e697cea
mariner2arm64:
image: mcr.microsoft.com/microsoft-go/infra-images:cbl-mariner-2.0-arm64-default-20241024174534-e697cea
azurelinux3:
image: mcr.microsoft.com/microsoft-go/infra-images:azurelinux-3.0-amd64-default-20241024144202-a3a1203

Expand Down
3 changes: 3 additions & 0 deletions eng/pipeline/stages/go-builder-matrix-stages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,17 @@ stages:
- { os: linux, arch: arm64, hostArch: amd64, config: buildandpack }
- ${{ if parameters.includeArm64Host }}:
- { os: linux, arch: arm64, config: buildandpack }
- { os: linux, arch: arm64, config: buildandpack, distro: mariner2 }
- ${{ if parameters.innerloop }}:
- { os: linux, arch: amd64, config: devscript }
- { os: linux, arch: amd64, config: test }
- { os: linux, arch: amd64, config: test, distro: ubuntu }
- { os: linux, arch: amd64, config: test, distro: mariner2 }
- { os: linux, arch: amd64, config: test, distro: azurelinux3 }
- { experiment: opensslcrypto, os: linux, arch: amd64, config: test }
- { experiment: opensslcrypto, os: linux, arch: amd64, config: test, fips: true }
- { experiment: opensslcrypto, os: linux, arch: amd64, config: test, distro: ubuntu }
- { experiment: opensslcrypto, os: linux, arch: amd64, config: test, distro: mariner2, broken: true }
- { experiment: opensslcrypto, os: linux, arch: amd64, config: test, distro: azurelinux3, broken: true }
- { experiment: boringcrypto, os: linux, arch: amd64, config: test }
- { experiment: boringcrypto, os: linux, arch: amd64, config: test, distro: ubuntu }
Expand Down
7 changes: 6 additions & 1 deletion eng/pipeline/stages/run-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,17 @@ stages:
${{ if eq(parameters.builder.hostArch, 'amd64') }}:
${{ if eq(parameters.builder.distro, 'ubuntu') }}:
container: ubuntu2204
${{ elseif eq(parameters.builder.distro, 'mariner2') }}:
container: mariner2
${{ elseif eq(parameters.builder.distro, 'azurelinux3') }}:
container: azurelinux3
${{ else }}:
container: mariner1
${{ elseif eq(parameters.builder.hostArch, 'arm64') }}:
container: mariner1arm64
${{ if eq(parameters.builder.distro, 'mariner2') }}:
container: mariner2arm64
${{ else }}:
container: mariner1arm64

variables:
- group: go-cmdscan-rules
Expand Down

0 comments on commit 99817ba

Please sign in to comment.