Skip to content

Commit 43e1741

Browse files
committed
Install correct libtbb
1 parent 6283758 commit 43e1741

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/llama_cpp_plugin_build_and_test.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,14 @@ jobs:
6868
mkdir -p ${{ github.workspace }}/test_data
6969
python3 llama.cpp/convert-hf-to-gguf.py hf_gpt2 --outtype f32 --outfile ${{ github.workspace }}/test_data/gpt2.gguf
7070
71-
- name: Install TBB
72-
run: sudo apt install -y libtbb2
71+
- name: Install libtbb2
72+
run: |
73+
wget https://storage.openvinotoolkit.org/dependencies/thirdparty/linux/oneapi-tbb-2021.2.4-lin.tgz
74+
mkdir -p tbb
75+
tar xvzf oneapi-tbb-2021.2.4-lin.tgz
76+
7377
- name: Run E2E tests
7478
run: |
7579
chmod +x ${{ github.workspace }}/binaries/llama_cpp_e2e_tests
76-
export LD_LIBRARY_PATH=${{ github.workspace }}/binaries
80+
export LD_LIBRARY_PATH=${{ github.workspace }}/binaries:${{ github.workspace }}/tbb/lib
7781
${{ github.workspace }}/binaries/llama_cpp_e2e_tests

0 commit comments

Comments
 (0)