File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 77
88set -exu
99
10- # The generic Linux job chooses to use base env, not the one setup by the image
11- eval " $( conda shell.bash hook) "
12- CONDA_ENV=$( conda info --envs | awk ' /base/ {print $2}' )
13- conda activate " ${CONDA_ENV} "
14-
1510CUDA_VERSION=${1:- " 12.6" }
1611
1712echo " === Testing ExecutorTorch CUDA ${CUDA_VERSION} Build ==="
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ REPORT_FILE="$ARTIFACT_DIR/test-report-$FLOW-$SUITE.csv"
1515echo " Running backend test job for suite $SUITE , flow $FLOW ."
1616echo " Saving job artifacts to $ARTIFACT_DIR ."
1717
18+ # The generic Linux job chooses to use base env, not the one setup by the image
19+ eval " $( conda shell.bash hook) "
20+ CONDA_ENV=$( conda env list --json | jq -r " .envs | .[-1]" )
21+ conda activate " ${CONDA_ENV} "
22+
1823export PYTHON_EXECUTABLE=python
1924
2025# CMake options to use, in addition to the defaults.
You can’t perform that action at this time.
0 commit comments