Skip to content

Commit

Permalink
#97: try fix python build issue in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tlamonthezie committed Sep 12, 2024
1 parent b842a84 commit bbfdfeb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/python_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PARENT_DIR="$(dirname "$CURRENT_DIR")"

VT_TV_SRC_DIR=${VT_TV_SRC_DIR:-$PARENT_DIR}

for env in $(conda env list | grep py | cut -d" " -f1); do if == "#" ; then continue; fi;
for env in $(conda env list | grep 'py*' | perl -lane 'print $F[-1]' | xargs ls -lrt1d | perl -lane 'print $F[-1]' | sed -r 's/^.*\/(.*)$/\1/'); do
# Clear vizualization output directory
rm -rf $VT_TV_OUTPUT_DIR/python_tests/*

Expand Down
2 changes: 1 addition & 1 deletion ci/python_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ chmod +x ./ci/python_test.sh
# Create vizualization output directory (required).
mkdir -p $VT_TV_OUTPUT_DIR/python_tests

for env in $(conda env list | grep py | cut -d" " -f1); do if == "#" ; then continue; fi;
for env in $(conda env list | grep 'py*' | perl -lane 'print $F[-1]' | xargs ls -lrt1d | perl -lane 'print $F[-1]' | sed -r 's/^.*\/(.*)$/\1/'); do
# Clear vizualization output directory
rm -rf $VT_TV_OUTPUT_DIR/python_tests/*

Expand Down

0 comments on commit bbfdfeb

Please sign in to comment.