File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -49,7 +49,8 @@ ARG RELEASE_DRY_RUN
4949COPY ./test /src/test
5050COPY ./ci/run-tests.sh /src/ci/run-tests.sh
5151RUN true && \
52- ([ "$RELEASE_DRY_RUN" != "true" ] && sleep 90 || true) && \
52+ ([ "$RELEASE_DRY_RUN" != "true" ] && sleep 30 || true) && \
53+ pip cache purge && \
5354 pip install alchemy-config==${RELEASE_VERSION} && \
5455 ./ci/run-tests.sh && \
5556 true
Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ cd $(dirname ${BASH_SOURCE[0]})/..
66# Get the tag for this release
77tag=$( 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
1015docker build . \
1116 --target=release_test \
You can’t perform that action at this time.
0 commit comments