File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ jobs:
197
197
198
198
package-macos :
199
199
name : Build macOS libraries
200
- runs-on : macos-12
200
+ runs-on : macos-14
201
201
timeout-minutes : 500
202
202
203
203
strategy :
Original file line number Diff line number Diff line change 47
47
timeout-minutes : 60
48
48
strategy :
49
49
matrix :
50
- # TODO: support build on macos-12
50
+ # TODO: support build on macos-14
51
51
os : [ubuntu-20.04]
52
52
53
53
steps :
@@ -314,7 +314,7 @@ jobs:
314
314
timeout-minutes : 120
315
315
name : Build CPP Client on macOS
316
316
needs : formatting-check
317
- runs-on : macos-12
317
+ runs-on : macos-14
318
318
steps :
319
319
- name : checkout
320
320
uses : actions/checkout@v3
@@ -340,7 +340,7 @@ jobs:
340
340
cpp-build-macos-static :
341
341
timeout-minutes : 120
342
342
name : Build CPP Client on macOS with static dependencies
343
- runs-on : macos-12
343
+ runs-on : macos-14
344
344
needs : unit-tests
345
345
steps :
346
346
- name : checkout
Original file line number Diff line number Diff line change 21
21
set -ex
22
22
cd ` dirname $0 `
23
23
24
- pip3 install pyyaml
24
+ python3 -m venv venv
25
+ source venv/bin/activate
26
+ python3 -m pip install pyyaml
25
27
26
28
MACOSX_DEPLOYMENT_TARGET=10.15
27
29
if [[ -z ${ARCH} ]]; then
You can’t perform that action at this time.
0 commit comments