@@ -18,22 +18,26 @@ jobs:
18
18
matrix :
19
19
pattern : [0, 1, 2, 3, 4]
20
20
steps :
21
- - uses : actions/checkout@v2
21
+ - name : Checkout
22
+ uses : actions/checkout@v3
23
+ - name : Install Dependencies
24
+ brew update
25
+ brew install --force llvm
22
26
23
27
- name : Cache boost
24
28
id : cache-boost
25
- uses : actions/cache@v2
29
+ uses : actions/cache@v3
26
30
with :
27
31
path : ~/boost-prefix/
28
- key : ${{ runner.os }}-boost-1-76 -0-2022-08-09
32
+ key : ${{ runner.os }}-boost-1-85 -0-2024-05-27
29
33
30
34
- name : Build boost
31
35
if : steps.cache-boost.outputs.cache-hit != 'true'
32
36
run : ./.github/depends/boost.sh -b 64 -t clang -p $HOME/boost-prefix
33
37
34
38
- name : Cache zlib
35
39
id : cache-zlib
36
- uses : actions/cache@v2
40
+ uses : actions/cache@v3
37
41
with :
38
42
path : ~/zlib-prefix/
39
43
key : ${{ runner.os }}-zlib-1-2-13-2022-11-02
85
89
matrix :
86
90
pattern : [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]
87
91
steps :
88
- - uses : actions/checkout@v2
92
+ - uses : actions/checkout@v3
89
93
90
94
- name : Install build dependencies
91
95
shell : bash
@@ -97,18 +101,18 @@ jobs:
97
101
98
102
- name : Cache boost
99
103
id : cache-boost
100
- uses : actions/cache@v2
104
+ uses : actions/cache@v3
101
105
with :
102
106
path : ~/boost-prefix/
103
- key : ${{ runner.os }}-boost-1-76 -0-2021-08-09
107
+ key : ${{ runner.os }}-boost-1-85 -0-2024-05-27
104
108
105
109
- name : Build boost
106
110
if : steps.cache-boost.outputs.cache-hit != 'true'
107
111
run : ./.github/depends/boost.sh -b both -t gcc -p $HOME/boost-prefix
108
112
109
113
- name : Cache zlib
110
114
id : cache-zlib
111
- uses : actions/cache@v2
115
+ uses : actions/cache@v3
112
116
with :
113
117
path : ~/zlib-prefix/
114
118
key : ${{ runner.os }}-zlib-1-2-13-2022-11-02
@@ -198,11 +202,11 @@ jobs:
198
202
cxx : [14, 17, 20]
199
203
pp_flag : ["/Zc:preprocessor-", "/Zc:preprocessor"]
200
204
steps :
201
- - uses : actions/checkout@v2
205
+ - uses : actions/checkout@v3
202
206
203
207
- name : Cache vcpkg dependencies
204
208
id : cache-vcpkg
205
- uses : actions/cache@v2
209
+ uses : actions/cache@v3
206
210
with :
207
211
path : C:/vcpkg/installed/x64-windows
208
212
key : ${{ runner.os }}-vcpkg-2021-08-09
0 commit comments