1
0
Fork 0
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:
Snider 2025-09-25 21:22:15 +01:00
parent 542095a6a5
commit ba059f76d4
5 changed files with 14 additions and 13 deletions

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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 ()