Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/spacecoin-qt_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
branches:
- static-spacecoin
- static-spacecoin-dev
- static-spacecoin-ci


jobs:
Expand All @@ -33,7 +34,7 @@ jobs:
- name: Install dependencies (Linux)
run: |
sudo apt-get update # prevents repo404 errors on apt-remove below
sudo apt-get remove php5.6-fpm php7.0-fpm php7.1-fpm php7.2-fpm php7.3-fpm php7.3-common php7.4-fpm msodbcsql17 mysql-server*
sudo apt-get remove php7.4-fpm msodbcsql17 mysql-server*
sudo apt-get update
sudo ACCEPT_EULA=Y apt-get upgrade -y
sudo apt-get install automake autoconf bsdmainutils build-essential clang cmake curl git g++-multilib libboost-all-dev libcurl4-gnutls-dev libc6-dev libdb++-dev libevent-dev libncurses-dev libprotobuf-dev libqrencode-dev libsodium-dev libssl-dev libtool m4 nano ncurses-dev ntp ntpdate pkg-config protobuf-compiler python python-zmq software-properties-common unzip wget zlib1g-dev -y
Expand All @@ -52,7 +53,7 @@ jobs:

windows-build:
name: Windows Build (mingw)
runs-on: ubuntu-latest
runs-on: ubuntu-18.04

steps:
- uses: actions/checkout@v2
Expand All @@ -61,7 +62,7 @@ jobs:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get update # prevents repo404 errors on apt-remove below
sudo apt-get remove php5.6-fpm php7.0-fpm php7.1-fpm php7.2-fpm php7.3-fpm php7.3-common php7.4-fpm msodbcsql17
sudo apt-get remove php7.4-fpm msodbcsql17
sudo apt-get update
sudo ACCEPT_EULA=Y apt-get upgrade -y
sudo apt-get install automake autoconf bsdmainutils build-essential clang cmake curl git g++-multilib libboost-all-dev libcurl4-gnutls-dev libc6-dev libdb++-dev libevent-dev libncurses-dev libprotobuf-dev libqrencode-dev libsodium-dev libssl-dev libtool mingw-w64 m4 nano ncurses-dev ntp ntpdate pkg-config protobuf-compiler python python-zmq software-properties-common unzip wget zlib1g-dev -y
Expand Down Expand Up @@ -97,9 +98,8 @@ jobs:
brew install protobuf
brew install coreutils
brew install wget
brew install python3
brew install berkeley-db4 libtool boost miniupnpc openssl pkg-config python qt libevent qrencode
brew install librsvg
brew install gmp
sudo ln -s /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/* /usr/local/include/
- name: Build (macOS)
run: |
./zcutil/build-mac.sh -j8
Expand Down
2 changes: 1 addition & 1 deletion src/komodo_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -1765,7 +1765,7 @@ void komodo_args(char *argv0)
SoftSetArg("-ac_cbmaturity", std::string("1"));
SoftSetArg("-ac_cc", std::string("939"));
SoftSetArg("-ac_sapling", std::string("1"));
vector<string> SPACEnodes = { "165.227.35.158", "167.172.39.135", "165.22.64.156", "188.166.221.247", "164.90.145.140", "188.40.53.201", "94.130.38.173" };
vector<string> SPACEnodes = { "explorer.spaceworks.co", "mining.spaceworks.co", "space-node.nextblu.com", "space.explorer.dexstats.info" };
mapMultiArgs["-addnode"] = SPACEnodes;

name = GetArg("-ac_name","");
Expand Down
2 changes: 1 addition & 1 deletion zcutil/build-win.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ make -C ${PWD}/depends V=1 HOST=x86_64-w64-mingw32 -j$(nproc --all)
CONFIG_SITE="$PWD/depends/x86_64-w64-mingw32/share/config.site" CXXFLAGS="-DCURL_STATICLIB -g0 -O2" ./configure --disable-tests --disable-bench --with-gui=qt5 --disable-bip70
make V=1 -j$(nproc --all)

cd & cd SpaceOcean
cd ..

cp src/qt/komodo-qt.exe ./spacecoin-qt.exe