Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
- uses: docker/setup-qemu-action@v2
with:
platforms: arm64,ppc64le
- name: Test Docker Image
- name: Build and Test Docker Image
run: core/docker/build.sh
- name: Remove Trino from local Maven repo to avoid caching it
# Avoid caching artifacts built in this job, cache should only include dependencies
Expand Down
2 changes: 1 addition & 1 deletion core/docker/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ TAG_PREFIX="trino:${TRINO_VERSION}"

for arch in "${ARCHITECTURES[@]}"; do
echo "🫙 Building the image for $arch"
docker build \
"${SOURCE_DIR}/.github/bin/retry" docker build \
"${WORK_DIR}" \
--pull \
--platform "linux/$arch" \
Expand Down