Skip to content

Commit 1377a39

Browse files
committed
OSX build fixes p1
1 parent e82bb98 commit 1377a39

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ jobs:
88
build:
99
runs-on: ${{ matrix.os }}
1010
strategy:
11+
fail-fast: false
1112
matrix:
1213
os: [ubuntu-22.04, macos-latest, windows-latest]
1314
include:
@@ -18,7 +19,7 @@ jobs:
1819
artifact_name: unobtanium-linux
1920
- os: macos-latest
2021
host: x86_64-apple-darwin
21-
packages: autoconf automake libtool boost miniupnpc openssl pkg-config protobuf qt5
22+
packages: autoconf automake libtool boost miniupnpc openssl pkg-config protobuf berkeley-db qt5
2223
goal: install
2324
artifact_name: unobtanium-macos
2425
- os: windows-latest
@@ -42,9 +43,8 @@ jobs:
4243
if: matrix.os == 'macos-latest'
4344
run: |
4445
brew install ${{ matrix.packages }}
45-
brew install https://raw.githubusercontent.com/homebrew/homebrew-core/master/Formula/berkeley-db@4.rb --without-java
46-
export LDFLAGS="-L/usr/local/opt/berkeley-db@4/lib"
47-
export CPPFLAGS="-I/usr/local/opt/berkeley-db@4/include"
46+
export LDFLAGS="-L$(brew --prefix berkeley-db)/lib"
47+
export CPPFLAGS="-I$(brew --prefix berkeley-db)/include"
4848
4949
- name: Install dependencies (Windows)
5050
if: matrix.os == 'windows-latest'

0 commit comments

Comments
 (0)