Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Regenerate artifacts with macos-13. #625

Merged
merged 1 commit into from
May 21, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 17 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
packager: "apt"
packages: "lcov"

- os: macos-latest
- os: macos-13
cxx: "clang++"
link: "dynamic"
optimization: "size"
Expand All @@ -82,12 +82,12 @@ jobs:
boost: "--build-boost"
icu: "--build-icu --with-icu"
cc: "clang"
flags: "-Os -fPIE"
flags: "-Os -fPIE -DBOOST_NO_CXX98_FUNCTION_BASE"
options: "--enable-isystem"
packager: "brew"
packages: ""

- os: macos-latest
- os: macos-13
cxx: "clang++"
link: "static"
optimization: "size"
Expand All @@ -96,7 +96,7 @@ jobs:
boost: "--build-boost"
icu: "--build-icu --with-icu"
cc: "clang"
flags: "-Os -fvisibility=hidden -fPIE"
flags: "-Os -fvisibility=hidden -fPIE -DBOOST_NO_CXX98_FUNCTION_BASE"
options: "--enable-isystem"
packager: "brew"
packages: ""
Expand Down Expand Up @@ -220,11 +220,12 @@ jobs:


- name: Failure display otool output
if: ${{ failure() && (matrix.os == 'macos-latest') }}
if: ${{ failure() && startsWith(matrix.os, 'macos') }}
run: |
otool -L ${{ github.workspace }}/test/.libs/libbitcoin-node-test

- name: Failure display DYLD_PRINT_LIBRARIES
if: ${{ failure() && (matrix.os == 'macos-latest') }}
if: ${{ failure() && startsWith(matrix.os, 'macos') }}
run: |
DYLD_PRINT_LIBRARIES=1 ${{ github.workspace }}/test/.libs/libbitcoin-node-test

Expand Down Expand Up @@ -297,7 +298,7 @@ jobs:
packager: "apt"
packages: ""

- os: macos-latest
- os: macos-13
cxx: "clang++"
link: "dynamic"
optimization: "size"
Expand All @@ -306,12 +307,12 @@ jobs:
boost: "--build-boost"
icu: "--build-icu --with-icu"
cc: "clang"
flags: "-Os -fPIE"
flags: "-Os -fPIE -DBOOST_NO_CXX98_FUNCTION_BASE"
options: ""
packager: "brew"
packages: ""

- os: macos-latest
- os: macos-13
cxx: "clang++"
link: "static"
optimization: "size"
Expand All @@ -320,7 +321,7 @@ jobs:
boost: "--build-boost"
icu: "--build-icu --with-icu"
cc: "clang"
flags: "-Os -fvisibility=hidden -fPIE"
flags: "-Os -fvisibility=hidden -fPIE -DBOOST_NO_CXX98_FUNCTION_BASE"
options: ""
packager: "brew"
packages: ""
Expand Down Expand Up @@ -447,11 +448,12 @@ jobs:


- name: Failure display otool output
if: ${{ failure() && (matrix.os == 'macos-latest') }}
if: ${{ failure() && startsWith(matrix.os, 'macos') }}
run: |
otool -L ${{ github.workspace }}/test/.libs/libbitcoin-node-test

- name: Failure display DYLD_PRINT_LIBRARIES
if: ${{ failure() && (matrix.os == 'macos-latest') }}
if: ${{ failure() && startsWith(matrix.os, 'macos') }}
run: |
DYLD_PRINT_LIBRARIES=1 ${{ github.workspace }}/test/.libs/libbitcoin-node-test

Expand Down Expand Up @@ -646,11 +648,12 @@ jobs:


- name: Failure display otool output
if: ${{ failure() && (matrix.os == 'macos-latest') }}
if: ${{ failure() && startsWith(matrix.os, 'macos') }}
run: |
otool -L ${{ github.workspace }}/test/.libs/libbitcoin-node-test

- name: Failure display DYLD_PRINT_LIBRARIES
if: ${{ failure() && (matrix.os == 'macos-latest') }}
if: ${{ failure() && startsWith(matrix.os, 'macos') }}
run: |
DYLD_PRINT_LIBRARIES=1 ${{ github.workspace }}/test/.libs/libbitcoin-node-test

Expand Down
Loading