Skip to content

Commit 7046854

Browse files
committed
Install correct libtbb
1 parent 699abb2 commit 7046854

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/llama_cpp_plugin_build_and_test.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ jobs:
1818
with:
1919
cmake-version: '3.24.x'
2020

21+
- name: Install libtbb2
22+
run: |
23+
sudo apt-get update && sudo apt-get install -y libtbb2 libtbb2-dev
24+
2125
- name: Checkout openvino_contrib
2226
uses: actions/checkout@v3
2327
with:
@@ -68,8 +72,10 @@ jobs:
6872
mkdir -p ${{ github.workspace }}/test_data
6973
python3 llama.cpp/convert-hf-to-gguf.py hf_gpt2 --outtype f32 --outfile ${{ github.workspace }}/test_data/gpt2.gguf
7074
71-
- name: Install TBB
72-
run: sudo apt install -y libtbb2
75+
- name: Install libtbb2
76+
run: |
77+
sudo apt-get update && sudo apt-get install -y libtbb2 libtbb2-dev
78+
7379
- name: Run E2E tests
7480
run: |
7581
chmod +x ${{ github.workspace }}/binaries/llama_cpp_e2e_tests

0 commit comments

Comments
 (0)