Skip to content
Merged
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: 6 additions & 2 deletions eng/pipelines/pr-validation-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1395,12 +1395,14 @@
- 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'
Expand Down Expand Up @@ -1637,12 +1639,14 @@
- 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'
Expand Down
Loading