We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5944bd5 commit 72b1a24Copy full SHA for 72b1a24
1 file changed
.github/workflows/ci.yml
@@ -33,9 +33,16 @@ jobs:
33
run: |
34
apt --quiet update --yes
35
apt --quiet install --yes cmake git
36
+ - name: install vcpkg
37
+ run: |
38
+ git clone https://github.com/microsoft/vcpkg.git vcpkg-installation
39
+ (cd vcpkg-installation; ./bootstrap-vcpkg.sh)
40
+ - name: set VCPKG_ROOT
41
+ uses: myci-actions/export-env-var@main
42
+ with: {name: VCPKG_ROOT, value: "$(pwd)/vcpkg-installation"}
43
- name: git clone
44
uses: myci-actions/checkout@main
- - name: generate cmake
45
+ - name: generate cmake build files
46
47
mkdir out
48
cd out
0 commit comments