diff --git a/eng/pipelines/pr-validation-pipeline.yml b/eng/pipelines/pr-validation-pipeline.yml index 14e07885..c85a1443 100644 --- a/eng/pipelines/pr-validation-pipeline.yml +++ b/eng/pipelines/pr-validation-pipeline.yml @@ -1395,12 +1395,14 @@ jobs: - script: | # Create a Docker container for testing on x86_64 + # TODO(AB#40901): Temporary pin to 3.22 due to msodbcsql ARM64 package arch mismatch + # Revert to alpine:latest once ODBC team releases fixed ARM64 package docker run -d --name test-container-alpine \ --platform linux/amd64 \ -v $(Build.SourcesDirectory):/workspace \ -w /workspace \ --network bridge \ - alpine:latest \ + alpine:3.22 \ tail -f /dev/null displayName: 'Create Alpine x86_64 container' @@ -1637,12 +1639,14 @@ jobs: - script: | # Create a Docker container for testing on ARM64 + # TODO(AB#40901): Temporary pin to 3.22 due to msodbcsql ARM64 package arch mismatch + # Revert to alpine:latest once ODBC team releases fixed ARM64 package docker run -d --name test-container-alpine-arm64 \ --platform linux/arm64 \ -v $(Build.SourcesDirectory):/workspace \ -w /workspace \ --network bridge \ - alpine:latest \ + alpine:3.22 \ tail -f /dev/null displayName: 'Create Alpine ARM64 container'