Skip to content

Commit c28263e

Browse files
committed
Install libc++
1 parent 0e53aac commit c28263e

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@ jobs:
3232
run: sudo apt update
3333

3434
- name: Install dependencies
35-
run: sudo apt install -y libsqlite3-dev ffmpeg cmake clang
35+
run: |
36+
sudo apt install -y libsqlite3-dev ffmpeg cmake clang
37+
if [[ "${{ matrix.compiler }}" == "clang" && "${{ matrix.stdlib }}" == "libc++" ]]; then
38+
sudo apt install -y libc++-dev
39+
fi
3640
3741
- name: Pretending hdr10plus_tool is installed
3842
run: sudo touch /usr/bin/hdr10plus_tool && sudo chmod +x /usr/bin/hdr10plus_tool

0 commit comments

Comments
 (0)