Skip to content

Commit d81aba2

Browse files
committed
FixWheelReleaseWithBuildx: Build release without buildkit
The whole point of the release build is to sequentially do the release then verify that it can be installed. With buildkit, these stages don't happen in a linear order. Signed-off-by: Gabe Goodhart <ghart@us.ibm.com>
1 parent 62eaee6 commit d81aba2

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

ci/release.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ cd $(dirname ${BASH_SOURCE[0]})/..
66
# Get the tag for this release
77
tag=$(echo $REF | cut -d'/' -f3-)
88

9+
# We explicitly don't want to run with buildkit so that the docker builds happen
10+
# in a linear fashion since our `release_test` stages intentionally don't
11+
# inherit from the stages where the publication happens.
12+
export DOCKER_BUILDKIT=0
13+
914
# Build the docker phase that will release and then test it
1015
docker build . \
1116
--target=release_test \

0 commit comments

Comments
 (0)