Skip to content

Commit

Permalink
Regenerate artifacts with macos-13.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmienk committed May 18, 2024
1 parent d027fb5 commit d9a1916
Showing 1 changed file with 17 additions and 14 deletions.
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-database-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-database-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-database-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-database-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-database-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-database-test
Expand Down

0 comments on commit d9a1916

Please sign in to comment.