Skip to content

Commit

Permalink
Monero GUI: switch to release tag, add auto-updater, and drop ARM32
Browse files Browse the repository at this point in the history
see #2651 (comment) for why ARM32 was dropped (and the requirement to bring it back)
  • Loading branch information
theofficialgman committed Oct 9, 2024
1 parent 4ecbde2 commit 6423860
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .github/workflows/updates/Monero GUI.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/bin/bash

version=$(get_release_raw monero-project/monero-gui)
arm64_url="https://github.com/monero-project/monero-gui/tree/$version"

source $GITHUB_WORKSPACE/.github/workflows/update_github_script.sh
4 changes: 3 additions & 1 deletion apps/Monero GUI/install → apps/Monero GUI/install-64
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#!/bin/bash

version=v0.18.3.4

install_packages build-essential cmake miniupnpc libunbound-dev graphviz doxygen \
libunwind8-dev pkg-config libssl-dev libzmq3-dev libsodium-dev libhidapi-dev libnorm-dev \
libusb-1.0-0-dev libpgm-dev libprotobuf-dev protobuf-compiler libgcrypt20-dev libboost-chrono-dev \
Expand All @@ -11,7 +13,7 @@ qml-module-qt-labs-settings qml-module-qt-labs-platform qml-module-qt-labs-folde
qttools5-dev-tools qml-module-qtquick-templates2 libqt5svg5-dev || exit 1

cd /tmp
git_clone --recursive https://github.com/monero-project/monero-gui || exit 1
git_clone -b ${version} --recursive https://github.com/monero-project/monero-gui || exit 1

#compile
cd /tmp/monero-gui
Expand Down

0 comments on commit 6423860

Please sign in to comment.