Skip to content

Commit 2895721

Browse files
waralexromovr
andauthored
chore(ci): Fix standalone build on macOS (#6181)
Co-authored-by: Dmitry Patsura <[email protected]>
1 parent b5f68bb commit 2895721

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,10 @@ jobs:
646646
OPENSSL_LIB_DIR: 'C:/vcpkg/packages/openssl_x64-windows/lib'
647647
OPENSSL_INCLUDE_DIR: 'C:/vcpkg/packages/openssl_x64-windows/include'
648648
LIBCLANG_PATH: 'C:\Program Files\LLVM\bin'
649+
# Hotfix before https://github.com/actions/runner-images/pull/7125 will be released/rolled on the productions servers
650+
- name: Hotfix for macOS (pkg-config)
651+
if: contains(runner.os, 'macos')
652+
run: brew install pkg-config
649653
- name: Build with Cross
650654
if: ${{ matrix.cross }}
651655
run: |

.github/workflows/rust-cubestore.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,10 @@ jobs:
188188
OPENSSL_LIB_DIR: 'C:/vcpkg/packages/openssl_x64-windows/lib'
189189
OPENSSL_INCLUDE_DIR: 'C:/vcpkg/packages/openssl_x64-windows/include'
190190
LIBCLANG_PATH: 'C:\Program Files\LLVM\bin'
191+
# Hotfix before https://github.com/actions/runner-images/pull/7125 will be released/rolled on the productions servers
192+
- name: Hotfix for macOS (pkg-config)
193+
if: contains(runner.os, 'macos')
194+
run: brew install pkg-config
191195
- name: Build with Cross
192196
if: ${{ matrix.cross }}
193197
run: |

0 commit comments

Comments
 (0)