We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2fd70e commit 957fc31Copy full SHA for 957fc31
.github/workflows/build-wheels.yml
@@ -31,6 +31,15 @@ jobs:
31
steps:
32
- uses: actions/checkout@v3
33
34
+ # Special case: cibuildwheel uses docker container for
35
+ # manylinux builds, so cache our vcpkg data on the
36
+ # host filesystem (mounted to /host by default)
37
+ - name: Point VCPKG_BINARY_SOURCES to host filesystem (Linux only)
38
+ if: runner.os == 'Linux'
39
+ run: |
40
+ echo "VCPKG_BINARY_SOURCES=${RUNNER_WORKSPACE}/b/vcpkg_cache" >> $GITHUB_ENV
41
+ shell: bash
42
+
43
- name: run vcpkg
44
uses: lukka/run-vcpkg@main
45
id: run_vcpkg
@@ -47,7 +56,7 @@ jobs:
47
56
- name: List $RUNNER_WORKSPACE before build
48
57
run: find $RUNNER_WORKSPACE
49
58
shell: bash
50
-
59
51
60
- name: Normalize paths (Windows only)
52
61
if: runner.os == 'Windows'
53
62
run: |
0 commit comments