File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -30,18 +30,26 @@ jobs:
30
30
-D OPENSSL_ROOT_DIR=/usr/local/opt/openssl/
31
31
SSL_INSTALL : openssl
32
32
33
+ - build : dependencies_SYSTEM
34
+ DEPENDENCIES_INSTALL : abseil cityhash lz4
35
+ DEPENDENCIES_CMAKE_OPTIONS : >-
36
+ -D WITH_SYSTEM_LZ4=ON
37
+ -D WITH_SYSTEM_ABSEIL=ON
38
+ -D WITH_SYSTEM_CITYHASH=ON
39
+
33
40
steps :
34
41
- uses : actions/checkout@v2
35
42
36
43
- name : Install dependencies
37
- run : brew install cmake ${{matrix.SSL_INSTALL}}
44
+ run : brew install cmake ${{matrix.SSL_INSTALL}} ${{matrix.DEPENDENCIES_INSTALL}}
38
45
39
46
- name : Configure CMake
40
47
run : |
41
48
cmake \
42
49
-D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} \
43
50
-D BUILD_TESTS=ON \
44
51
${{matrix.SSL_CMAKE_OPTION}} \
52
+ ${{matrix.DEPENDENCIES_CMAKE_OPTIONS}} \
45
53
-S ${{github.workspace}} \
46
54
-B ${{github.workspace}}/build
47
55
You can’t perform that action at this time.
0 commit comments