File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,13 @@ jobs:
1717 run : |
1818 brew update
1919 brew install cmake pkg-config git wget curl
20- - name : Install vcpkg
20+ - name : Handle existing vcpkg installation
2121 run : |
22- brew list vcpkg && brew unlink vcpkg && brew uninstall vcpkg || true
22+ if brew list vcpkg; then
23+ brew unlink vcpkg && brew uninstall vcpkg
24+ fi
2325 brew install vcpkg
26+ brew link --overwrite vcpkg
2427 vcpkg integrate install
2528 - name : Clone project repository
2629 run : |
3639 - name : Run tests
3740 run : |
3841 cd ~/libcpp-http-client/build
39- ./test/test
42+ ./test/test
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ Modern non-blocking HTTP Client library for C++ (17+)
33
44[ ![ linux-x86_64] ( https://github.com/lk-libs/libcpp-http-client/actions/workflows/linux-x86_64.yml/badge.svg )] ( https://github.com/lk-libs/libcpp-http-client/actions/workflows/linux-x86_64.yml )
55[ ![ linux-aarch64] ( https://github.com/lk-libs/libcpp-http-client/actions/workflows/linux-aarch64.yml/badge.svg )] ( https://github.com/lk-libs/libcpp-http-client/actions/workflows/linux-aarch64.yml )
6+ [ ![ macos] ( https://github.com/lk-libs/libcpp-http-client/actions/workflows/macos.yml/badge.svg )] ( https://github.com/lk-libs/libcpp-http-client/actions/workflows/macos.yml )
You can’t perform that action at this time.
0 commit comments