You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
buildx/test/bake-sync-output/test.sh

14 lines
206 B
Bash

#!/usr/bin/env bash
set -ex
rm -rf ./out
docker buildx bake --print
docker buildx bake --sync-output
if [[ ! -f ./out/foo || ! -f ./out/bar ]]; then
echo >&2 "error: missing output files"
exit 1
fi