We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e53aac commit c28263eCopy full SHA for c28263e
1 file changed
.github/workflows/build.yml
@@ -32,7 +32,11 @@ jobs:
32
run: sudo apt update
33
34
- name: Install dependencies
35
- run: sudo apt install -y libsqlite3-dev ffmpeg cmake clang
+ 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
40
41
- name: Pretending hdr10plus_tool is installed
42
run: sudo touch /usr/bin/hdr10plus_tool && sudo chmod +x /usr/bin/hdr10plus_tool
0 commit comments