You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
378 B
16 lines
378 B
#!/bin/bash
|
|
# P06 Green Gate Wrapper
|
|
# Links scripts/green_gate.sh into the gate framework
|
|
set -euo pipefail
|
|
|
|
GATE_ID="p06"
|
|
source scripts/gates/common.sh "$GATE_ID" "$@"
|
|
|
|
echo "Executing scripts/green_gate.sh..."
|
|
export BREEZE_MOCK=1
|
|
export PYTHONPATH="$PWD${PYTHONPATH:+:$PYTHONPATH}"
|
|
export OUT_DIR="$ARTIFACT_DIR"
|
|
bash scripts/green_gate.sh || finish_gate $?
|
|
|
|
finish_gate 0
|