We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4591a2b commit c1427ecCopy full SHA for c1427ec
.github/workflows/e2e.yaml
@@ -63,6 +63,8 @@ jobs:
63
echo platform is ${PLATFORM}
64
# Build and run the ko binary, which should be runnable.
65
docker run $(go run ./ build ./ --platform=${PLATFORM} --preserve-import-paths) version
66
+ # Build and run the ko binary with the scratch base image, which should be runnable.
67
+ docker run $(KO_DEFAULTBASEIMAGE=scratch go run ./ build ./ --platform=${PLATFORM} --preserve-import-paths) version
68
69
# Build and run the test/ binary, which should log "Hello there" served from KO_DATA_PATH
70
testimg=$(go run ./ build ./test --platform=${PLATFORM} --preserve-import-paths)
0 commit comments