Skip to content

Commit 09cca5a

Browse files
authored
Fix Reverse order (#9069)
* Add --reverse-order option and switch order after each run on citrine * Move reverse ordering to startup script since we run shutdown script twice
1 parent 85f1341 commit 09cca5a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

toolset/continuous/tfb-startup.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ docker build -t techempower/tfb \
2525
--build-arg USER_ID=$(id -u) \
2626
--build-arg GROUP_ID=$(id -g) .
2727

28+
if [ -z "$TFB_RUN_ORDER" ]; then
29+
export TFB_RUN_ORDER="reverse"
30+
else
31+
unset TFB_RUN_ORDER
32+
fi
33+
2834
echo "running tfb docker image"
2935
docker run \
3036
-e USER_ID=$(id -u) \

0 commit comments

Comments
 (0)