Skip to content

Commit

Permalink
Deal with Gigahorse missing ARM64 support in latest release.
Browse files Browse the repository at this point in the history
  • Loading branch information
guydavis committed Dec 7, 2024
1 parent ef281e0 commit a4de848
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [2.4.5] - Unreleased
## [2.5.0] - Unreleased
### Added
- New check to restart a farmer if pooling and no partials have been observed in the last hour. Thanks @aweigold!
### Changed
### Updated
- [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.5.0) to v2.5.0 - misc improvements, see their release notes.
- [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.4.giga36) to v2.4.4.giga36.
- [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.4.giga36) to v2.4.4.giga36. NOTE: Only for AMD64, so ARM64 uses previous version.

## [2.4.4] - 2024-10-17
### Added
Expand Down
6 changes: 5 additions & 1 deletion scripts/forks/gigahorse_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,16 @@ else
du -hsc chia-gigahorse-farmer*
tar -xzf chia-gigahorse-farmer*
else
# Max broke ARM64 support in v2.4.4.giga36, have to downgrade to 2.4.1
if [[ "${GIGAHORSE_BRANCH}" == "v2.4.4.giga36" ]]; then
GIGAHORSE_BRANCH="v2.4.1.giga36" # old version
GIGAHORSE_VERSION=${GIGAHORSE_BRANCH#?}
fi
url="https://github.com/madMAx43v3r/chia-gigahorse/releases/download/${GIGAHORSE_BRANCH}/chia-gigahorse-farmer-${GIGAHORSE_VERSION}-aarch64.tar.gz"
echo "Pulling Madmax closed-source Chia farming binary from..."
echo ${url}
cd / && curl --retry 5 --retry-max-time 120 -skJLO ${url}
du -hsc chia-gigahorse-farmer*
cksum chia-gigahorse-farmer*
tar -xzf chia-gigahorse-farmer*
fi
fi

0 comments on commit a4de848

Please sign in to comment.