mirror of
https://github.com/badaix/snapcast.git
synced 2025-04-28 09:47:09 +02:00
Install boost beast
This commit is contained in:
parent
355c75458a
commit
bd424a3992
2 changed files with 3 additions and 3 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -75,7 +75,7 @@ jobs:
|
|||
mkdir -p build/doxygen
|
||||
doxygen 2>&1 | tee build/doxygen.log
|
||||
WARNINGS=$(cat build/doxygen.log | sort | uniq | grep -e ": warning: " | wc -l)
|
||||
MAX_ALLOWED=768
|
||||
MAX_ALLOWED=724
|
||||
echo "Doxygen finished with $WARNINGS warnings, max allowed: $MAX_ALLOWED"
|
||||
if [ "$WARNINGS" -gt "$MAX_ALLOWED" ]; then exit $WARNINGS; else exit 0; fi;
|
||||
|
||||
|
@ -408,7 +408,7 @@ jobs:
|
|||
cd c:\vcpkg
|
||||
git pull
|
||||
vcpkg.exe update
|
||||
vcpkg.exe --triplet x64-windows install libflac libvorbis soxr opus boost-asio catch2
|
||||
vcpkg.exe --triplet x64-windows install libflac libvorbis soxr opus boost-asio boost-beast catch2
|
||||
- name: configure
|
||||
run: |
|
||||
echo vcpkg installation root: ${env:VCPKG_INSTALLATION_ROOT}
|
||||
|
|
2
.github/workflows/package.yml
vendored
2
.github/workflows/package.yml
vendored
|
@ -169,7 +169,7 @@ jobs:
|
|||
key: ${{ runner.os }}-dependencies
|
||||
- name: Get dependenciesenv
|
||||
if: steps.cache-dependencies.outputs.cache-hit != 'true'
|
||||
run: vcpkg.exe install libflac libvorbis soxr opus boost-asio --triplet x64-windows
|
||||
run: vcpkg.exe install libflac libvorbis soxr opus boost-asio boost-beast --triplet x64-windows
|
||||
- name: configure
|
||||
run: |
|
||||
echo vcpkg installation root: $env:VCPKG_INSTALLATION_ROOT
|
||||
|
|
Loading…
Add table
Reference in a new issue