-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #294 from pmienk/version3
Update copyright date range, regenerate artifacts.
- Loading branch information
Showing
46 changed files
with
216 additions
and
135 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
############################################################################### | ||
# Copyright (c) 2014-2020 libbitcoin-client developers (see COPYING). | ||
# Copyright (c) 2014-2023 libbitcoin-client developers (see COPYING). | ||
# | ||
# GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY | ||
# | ||
|
@@ -28,6 +28,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "clang" | ||
flags: "-Os -fPIE" | ||
options: "--enable-isystem" | ||
packager: "apt" | ||
packages: "" | ||
|
||
|
@@ -42,6 +43,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "clang" | ||
flags: "-Os -fPIE" | ||
options: "--enable-isystem" | ||
packager: "apt" | ||
packages: "" | ||
|
||
|
@@ -56,6 +58,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "gcc" | ||
flags: "-Os -fPIE" | ||
options: "--enable-isystem" | ||
packager: "apt" | ||
packages: "" | ||
|
||
|
@@ -70,6 +73,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "gcc" | ||
flags: "-Og -g --coverage -fPIE" | ||
options: "--enable-isystem" | ||
packager: "apt" | ||
packages: "lcov" | ||
|
||
|
@@ -84,6 +88,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "clang" | ||
flags: "-Os -fPIE" | ||
options: "--enable-isystem" | ||
packager: "brew" | ||
packages: "" | ||
|
||
|
@@ -98,6 +103,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "clang" | ||
flags: "-Os -fvisibility=hidden -fPIE" | ||
options: "--enable-isystem" | ||
packager: "brew" | ||
packages: "" | ||
|
||
|
@@ -149,11 +155,16 @@ jobs: | |
echo "LDFLAGS=-Wl,-rpath,$WORKSPACE_SUBPATH/prefix/lib" >> $GITHUB_ENV | ||
fi | ||
- name: Display CPU details | ||
if: ${{ (runner.os == 'Linux') }} | ||
shell: bash | ||
run: | | ||
lscpu | ||
- name: Execute install.sh | ||
run: > | ||
./install.sh | ||
--enable-isystem | ||
--build-dir=$LIBBITCOIN_SRC_PATH | ||
--build-dir=$LIBBITCOIN_SRC_PATH ${{ matrix.options }} | ||
--prefix=$LIBBITCOIN_SRC_PATH/prefix | ||
${{ env.LINKAGE }} | ||
${{ env.ASSERT_NDEBUG }} | ||
|
@@ -207,11 +218,11 @@ jobs: | |
run: | | ||
cat ${{ github.workspace }}/build/build-*/bootstrap.log | ||
- name: Failure display otool output | ||
if: ${{ failure() && (matrix.os == 'macos-latest') }} | ||
run: | | ||
otool -L ${{ github.workspace }}/test/.libs/libbitcoin-client-test | ||
- name: Failure display DYLD_PRINT_LIBRARIES | ||
if: ${{ failure() && (matrix.os == 'macos-latest') }} | ||
run: | | ||
|
@@ -241,6 +252,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "clang" | ||
flags: "-Os -fPIE" | ||
options: "" | ||
packager: "apt" | ||
packages: "" | ||
|
||
|
@@ -255,6 +267,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "clang" | ||
flags: "-Os -fPIE" | ||
options: "" | ||
packager: "apt" | ||
packages: "" | ||
|
||
|
@@ -269,6 +282,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "gcc" | ||
flags: "-Os -fPIE" | ||
options: "" | ||
packager: "apt" | ||
packages: "" | ||
|
||
|
@@ -283,6 +297,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "gcc" | ||
flags: "-Og -fPIE" | ||
options: "" | ||
packager: "apt" | ||
packages: "" | ||
|
||
|
@@ -297,6 +312,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "clang" | ||
flags: "-Os -fPIE" | ||
options: "" | ||
packager: "brew" | ||
packages: "" | ||
|
||
|
@@ -311,6 +327,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "clang" | ||
flags: "-Os -fvisibility=hidden -fPIE" | ||
options: "" | ||
packager: "brew" | ||
packages: "" | ||
|
||
|
@@ -365,10 +382,16 @@ jobs: | |
echo "LDFLAGS=-Wl,-rpath,$WORKSPACE_SUBPATH/prefix/lib" >> $GITHUB_ENV | ||
fi | ||
- name: Display CPU details | ||
if: ${{ (runner.os == 'Linux') }} | ||
shell: bash | ||
run: | | ||
lscpu | ||
- name: Execute install-cmake.sh | ||
run: > | ||
./install-cmake.sh | ||
--build-dir=$LIBBITCOIN_SRC_PATH | ||
--build-dir=$LIBBITCOIN_SRC_PATH ${{ matrix.options }} | ||
--prefix=$LIBBITCOIN_SRC_PATH/prefix | ||
${{ env.LINKAGE }} | ||
${{ env.ASSERT_NDEBUG }} | ||
|
@@ -422,11 +445,11 @@ jobs: | |
run: | | ||
cat ${{ github.workspace }}/build/build-*/bootstrap.log | ||
- name: Failure display otool output | ||
if: ${{ failure() && (matrix.os == 'macos-latest') }} | ||
run: | | ||
otool -L ${{ github.workspace }}/test/.libs/libbitcoin-client-test | ||
- name: Failure display DYLD_PRINT_LIBRARIES | ||
if: ${{ failure() && (matrix.os == 'macos-latest') }} | ||
run: | | ||
|
@@ -467,6 +490,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "clang" | ||
flags: "-Os -fPIE" | ||
options: "" | ||
packager: "apt" | ||
packages: "" | ||
|
||
|
@@ -482,6 +506,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "clang" | ||
flags: "-Os -fPIE" | ||
options: "" | ||
packager: "apt" | ||
packages: "" | ||
|
||
|
@@ -497,6 +522,7 @@ jobs: | |
zmq: "--build-zmq" | ||
cc: "gcc" | ||
flags: "-Os -fPIE" | ||
options: "" | ||
packager: "apt" | ||
packages: "" | ||
|
||
|
@@ -551,10 +577,16 @@ jobs: | |
echo "LDFLAGS=-Wl,-rpath,$WORKSPACE_SUBPATH/prefix/${{ matrix.preset }}/lib" >> $GITHUB_ENV | ||
fi | ||
- name: Display CPU details | ||
if: ${{ (runner.os == 'Linux') }} | ||
shell: bash | ||
run: | | ||
lscpu | ||
- name: Execute install-cmakepresets.sh | ||
run: > | ||
./install-cmakepresets.sh | ||
--build-dir=$LIBBITCOIN_SRC_PATH | ||
--build-dir=$LIBBITCOIN_SRC_PATH ${{ matrix.options }} | ||
--prefix=$LIBBITCOIN_SRC_PATH/prefix/${{ matrix.preset }} | ||
--preset=${{ matrix.preset }} | ||
${{ env.LINKAGE }} | ||
|
@@ -609,11 +641,11 @@ jobs: | |
run: | | ||
cat ${{ github.workspace }}/build/build-*/bootstrap.log | ||
- name: Failure display otool output | ||
if: ${{ failure() && (matrix.os == 'macos-latest') }} | ||
run: | | ||
otool -L ${{ github.workspace }}/test/.libs/libbitcoin-client-test | ||
- name: Failure display DYLD_PRINT_LIBRARIES | ||
if: ${{ failure() && (matrix.os == 'macos-latest') }} | ||
run: | | ||
|
@@ -670,6 +702,8 @@ jobs: | |
steps: | ||
- name: Add msbuild to PATH | ||
uses: microsoft/[email protected] | ||
with: | ||
msbuild-architecture: x64 | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
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
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
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
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
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
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
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
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
2 changes: 1 addition & 1 deletion
2
builds/msvc/vs2022/libbitcoin-client-examples/libbitcoin-client-examples.vcxproj
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
2 changes: 1 addition & 1 deletion
2
builds/msvc/vs2022/libbitcoin-client-examples/libbitcoin-client-examples.vcxproj.filters
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
Oops, something went wrong.