mirror of
https://github.com/Cyrix126/gupaxx.git
synced 2025-01-06 22:19:22 +00:00
feat: update bundled version of p2pool to v4.3
Some checks are pending
Lockbud / lockbud (push) Waiting to run
Rust / fmt (push) Waiting to run
Rust / test (push) Waiting to run
Rust / clippy (macos-latest) (push) Waiting to run
Rust / clippy (ubuntu-latest) (push) Waiting to run
Rust / check (macos-latest) (push) Waiting to run
Rust / check (ubuntu-latest) (push) Waiting to run
Rust / doc (push) Waiting to run
Typo / typo (push) Waiting to run
Some checks are pending
Lockbud / lockbud (push) Waiting to run
Rust / fmt (push) Waiting to run
Rust / test (push) Waiting to run
Rust / clippy (macos-latest) (push) Waiting to run
Rust / clippy (ubuntu-latest) (push) Waiting to run
Rust / check (macos-latest) (push) Waiting to run
Rust / check (ubuntu-latest) (push) Waiting to run
Rust / doc (push) Waiting to run
Typo / typo (push) Waiting to run
This commit is contained in:
parent
075beddea1
commit
1cc1caab0c
2 changed files with 22 additions and 22 deletions
|
@ -16,8 +16,8 @@
|
||||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
pub const GUPAX_VERSION: &str = concat!("v", env!("CARGO_PKG_VERSION")); // e.g: v1.0.0
|
pub const GUPAX_VERSION: &str = concat!("v", env!("CARGO_PKG_VERSION")); // e.g: v1.0.0
|
||||||
pub const P2POOL_VERSION: &str = "v4.2";
|
pub const P2POOL_VERSION: &str = "v4.3";
|
||||||
pub const XMRIG_VERSION: &str = "v6.21.1";
|
pub const XMRIG_VERSION: &str = "v6.22.2";
|
||||||
pub const XMRIG_PROXY_VERSION: &str = "v6.21.1";
|
pub const XMRIG_PROXY_VERSION: &str = "v6.21.1";
|
||||||
pub const NODE_VERSION: &str = "v18.3.4";
|
pub const NODE_VERSION: &str = "v18.3.4";
|
||||||
pub const COMMIT: &str = env!("COMMIT"); // set in build.rs
|
pub const COMMIT: &str = env!("COMMIT"); // set in build.rs
|
||||||
|
|
|
@ -70,29 +70,29 @@ rm xmrig-proxy-6.21.1-msvc-win64.zip
|
||||||
|
|
||||||
## Download P2Pool Binaries
|
## Download P2Pool Binaries
|
||||||
# download p2pool into directory linux
|
# download p2pool into directory linux
|
||||||
wget https://github.com/SChernykh/p2pool/releases/download/v4.2/p2pool-v4.2-linux-x64.tar.gz
|
wget https://github.com/SChernykh/p2pool/releases/download/v4.3/p2pool-v4.3-linux-x64.tar.gz
|
||||||
tar -xf p2pool-v4.2-linux-x64.tar.gz
|
tar -xf p2pool-v4.3-linux-x64.tar.gz
|
||||||
mv p2pool-v4.2-linux-x64/p2pool /tmp/${FOLDER}/skel/linux_b/p2pool/p2pool
|
mv p2pool-v4.3-linux-x64/p2pool /tmp/${FOLDER}/skel/linux_b/p2pool/p2pool
|
||||||
rm -r p2pool-v4.2-linux-x64
|
rm -r p2pool-v4.3-linux-x64
|
||||||
rm p2pool-v4.2-linux-x64.tar.gz
|
rm p2pool-v4.3-linux-x64.tar.gz
|
||||||
# download p2pool into directory macos-arm64
|
# download p2pool into directory macos-arm64
|
||||||
wget https://github.com/SChernykh/p2pool/releases/download/v4.2/p2pool-v4.2-macos-aarch64.tar.gz
|
wget https://github.com/SChernykh/p2pool/releases/download/v4.3/p2pool-v4.3-macos-aarch64.tar.gz
|
||||||
tar -xf p2pool-v4.2-macos-aarch64.tar.gz
|
tar -xf p2pool-v4.3-macos-aarch64.tar.gz
|
||||||
mv p2pool-v4.2-macos-aarch64/p2pool /tmp/${FOLDER}/skel/macos-arm64_b/Gupaxx.app/Contents/MacOS/p2pool/p2pool
|
mv p2pool-v4.3-macos-aarch64/p2pool /tmp/${FOLDER}/skel/macos-arm64_b/Gupaxx.app/Contents/MacOS/p2pool/p2pool
|
||||||
rm -r p2pool-v4.2-macos-aarch64
|
rm -r p2pool-v4.3-macos-aarch64
|
||||||
rm p2pool-v4.2-macos-aarch64.tar.gz
|
rm p2pool-v4.3-macos-aarch64.tar.gz
|
||||||
# download p2pool into directory macos-x64
|
# download p2pool into directory macos-x64
|
||||||
wget https://github.com/SChernykh/p2pool/releases/download/v4.2/p2pool-v4.2-macos-x64.tar.gz
|
wget https://github.com/SChernykh/p2pool/releases/download/v4.3/p2pool-v4.3-macos-x64.tar.gz
|
||||||
tar -xf p2pool-v4.2-macos-x64.tar.gz
|
tar -xf p2pool-v4.3-macos-x64.tar.gz
|
||||||
mv p2pool-v4.2-macos-x64/p2pool /tmp/${FOLDER}/skel/macos-x64_b/Gupaxx.app/Contents/MacOS/p2pool/p2pool
|
mv p2pool-v4.3-macos-x64/p2pool /tmp/${FOLDER}/skel/macos-x64_b/Gupaxx.app/Contents/MacOS/p2pool/p2pool
|
||||||
rm -r p2pool-v4.2-macos-x64
|
rm -r p2pool-v4.3-macos-x64
|
||||||
rm p2pool-v4.2-macos-x64.tar.gz
|
rm p2pool-v4.3-macos-x64.tar.gz
|
||||||
# download p2pool into directory windows
|
# download p2pool into directory windows
|
||||||
wget https://github.com/SChernykh/p2pool/releases/download/v4.2/p2pool-v4.2-windows-x64.zip
|
wget https://github.com/SChernykh/p2pool/releases/download/v4.3/p2pool-v4.3-windows-x64.zip
|
||||||
unzip p2pool-v4.2-windows-x64.zip
|
unzip p2pool-v4.3-windows-x64.zip
|
||||||
mv p2pool-v4.2-windows-x64/p2pool.exe /tmp/${FOLDER}/skel/windows_b/P2Pool/p2pool.exe
|
mv p2pool-v4.3-windows-x64/p2pool.exe /tmp/${FOLDER}/skel/windows_b/P2Pool/p2pool.exe
|
||||||
rm -r p2pool-v4.2-windows-x64
|
rm -r p2pool-v4.3-windows-x64
|
||||||
rm p2pool-v4.2-windows-x64.zip
|
rm p2pool-v4.3-windows-x64.zip
|
||||||
|
|
||||||
## Download Monero Binaries
|
## Download Monero Binaries
|
||||||
# download monero into directory linux
|
# download monero into directory linux
|
||||||
|
|
Loading…
Reference in a new issue