diff --git a/.github/workflows/cli-testnet.yml b/.github/workflows/cli-testnet.yml index 28d5bf32..65da3196 100644 --- a/.github/workflows/cli-testnet.yml +++ b/.github/workflows/cli-testnet.yml @@ -22,20 +22,20 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-latest, macos-11,macos-12, windows-2019] + os: [ ubuntu-latest] include: - os: ubuntu-latest target: linux-amd64 net: testnet - - os: macos-11 - target: macos-amd64 - net: testnet - - os: macos-12 - target: macos-amd64 - net: testnet - - os: windows-2019 - target: windows-amd64 - net: testnet +# - os: macos-11 +# target: macos-amd64 +# net: testnet +# - os: macos-12 +# target: macos-amd64 +# net: testnet +# - os: windows-2019 +# target: windows-amd64 +# net: testnet env: CCACHE_TEMPDIR: ${{ github.workspace }}/ccache CONAN_HOME: "${{ github.workspace }}/build/" diff --git a/utils/build/testnet_linux_cli.sh b/utils/build/testnet_linux_cli.sh index 114f1da6..2768431c 100755 --- a/utils/build/testnet_linux_cli.sh +++ b/utils/build/testnet_linux_cli.sh @@ -37,24 +37,24 @@ if [ $? -ne 0 ]; then exit 1 fi -make -j2 daemon simplewallet connectivity_tool +make -j2 daemon lethean-cli-wallet connectivity_tool if [ $? -ne 0 ]; then echo "Failed to make!" exit 1 fi -rm -rf Lethean; -mkdir -p Lethean; +rm -rf lethean; +mkdir -p lethean; +chmod 0777 ./src/letheand src/lethean-cli-wallet src/connectivity_tool +cp -Rv src/letheand src/lethean-cli-wallet src/connectivity_tool ./lethean -cp -Rv src/letheand src/simplewallet src/connectivity_tool ./Lethean -chmod 0777 ./src/letheand src/simplewallet src/connectivity_tool package_filename=${ARCHIVE_NAME_PREFIX}.tar.bz2 rm -f ./$package_filename -cd Lethean +cd lethean tar -cjvf ../$package_filename * if [ $? -ne 0 ]; then echo "Failed to pack"