Install boost beast

This commit is contained in:
badaix 2025-01-23 22:30:40 +01:00
parent 355c75458a
commit bd424a3992
2 changed files with 3 additions and 3 deletions

View file

@ -75,7 +75,7 @@ jobs:
mkdir -p build/doxygen mkdir -p build/doxygen
doxygen 2>&1 | tee build/doxygen.log doxygen 2>&1 | tee build/doxygen.log
WARNINGS=$(cat build/doxygen.log | sort | uniq | grep -e ": warning: " | wc -l) 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" echo "Doxygen finished with $WARNINGS warnings, max allowed: $MAX_ALLOWED"
if [ "$WARNINGS" -gt "$MAX_ALLOWED" ]; then exit $WARNINGS; else exit 0; fi; if [ "$WARNINGS" -gt "$MAX_ALLOWED" ]; then exit $WARNINGS; else exit 0; fi;
@ -408,7 +408,7 @@ jobs:
cd c:\vcpkg cd c:\vcpkg
git pull git pull
vcpkg.exe update 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 - name: configure
run: | run: |
echo vcpkg installation root: ${env:VCPKG_INSTALLATION_ROOT} echo vcpkg installation root: ${env:VCPKG_INSTALLATION_ROOT}

View file

@ -169,7 +169,7 @@ jobs:
key: ${{ runner.os }}-dependencies key: ${{ runner.os }}-dependencies
- name: Get dependenciesenv - name: Get dependenciesenv
if: steps.cache-dependencies.outputs.cache-hit != 'true' 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 - name: configure
run: | run: |
echo vcpkg installation root: $env:VCPKG_INSTALLATION_ROOT echo vcpkg installation root: $env:VCPKG_INSTALLATION_ROOT