Skip to content

Commit

Permalink
Regenerate artifacts.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmienk committed Jan 28, 2025
1 parent 52e5896 commit 1afbe89
Showing 1 changed file with 37 additions and 13 deletions.
50 changes: 37 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
Expand All @@ -43,6 +44,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: "--build-icu --with-icu"
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
Expand All @@ -60,6 +62,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "gcc-12"
Expand All @@ -77,6 +80,7 @@ jobs:
detectcpuflags: "detect"
boost: "--build-boost"
icu: "--build-icu --with-icu"
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "gcc-12"
Expand All @@ -94,13 +98,14 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: "llvm@16"
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang"
flags: "-Os -fPIE -DBOOST_NO_CXX98_FUNCTION_BASE"
options: "--enable-isystem"
packager: "brew"
packages: "icu4c"
packages: "llvm@16 icu4c"

- os: macos-latest
cxx: "clang++"
Expand All @@ -111,13 +116,14 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: "llvm@16"
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang"
flags: "-Os -fvisibility=hidden -fPIE -DBOOST_NO_CXX98_FUNCTION_BASE"
options: "--enable-isystem"
packager: "brew"
packages: "icu4c"
packages: "llvm@16 icu4c"


runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -147,6 +153,9 @@ jobs:
if: ${{ matrix.packager == 'brew' }}
run: |
brew install autoconf automake libtool ${{ matrix.packages }}
if [[ -n ${{ matrix.llvm }} ]]; then
echo "PATH=/opt/homebrew/opt/${{ matrix.llvm }}/bin:$PATH" >> $GITHUB_ENV
fi
- name: Determine CPU flags
shell: bash
Expand Down Expand Up @@ -218,9 +227,9 @@ jobs:
- name: Coveralls Calculation
if: ${{ matrix.coverage == 'cov' }}
run: |
lcov --directory . --capture --output-file coverage.info
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
lcov --list coverage.info
lcov --directory . --capture --ignore-errors version --output-file coverage.info
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file --ignore-errors version coverage.info
lcov --list --ignore-errors version coverage.info
- name: Coveralls.io Upload
if: ${{ matrix.coverage == 'cov' }}
Expand Down Expand Up @@ -295,6 +304,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
Expand All @@ -312,6 +322,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: "--build-icu --with-icu"
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
Expand All @@ -329,6 +340,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "gcc-12"
Expand All @@ -346,6 +358,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: "--build-icu --with-icu"
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "gcc-12"
Expand All @@ -363,13 +376,14 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: "llvm@16"
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang"
flags: "-Os -fPIE -DBOOST_NO_CXX98_FUNCTION_BASE"
options: ""
packager: "brew"
packages: "icu4c"
packages: "llvm@16 icu4c"

- os: macos-latest
cxx: "clang++"
Expand All @@ -380,13 +394,14 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: "llvm@16"
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang"
flags: "-Os -fvisibility=hidden -fPIE -DBOOST_NO_CXX98_FUNCTION_BASE"
options: ""
packager: "brew"
packages: "icu4c"
packages: "llvm@16 icu4c"


runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -416,6 +431,9 @@ jobs:
if: ${{ matrix.packager == 'brew' }}
run: |
brew install autoconf automake libtool ${{ matrix.packages }}
if [[ -n ${{ matrix.llvm }} ]]; then
echo "PATH=/opt/homebrew/opt/${{ matrix.llvm }}/bin:$PATH" >> $GITHUB_ENV
fi
- name: Determine CPU flags
shell: bash
Expand Down Expand Up @@ -490,9 +508,9 @@ jobs:
- name: Coveralls Calculation
if: ${{ matrix.coverage == 'cov' }}
run: |
lcov --directory . --capture --output-file coverage.info
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
lcov --list coverage.info
lcov --directory . --capture --ignore-errors version --output-file coverage.info
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file --ignore-errors version coverage.info
lcov --list --ignore-errors version coverage.info
- name: Coveralls.io Upload
if: ${{ matrix.coverage == 'cov' }}
Expand Down Expand Up @@ -578,6 +596,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
Expand All @@ -596,6 +615,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: "--build-icu --with-icu"
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "clang-16"
Expand All @@ -614,6 +634,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
zmq: "--build-zmq"
cc: "gcc-12"
Expand Down Expand Up @@ -650,6 +671,9 @@ jobs:
if: ${{ matrix.packager == 'brew' }}
run: |
brew install autoconf automake libtool ${{ matrix.packages }}
if [[ -n ${{ matrix.llvm }} ]]; then
echo "PATH=/opt/homebrew/opt/${{ matrix.llvm }}/bin:$PATH" >> $GITHUB_ENV
fi
- name: Determine CPU flags
shell: bash
Expand Down Expand Up @@ -725,9 +749,9 @@ jobs:
- name: Coveralls Calculation
if: ${{ matrix.coverage == 'cov' }}
run: |
lcov --directory . --capture --output-file coverage.info
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file coverage.info
lcov --list coverage.info
lcov --directory . --capture --ignore-errors version --output-file coverage.info
lcov --remove coverage.info "/usr/*" "${{ env.LIBBITCOIN_SRC_PATH }}prefix/*" "${{ github.workspace }}/examples/*" "${{ github.workspace }}/test/*" --output-file --ignore-errors version coverage.info
lcov --list --ignore-errors version coverage.info
- name: Coveralls.io Upload
if: ${{ matrix.coverage == 'cov' }}
Expand Down

0 comments on commit 1afbe89

Please sign in to comment.