forked from lthn/blockchain
Rename binaries to lethean-* and update workflows
Changed output binary names in CMakeLists.txt from zanod/simplewallet to lethean-* variants, with testnet-specific names when applicable. Updated GitHub Actions workflows to upload lethean-* artifacts instead of the previous explicit binary names.
This commit is contained in:
parent
542095a6a5
commit
ba059f76d4
5 changed files with 14 additions and 13 deletions
4
.github/workflows/build-linux.yml
vendored
4
.github/workflows/build-linux.yml
vendored
|
|
@ -37,8 +37,6 @@ jobs:
|
|||
uses: ./.github/actions/upload-artifacts
|
||||
with:
|
||||
chain-network: ${{ inputs.chain-network }}
|
||||
assets: |
|
||||
zanod
|
||||
simplewallet
|
||||
assets: lethean-*
|
||||
asset-type: 'cli'
|
||||
asset-directory: ${{ github.workspace }}/build/gcc-linux-amd64-release/src
|
||||
|
|
|
|||
4
.github/workflows/build-macos-arm64.yml
vendored
4
.github/workflows/build-macos-arm64.yml
vendored
|
|
@ -35,8 +35,6 @@ jobs:
|
|||
uses: ./.github/actions/upload-artifacts
|
||||
with:
|
||||
chain-network: ${{ inputs.chain-network }}
|
||||
assets: |
|
||||
zanod
|
||||
simplewallet
|
||||
assets: lethean-*
|
||||
asset-type: 'cli'
|
||||
asset-directory: ${{ github.workspace }}/build/apple-clang-arm64-release/src
|
||||
4
.github/workflows/build-macos-intel.yml
vendored
4
.github/workflows/build-macos-intel.yml
vendored
|
|
@ -34,8 +34,6 @@ jobs:
|
|||
uses: ./.github/actions/upload-artifacts
|
||||
with:
|
||||
chain-network: ${{ inputs.chain-network }}
|
||||
assets: |
|
||||
zanod
|
||||
simplewallet
|
||||
assets: lethean-*
|
||||
asset-type: 'cli'
|
||||
asset-directory: ${{ github.workspace }}/build/apple-clang-arm64-release/src
|
||||
|
|
|
|||
4
.github/workflows/build-windows.yml
vendored
4
.github/workflows/build-windows.yml
vendored
|
|
@ -34,8 +34,6 @@ jobs:
|
|||
uses: ./.github/actions/upload-artifacts
|
||||
with:
|
||||
chain-network: ${{ inputs.chain-network }}
|
||||
assets: |
|
||||
zanod.exe
|
||||
simplewallet.exe
|
||||
assets: lethean-*
|
||||
asset-type: 'cli'
|
||||
asset-directory: ${{ github.workspace }}/build/msvc-194-amd64-release/src/Release
|
||||
|
|
|
|||
|
|
@ -178,5 +178,14 @@ ENABLE_SHARED_PCH_EXECUTABLE(simplewallet)
|
|||
|
||||
set_property(TARGET common crypto currency_core rpc stratum wallet PROPERTY FOLDER "libs")
|
||||
set_property(TARGET daemon simplewallet connectivity_tool PROPERTY FOLDER "prog")
|
||||
set_property(TARGET daemon PROPERTY OUTPUT_NAME "zanod")
|
||||
|
||||
if (NOT TESTNET)
|
||||
set_property(TARGET daemon PROPERTY OUTPUT_NAME "lethean-chain-node")
|
||||
set_property(TARGET simplewallet PROPERTY OUTPUT_NAME "lethean-wallet-cli")
|
||||
set_property(TARGET connectivity_tool PROPERTY OUTPUT_NAME "lethean-chain-tool")
|
||||
else ()
|
||||
set_property(TARGET daemon PROPERTY OUTPUT_NAME "lethean-testnet-chain-node")
|
||||
set_property(TARGET simplewallet PROPERTY OUTPUT_NAME "lethean-testnet-wallet-cli")
|
||||
set_property(TARGET connectivity_tool PROPERTY OUTPUT_NAME "lethean-testnet-chain-tool")
|
||||
endif ()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue