mirror of
https://github.com/basicswap/basicswap.git
synced 2024-11-17 00:07:56 +00:00
Raise core version.
This commit is contained in:
parent
bf15be743c
commit
a0c366a8c6
4 changed files with 6 additions and 5 deletions
|
@ -7,7 +7,7 @@ stages:
|
||||||
env:
|
env:
|
||||||
global:
|
global:
|
||||||
- TEST_DIR=~/test_basicswap2/
|
- TEST_DIR=~/test_basicswap2/
|
||||||
- PARTICL_BINDIR=/opt/binaries/particl-0.18.1.3/bin/
|
- PARTICL_BINDIR=/opt/binaries/particl-0.18.1.4/bin/
|
||||||
- BITCOIN_BINDIR=/opt/binaries/bitcoin-0.18.1/bin/
|
- BITCOIN_BINDIR=/opt/binaries/bitcoin-0.18.1/bin/
|
||||||
- LITECOIN_BINDIR=/opt/binaries/litecoin-0.17.1/bin/
|
- LITECOIN_BINDIR=/opt/binaries/litecoin-0.17.1/bin/
|
||||||
before_install:
|
before_install:
|
||||||
|
@ -16,10 +16,10 @@ before_script:
|
||||||
- if [ ! -d "/opt/binaries" ]; then mkdir -p "/opt/binaries" ; fi
|
- if [ ! -d "/opt/binaries" ]; then mkdir -p "/opt/binaries" ; fi
|
||||||
- if [ ! -d "$BITCOIN_BINDIR" ]; then cd "/opt/binaries" && wget https://bitcoincore.org/bin/bitcoin-core-0.18.1/bitcoin-0.18.1-x86_64-linux-gnu.tar.gz && tar xvf bitcoin-0.18.1-x86_64-linux-gnu.tar.gz ; fi
|
- if [ ! -d "$BITCOIN_BINDIR" ]; then cd "/opt/binaries" && wget https://bitcoincore.org/bin/bitcoin-core-0.18.1/bitcoin-0.18.1-x86_64-linux-gnu.tar.gz && tar xvf bitcoin-0.18.1-x86_64-linux-gnu.tar.gz ; fi
|
||||||
- if [ ! -d "$LITECOIN_BINDIR" ]; then cd "/opt/binaries" && wget https://download.litecoin.org/litecoin-0.17.1/linux/litecoin-0.17.1-x86_64-linux-gnu.tar.gz && tar xvf litecoin-0.17.1-x86_64-linux-gnu.tar.gz ; fi
|
- if [ ! -d "$LITECOIN_BINDIR" ]; then cd "/opt/binaries" && wget https://download.litecoin.org/litecoin-0.17.1/linux/litecoin-0.17.1-x86_64-linux-gnu.tar.gz && tar xvf litecoin-0.17.1-x86_64-linux-gnu.tar.gz ; fi
|
||||||
- if [ ! -d "$PARTICL_BINDIR" ]; then cd "/opt/binaries" && wget https://github.com/particl/particl-core/releases/download/v0.18.1.3/particl-0.18.1.3-x86_64-linux-gnu_nousb.tar.gz && tar xvf particl-0.18.1.3-x86_64-linux-gnu_nousb.tar.gz ; fi
|
- if [ ! -d "$PARTICL_BINDIR" ]; then cd "/opt/binaries" && wget https://github.com/particl/particl-core/releases/download/v0.18.1.4/particl-0.18.1.4-x86_64-linux-gnu_nousb.tar.gz && tar xvf particl-0.18.1.4-x86_64-linux-gnu_nousb.tar.gz ; fi
|
||||||
script:
|
script:
|
||||||
- cd $TRAVIS_BUILD_DIR
|
- cd $TRAVIS_BUILD_DIR
|
||||||
- export PARTICL_BINDIR=/opt/binaries/particl-0.18.1.3/bin/
|
- export PARTICL_BINDIR=/opt/binaries/particl-0.18.1.4/bin/
|
||||||
- export BITCOIN_BINDIR=/opt/binaries/bitcoin-0.18.1/bin/
|
- export BITCOIN_BINDIR=/opt/binaries/bitcoin-0.18.1/bin/
|
||||||
- export LITECOIN_BINDIR=/opt/binaries/litecoin-0.17.1/bin/
|
- export LITECOIN_BINDIR=/opt/binaries/litecoin-0.17.1/bin/
|
||||||
- export DATADIRS=~/test_basicswap2/
|
- export DATADIRS=~/test_basicswap2/
|
||||||
|
|
|
@ -40,7 +40,7 @@ else:
|
||||||
BIN_ARCH = 'x86_64-linux-gnu.tar.gz'
|
BIN_ARCH = 'x86_64-linux-gnu.tar.gz'
|
||||||
|
|
||||||
known_coins = {
|
known_coins = {
|
||||||
'particl': '0.18.1.3',
|
'particl': '0.18.1.4',
|
||||||
'litecoin': '0.17.1',
|
'litecoin': '0.17.1',
|
||||||
'bitcoin': '0.18.1',
|
'bitcoin': '0.18.1',
|
||||||
'namecoin': '0.18.0',
|
'namecoin': '0.18.0',
|
||||||
|
|
|
@ -95,6 +95,7 @@ Install git and python3:
|
||||||
|
|
||||||
https://gitforwindows.org/
|
https://gitforwindows.org/
|
||||||
https://www.python.org/downloads/windows/
|
https://www.python.org/downloads/windows/
|
||||||
|
Remember to select the 'Add Python to environment variables' option.
|
||||||
|
|
||||||
Right click in the directory you want to install into and select 'Git Bash Here':
|
Right click in the directory you want to install into and select 'Git Bash Here':
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
export TEST_RELOAD_PATH=/tmp/test_basicswap
|
export TEST_RELOAD_PATH=/tmp/test_basicswap
|
||||||
mkdir -p ${TEST_RELOAD_PATH}/bin/{particl,bitcoin}
|
mkdir -p ${TEST_RELOAD_PATH}/bin/{particl,bitcoin}
|
||||||
cp ~/tmp/particl-0.18.1.3-x86_64-linux-gnu.tar.gz ${TEST_RELOAD_PATH}/bin/particl
|
cp ~/tmp/particl-0.18.1.4-x86_64-linux-gnu.tar.gz ${TEST_RELOAD_PATH}/bin/particl
|
||||||
cp ~/tmp/bitcoin-0.18.1-x86_64-linux-gnu.tar.gz ${TEST_RELOAD_PATH}/bin/bitcoin
|
cp ~/tmp/bitcoin-0.18.1-x86_64-linux-gnu.tar.gz ${TEST_RELOAD_PATH}/bin/bitcoin
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue