forked from PIVX-Project/PIVX
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,10 +116,10 @@ jobs: | |
- name: macOS-latest | ||
os: macos-14 | ||
python-version: '3.10' | ||
packages: autoconf automake berkeley-db@4 libtool [email protected] miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium | ||
packages: llvm@14 autoconf automake berkeley-db@4 libtool [email protected] miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium | ||
boost_root: true | ||
cc: $(brew --prefix llvm@15)/bin/clang | ||
cxx: $(brew --prefix llvm@15)/bin/clang++ | ||
cc: $(brew --prefix llvm@14)/bin/clang | ||
cxx: $(brew --prefix llvm@14)/bin/clang++ | ||
|
||
steps: | ||
- name: Get Source | ||
|
@@ -147,9 +147,10 @@ jobs: | |
restore-keys: ${{ runner.os }}-cmake-${{ matrix.config.name }}-ccache | ||
|
||
- name: Set Xcode Version | ||
if: matrix.config.os == 'macos-14' | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: '14.3.1' | ||
xcode-version: '15.0.1' | ||
|
||
- name: Configure CMake Wallet | ||
run: | | ||
|
@@ -237,12 +238,12 @@ jobs: | |
id: macOS-nodepends-latest | ||
os: macos-14 | ||
python-version: '3.10' | ||
packages: llvm@13 autoconf automake ccache berkeley-db@4 libtool [email protected] miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium librsvg | ||
packages: autoconf automake ccache berkeley-db@4 libtool [email protected] miniupnpc libnatpmp pkg-config qt@5 zmq libevent qrencode gmp libsodium librsvg | ||
unit_tests: true | ||
functional_tests: true | ||
goal: deploy | ||
cc: $(brew --prefix llvm@13)/bin/clang | ||
cxx: $(brew --prefix llvm@13)/bin/clang++ | ||
cc: clang | ||
cxx: clang++ | ||
BITCOIN_CONFIG: "--enable-zmq --enable-gui --enable-reduce-exports --enable-werror --enable-debug --with-boost=/opt/homebrew/opt/[email protected]" | ||
|
||
steps: | ||
|
@@ -272,9 +273,10 @@ jobs: | |
restore-keys: ${{ runner.os }}-${{ matrix.config.id }}-native-ccache | ||
|
||
- name: Set Xcode Version | ||
if: matrix.config.os == 'macos-14' | ||
uses: maxim-lobanov/setup-xcode@v1 | ||
with: | ||
xcode-version: '14.3.1' | ||
xcode-version: '15.0.1' | ||
|
||
- name: Configure Native Wallet | ||
run: | | ||
|