|
11 | 11 | runs-on: windows-latest |
12 | 12 |
|
13 | 13 | steps: |
14 | | - - name: Export GitHub Actions cache environment variables |
15 | | - uses: actions/github-script@v7 |
16 | | - with: |
17 | | - script: | |
18 | | - core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); |
19 | | - core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); |
20 | | -
|
21 | 14 | - name: Checkout |
22 | 15 | uses: actions/checkout@v4 |
23 | 16 |
|
|
30 | 23 | uses: ilammy/msvc-dev-cmd@v1 |
31 | 24 |
|
32 | 25 | - name: Build |
33 | | - env: |
34 | | - VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" |
35 | 26 | run: | |
36 | 27 | python -m venv .venv |
37 | 28 | .venv\Scripts\Activate.ps1 |
|
50 | 41 | runs-on: macos-latest |
51 | 42 |
|
52 | 43 | steps: |
53 | | - - name: Export GitHub Actions cache environment variables |
54 | | - uses: actions/github-script@v7 |
55 | | - with: |
56 | | - script: | |
57 | | - core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); |
58 | | - core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); |
59 | | -
|
60 | 44 | - name: Checkout |
61 | 45 | uses: actions/checkout@v4 |
62 | 46 |
|
|
72 | 56 |
|
73 | 57 | - name: Build |
74 | 58 | env: |
75 | | - VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" |
76 | 59 | MACOSX_DEPLOYMENT_TARGET: 13.3 |
77 | 60 | ARCHFLAGS: "-arch arm64" |
78 | 61 | run: | |
|
94 | 77 | runs-on: ubuntu-latest |
95 | 78 |
|
96 | 79 | steps: |
97 | | - - name: Export GitHub Actions cache environment variables |
98 | | - uses: actions/github-script@v7 |
99 | | - with: |
100 | | - script: | |
101 | | - core.exportVariable('ACTIONS_CACHE_URL', process.env.ACTIONS_CACHE_URL || ''); |
102 | | - core.exportVariable('ACTIONS_RUNTIME_TOKEN', process.env.ACTIONS_RUNTIME_TOKEN || ''); |
103 | | -
|
104 | 80 | - name: Checkout |
105 | 81 | uses: actions/checkout@v4 |
106 | 82 |
|
|
110 | 86 | python-version-file: pyproject.toml |
111 | 87 |
|
112 | 88 | - name: Build |
113 | | - env: |
114 | | - VCPKG_BINARY_SOURCES: "clear;x-gha,readwrite" |
115 | 89 | run: | |
116 | 90 | python -m venv .venv |
117 | 91 | . .venv/bin/activate |
|
0 commit comments