Skip to content

Commit c009f71

Browse files
committed
Change linux binary action
1 parent cb11e7e commit c009f71

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/validate-linux-binaries.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ jobs:
5656
export GPU_ARCH_TYPE="${{ matrix.gpu_arch_type }}"
5757
export INSTALLATION="${{ matrix.installation }}"
5858
export CUDA_VER="${{ matrix.desired_cuda }}"
59+
export DESIRED_PYTHON="${{ matrix.python_version }}""
60+
export DESIRED_CUDA="${{ matrix.desired_cuda }}"
61+
export DESIRED_DEVTOOLSET="${{ matrix.dev_toolset }}""
62+
export PACKAGE_TYPE="${{ matrix.package_type }}""
63+
export TARGET_OS="linux"
5964
6065
if [[ ${{ matrix.package_type }} == "libtorch" ]]; then
6166
curl ${{ matrix.installation }} -o libtorch.zip
@@ -65,9 +70,10 @@ jobs:
6570
conda activate ${ENV_NAME}
6671
eval $INSTALLATION
6772
export CONDA_LIBRARY_PATH="$(dirname $(which python))/../lib"
68-
strings $CONDA_LIBRARY_PATH/libstdc++.so.6 | grep CXXABI_1.3.9
6973
export LD_LIBRARY_PATH=$CONDA_LIBRARY_PATH:$LD_LIBRARY_PATH
7074
7175
python --version
7276
python ./test/smoke_test/smoke_test.py
77+
78+
${PWD}/check_binary.sh
7379
fi

0 commit comments

Comments
 (0)