We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7454cbb commit bdb05c9Copy full SHA for bdb05c9
.github/workflows/scripts/unix_test.sh
@@ -11,6 +11,7 @@ export TI_IN_DOCKER=$(check_in_docker)
11
export LD_LIBRARY_PATH=$PWD/build/:$LD_LIBRARY_PATH
12
export TI_OFFLINE_CACHE_FILE_PATH=$PWD/.cache/taichi
13
14
+
15
if [[ "$TI_IN_DOCKER" == "true" ]]; then
16
source $HOME/miniconda/etc/profile.d/conda.sh
17
conda activate "$PY"
@@ -61,6 +62,10 @@ fi
61
62
63
64
if [ -z "$TI_SKIP_CPP_TESTS" ]; then
65
+ if [[ "$OSTYPE" == "linux-"* -a "$TI_IN_DOCKER" == "true" ]]; then
66
+ # Remove mesa EGL driver, which interferes with the propritary NVIDIA drivers
67
+ rm -f /usr/lib/x86_64-linux-gnu/libEGL_mesa*
68
+ fi
69
python3 tests/run_tests.py --cpp
70
fi
71
0 commit comments