Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
check gcc13 before use
Browse files Browse the repository at this point in the history
  • Loading branch information
luoyu-intel committed Jun 14, 2024
1 parent 87d2111 commit 330340e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/unit-test-bestla.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,10 @@ jobs:
- name: Run UT
run: |
source /opt/rh/gcc-toolset-13/enable
if [ -d "/opt/rh/gcc-toolset-13" ]; then
source /opt/rh/gcc-toolset-13/enable;
fi
#conda activate unit-test-bestla || source activate unit-test-bestla
#export LD_LIBRARY_PATH=${HOME}/miniconda3/envs/${conda_env}/lib/:$LD_LIBRARY_PATH
cd ${{ github.workspace }}/bestla && mkdir build && cd build && cmake .. -DBTLA_UT_ALL=ON && make -j
Expand Down

0 comments on commit 330340e

Please sign in to comment.