File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments