Skip to content

Commit

Permalink
main: HOTFIX - Force DOCKER_BUILDKIT=0 in release
Browse files Browse the repository at this point in the history
We need the builds to proceed linearly so that the release tests come after
the release

Signed-off-by: Gabe Goodhart <[email protected]>
  • Loading branch information
gabe-l-hart committed Aug 4, 2023
1 parent 3fc2691 commit 81b4daa
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ echo "The tag is ${tag}!!"
release_type=$(echo $tag | cut -d'-' -f1)
version=$(echo $tag | cut -d'-' -f2)

# We explicitly don't want to run with buildkit so that the docker builds happen
# in a linear fashion since our `release_test` stages intentionally don't
# inherit from the stages where the publication happens.
export DOCKER_BUILDKIT=0

# Dispatch to the various types of releases
if [ "$release_type" == "py" ]
then
Expand Down

0 comments on commit 81b4daa

Please sign in to comment.