Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions eng/azure-pipelines-public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ stages:
x64:
assetManifestOS: linux
assetManifestPlatform: x64
imagename: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-amd64
imagename: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-amd64
rootfs: /crossrootfs/x64
ClangTargetArg: /p:ClangTarget=x86_64-linux-gnu
ClangBinDirArg: /p:ClangBinDir=/usr/local/bin
archflag: --arch x64
arm64:
assetManifestOS: linux
assetManifestPlatform: arm64
imagename: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-arm64
imagename: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-arm64
rootfs: /crossrootfs/arm64
ClangTargetArg: /p:ClangTarget=aarch64-linux-gnu
ClangBinDirArg: /p:ClangBinDir=/usr/local/bin
Expand Down Expand Up @@ -79,15 +79,15 @@ stages:
x64:
assetManifestOS: linux-musl
assetManifestPlatform: x64
imagename: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-amd64-alpine
imagename: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-amd64-musl
rootfs: /crossrootfs/x64
ClangTargetArg: /p:ClangTarget=x86_64-alpine-linux-musl
ClangBinDirArg: /p:ClangBinDir=/usr/local/bin
archflag: --arch x64
arm64:
assetManifestOS: linux-musl
assetManifestPlatform: arm64
imagename: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-arm64-alpine
imagename: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-arm64-musl
rootfs: /crossrootfs/arm64
ClangTargetArg: /p:ClangTarget=aarch64-alpine-linux-musl
ClangBinDirArg: /p:ClangBinDir=/usr/local/bin
Expand Down
24 changes: 12 additions & 12 deletions eng/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ extends:
image: $(WindowsImage)
os: windows
containers:
mariner2crossamd64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-amd64
mariner2crossarm64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-arm64
mariner2crossamd64alpine:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-amd64-alpine
mariner2crossarm64alpine:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:cbl-mariner-2.0-cross-arm64-alpine
crossamd64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-amd64
crossarm64:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-arm64
crossamd64musl:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-amd64-musl
crossarm64musl:
image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-arm64-musl
stages:
- stage: build
displayName: Build
Expand All @@ -77,7 +77,7 @@ extends:
name: $(DncEngInternalBuildPool)
image: $(LinuxImage)
os: linux
container: mariner2crossamd64
container: crossamd64
steps:
- script: |
git clean -ffdx
Expand Down Expand Up @@ -109,7 +109,7 @@ extends:
name: $(DncEngInternalBuildPool)
image: $(LinuxImage)
os: linux
container: mariner2crossarm64
container: crossarm64
steps:
- script: |
git clean -ffdx
Expand Down Expand Up @@ -141,7 +141,7 @@ extends:
name: $(DncEngInternalBuildPool)
image: $(LinuxImage)
os: linux
container: mariner2crossamd64alpine
container: crossamd64musl
steps:
- script: |
git clean -ffdx
Expand Down Expand Up @@ -173,7 +173,7 @@ extends:
name: $(DncEngInternalBuildPool)
image: $(LinuxImage)
os: linux
container: mariner2crossarm64alpine
container: crossarm64musl
steps:
- script: |
git clean -ffdx
Expand Down
Loading