Skip to content

Commit

Permalink
disables failing ci builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
Snider committed Mar 22, 2024
1 parent cc085dc commit a4463bb
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 16 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/cli-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand Down
12 changes: 6 additions & 6 deletions utils/build/testnet_linux_cli.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a4463bb

Please sign in to comment.