Skip to content

Commit 20eadec

Browse files
author
Levent KARAGÖL
committed
Github Action .yml files have been updated
1 parent 9f8e469 commit 20eadec

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/macos.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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: |
@@ -36,4 +39,4 @@ jobs:
3639
- name: Run tests
3740
run: |
3841
cd ~/libcpp-http-client/build
39-
./test/test
42+
./test/test

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)