File tree Expand file tree Collapse file tree
templates/github/.github/workflows/scripts Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33{% include ' header.j2' %}
44
5- set -euo pipefail
5+ # This script prepares the scenario definition in the .ci/ansible/vars/main.yaml file.
6+ #
7+ # It requires the following environment:
8+ # TEST - The name of the scenario to prepare.
9+ #
10+ # It may also dump the {lower,upper}bounds_constraints.txt for the specific scenario.
11+
12+ set -eu -o pipefail
613
714# make sure this script runs at the repo root
815cd " $( dirname " $( realpath -e " $0 " ) " ) " /../../..
Original file line number Diff line number Diff line change 44
55# This script dumps some files to help understand the setup of the test scenario.
66
7+ set -eu -o pipefail
8+
79# make sure this script runs at the repo root
810cd " $( dirname " $( realpath -e " $0 " ) " ) " /../../..
911
10- set -euv
11-
1212source .github/workflows/scripts/utils.sh
1313
1414if [[ -f .github/workflows/scripts/pre_before_script.sh ]]; then
@@ -31,6 +31,7 @@ tail -v -n +1 ../*/*constraints.txt || true
3131
3232echo
3333echo " # pip list outside the container"
34+ pip list
3435
3536echo
3637echo " # pip list inside the container"
You can’t perform that action at this time.
0 commit comments