From 432f0eea884e49549f1476ee1b948ab6d38156c5 Mon Sep 17 00:00:00 2001 From: Chris Buckland Date: Mon, 2 Sep 2024 16:12:38 +0100 Subject: [PATCH] Cleanup in ci bash --- .github/workflows/testnode.bash | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/testnode.bash b/.github/workflows/testnode.bash index b03557a..33c6b55 100755 --- a/.github/workflows/testnode.bash +++ b/.github/workflows/testnode.bash @@ -5,30 +5,8 @@ # Start the test node and get PID, to terminate it once send-l2 is done. cd ${GITHUB_WORKSPACE} -# while [[ $# -gt 0 ]]; do -# case $1 in -# --pos) -# pos=true -# shift -# ;; -# *) -# echo "Unknown option $1" -# exit 1 -# ;; -# esac -# done - - ./test-node.bash "$@" -# # TODO once develop is merged into nitro-contract's master, remove the NITRO_CONTRACTS_BRANCH env var -# if [ "$pos" = true ]; then -# echo "Running with --pos" -# ./test-node.bash --init-force --l3node --no-simple --detach --pos -# else -# ./test-node.bash --init-force --l3node --no-simple --detach -# fi - if [ $? -ne 0 ]; then echo "test-node.bash failed" docker compose logs --tail=1000