Skip to content

Commit 81b4daa

Browse files
committed
main: HOTFIX - Force DOCKER_BUILDKIT=0 in release
We need the builds to proceed linearly so that the release tests come after the release Signed-off-by: Gabe Goodhart <[email protected]>
1 parent 3fc2691 commit 81b4daa

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ci/release.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ echo "The tag is ${tag}!!"
1111
release_type=$(echo $tag | cut -d'-' -f1)
1212
version=$(echo $tag | cut -d'-' -f2)
1313

14+
# We explicitly don't want to run with buildkit so that the docker builds happen
15+
# in a linear fashion since our `release_test` stages intentionally don't
16+
# inherit from the stages where the publication happens.
17+
export DOCKER_BUILDKIT=0
18+
1419
# Dispatch to the various types of releases
1520
if [ "$release_type" == "py" ]
1621
then

0 commit comments

Comments
 (0)