From 38cd3ab630966f667a072d9cbdb86bc3c505f1d3 Mon Sep 17 00:00:00 2001 From: woodser Date: Thu, 27 Apr 2023 12:09:23 -0400 Subject: [PATCH] update monero binaries to testing12 to fix mining testnet from scratch update release documentation --- build.gradle | 12 ++++++------ docs/developer-guide.md | 16 ++++++++-------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/build.gradle b/build.gradle index 67c37ca4..1771e8fa 100644 --- a/build.gradle +++ b/build.gradle @@ -420,12 +420,12 @@ configure(project(':core')) { doLast { // get monero binaries download url Map moneroBinaries = [ - 'linux' : 'https://github.com/haveno-dex/monero/releases/download/testing11/monero-bins-haveno-linux.tar.gz', - 'linux-sha256' : '34122372346745322437411e2a2302e699bd3a8a6f8f196ad13a041c9b7d6879', - 'mac' : 'https://github.com/haveno-dex/monero/releases/download/testing11/monero-bins-haveno-mac.tar.gz', - 'mac-sha256' : '2fdd763c95bd573a4675c39e1965adbc1c5b032290a26f6a6102414d8fa37b33', - 'windows' : 'https://github.com/haveno-dex/monero/releases/download/testing11/monero-bins-haveno-windows.zip', - 'windows-sha256': '7c5d94f3e13f70b1c9f36558031cb79691e0920253083b64a35e956c7eb1f158' + 'linux' : 'https://github.com/haveno-dex/monero/releases/download/testing12/monero-bins-haveno-linux.tar.gz', + 'linux-sha256' : 'c782448567b12f2c8a213f3aa170ae98ea218b43b38db21c7126ffc162897b8e', + 'mac' : 'https://github.com/haveno-dex/monero/releases/download/testing12/monero-bins-haveno-mac.tar.gz', + 'mac-sha256' : '0bd4e53ddc0cca1de6f2df401d6b0d6b4fca6808f3f0b56e5b186541dc09681a', + 'windows' : 'https://github.com/haveno-dex/monero/releases/download/testing12/monero-bins-haveno-windows.zip', + 'windows-sha256': 'c060cdc177122933d32220c276a510e98c8a5b061b113170ce397049c11a7eb2' ] String osKey diff --git a/docs/developer-guide.md b/docs/developer-guide.md index b5cb6bd9..da669455 100644 --- a/docs/developer-guide.md +++ b/docs/developer-guide.md @@ -43,6 +43,14 @@ Follow [instructions](https://github.com/haveno-dex/haveno-ts#run-tests) to run b. Sign account age witness: `ctrl+p` then enter , (from past trade details) and click the "Import unsigned account age witness" button. c. Sign unsigned witness pub keys: `ctrl+o` +## Release portable Monero binaries for each platform + +1. Update the release-v0.18 branch on Haveno's [monero repo](https://github.com/haveno-dex/monero) to the latest release from upstream + any customizations (e.g. a commit to speed up testnet hardforks for local development (b509b1)). +2. git tag testing12 && git push haveno testing12 +3. Follow instructions to [build portable binaries for each platform](#build-portable-monero-binaries-for-each-platform). +4. Publish a new release at https://github.com/haveno-dex/monero/releases with the updated binaries and hashes. +5. Update the paths and hashes in build.gradle and PR. + ## Build portable Monero binaries for each platform Based on these instructions: https://github.com/monero-project/monero#cross-compiling @@ -81,14 +89,6 @@ Based on these instructions: https://github.com/monero-project/monero#cross-comp 5. `zip monero-bins-haveno-windows.zip monerod.exe monero-wallet-rpc.exe` 6. Save monero-bins-haveno-windows.zip for release. -## Release portable Monero binaries for each platform - -1. Update Haveno's [monero repo](https://github.com/haveno-dex/monero) to the latest release from upstream + a commit (241b6) to rapidly update to the latest output type on testnet. -2. git tag testing11 && git push haveno testing11 -3. Follow instructions to [build portable binaries for each platform](#build-portable-monero-binaries-for-each-platform). -4. Publish a new release at https://github.com/haveno-dex/monero/releases with the updated binaries and hashes. -5. Update the paths and hashes in build.gradle and PR. - ## Build executable installers for each platform See [instructions](/desktop/package/README.md).