Skip to content

Commit

Permalink
Merge pull request #1297 from thewtex/wasi-push
Browse files Browse the repository at this point in the history
wasi push
  • Loading branch information
thewtex authored Jan 2, 2025
2 parents ecb3b5b + 64aed84 commit 901e518
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const defaultImageTag = '20241230-6a87601b'
const defaultImageTag = '20241231-76748372'
export default defaultImageTag
7 changes: 6 additions & 1 deletion src/docker/itk-wasm/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -150,12 +150,17 @@ if $create_manifest; then
quay.io/itkwasm/wasi:${TAG} \
quay.io/itkwasm/wasi:latest-debug \
quay.io/itkwasm/wasi:${TAG}-debug; do
if [ "$(buildah images -q $list 2>/dev/null)" != "" ]; then
if ! $(buildah manifest exists $list); then
buildah rmi $list
fi
fi
if $(buildah manifest exists $list); then
buildah manifest rm $list
fi
buildah manifest create $list
buildah manifest add ${list} ${list}-amd64
buildah pull $list-arm64
buildah manifest add ${list} docker://${list}-arm64
buildah manifest add ${list} ${list}-arm64
done
fi

0 comments on commit 901e518

Please sign in to comment.