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 1d2525f commit e0355c6
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"
cc: "clang-16"
flags: "-Og -fPIE"
Expand All @@ -42,6 +43,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: "--build-icu --with-icu"
llvm: ""
secp256k1: "--build-secp256k1"
cc: "clang-16"
flags: "-Os -fPIE"
Expand All @@ -58,6 +60,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
cc: "gcc-12"
flags: "-Os -fPIE"
Expand All @@ -74,6 +77,7 @@ jobs:
detectcpuflags: "detect"
boost: "--build-boost"
icu: "--build-icu --with-icu"
llvm: ""
secp256k1: "--build-secp256k1"
cc: "gcc-12"
flags: "-Os -g --coverage -fPIE"
Expand All @@ -90,12 +94,13 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: "llvm@16"
secp256k1: "--build-secp256k1"
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 @@ -106,12 +111,13 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: "llvm@16"
secp256k1: "--build-secp256k1"
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 @@ -141,6 +147,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 @@ -211,9 +220,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/*" "${{ github.workspace }}/src/wallet/addresses/qrencode/*" --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/*" "${{ github.workspace }}/src/wallet/addresses/qrencode/*" --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 @@ -288,6 +297,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
cc: "clang-16"
flags: "-Og -fPIE"
Expand All @@ -304,6 +314,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: "--build-icu --with-icu"
llvm: ""
secp256k1: "--build-secp256k1"
cc: "clang-16"
flags: "-Os -fPIE"
Expand All @@ -320,6 +331,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
cc: "gcc-12"
flags: "-Os -fPIE"
Expand All @@ -336,6 +348,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: "--build-icu --with-icu"
llvm: ""
secp256k1: "--build-secp256k1"
cc: "gcc-12"
flags: "-Os -fPIE"
Expand All @@ -352,12 +365,13 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: "llvm@16"
secp256k1: "--build-secp256k1"
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 @@ -368,12 +382,13 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: "llvm@16"
secp256k1: "--build-secp256k1"
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 @@ -403,6 +418,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 @@ -476,9 +494,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/*" "${{ github.workspace }}/src/wallet/addresses/qrencode/*" --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/*" "${{ github.workspace }}/src/wallet/addresses/qrencode/*" --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 @@ -564,6 +582,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
cc: "clang-16"
flags: "-Og -fPIE"
Expand All @@ -581,6 +600,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: "--build-icu --with-icu"
llvm: ""
secp256k1: "--build-secp256k1"
cc: "clang-16"
flags: "-Os -fPIE"
Expand All @@ -598,6 +618,7 @@ jobs:
detectcpuflags: "ignore"
boost: "--build-boost"
icu: ""
llvm: ""
secp256k1: "--build-secp256k1"
cc: "gcc-12"
flags: "-Os -fPIE"
Expand Down Expand Up @@ -633,6 +654,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 @@ -707,9 +731,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/*" "${{ github.workspace }}/src/wallet/addresses/qrencode/*" --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/*" "${{ github.workspace }}/src/wallet/addresses/qrencode/*" --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 e0355c6

Please sign in to comment.