From a4463bb09325c8bb4433098887d99117b11b7a90 Mon Sep 17 00:00:00 2001 From: Snider Date: Fri, 22 Mar 2024 15:52:10 +0000 Subject: [PATCH] disables failing ci builds. --- .github/workflows/cli-testnet.yml | 20 ++++++++++---------- utils/build/testnet_linux_cli.sh | 12 ++++++------ 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/cli-testnet.yml b/.github/workflows/cli-testnet.yml index 28d5bf328..65da31960 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 114f1da67..2768431c1 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"