Skip to content

Commit 39ae319

Browse files
author
Levent KARAGÖL
committed
Github Action .yml files have been updated
1 parent 4d27fc0 commit 39ae319

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/linux-aarch64.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727
docker exec mycontainer bash -c "apt-get update && apt-get install -y build-essential g++ gcc make cmake pkg-config git wget curl zip unzip tar ninja-build"
2828
docker exec mycontainer bash -c "git clone https://github.com/microsoft/vcpkg.git /opt/vcpkg && /opt/vcpkg/bootstrap-vcpkg.sh && ln -s /opt/vcpkg/vcpkg /usr/local/bin/vcpkg"
2929
30+
# Set environment variable required by vcpkg on ARM platforms
31+
docker exec mycontainer bash -c "export VCPKG_FORCE_SYSTEM_BINARIES=1"
32+
3033
# Copy project files into the container
3134
docker cp . mycontainer:/root/libcpp-http-client
3235

.github/workflows/macos.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ jobs:
1313
runs-on: macos-latest
1414
steps:
1515
- uses: actions/checkout@v3
16+
- name: Install Xcode CLI tools
17+
run: |
18+
xcode-select --install || true
1619
- name: Install prerequisites
1720
run: |
1821
brew update

0 commit comments

Comments
 (0)