Skip to content

Commit

Permalink
ci: clone/build vcpkg directly
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jan 5, 2025
1 parent 7ff9b45 commit 65c8e08
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion script/install-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,11 @@ npm i -g pnpm
export VCPKG_FORCE_SYSTEM_BINARIES=1

# vcpkg
npx -y setup-cpp --vcpkg "ee2d2a100103e0f3613c60655dcf15be7d5157b8" --timeout 3600000
git clone https://github.com/microsoft/vcpkg.git ~/vcpkg
cd ~/vcpkg || exit 1
git checkout "ee2d2a100103e0f3613c60655dcf15be7d5157b8"
~/vcpkg/bootstrap-vcpkg.sh
cd - || exit 1

# zeromq
cd ~/vcpkg || exit 1
Expand Down

0 comments on commit 65c8e08

Please sign in to comment.