Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #995

Merged
merged 3 commits into from
Aug 8, 2024
Merged
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
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

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.2] - Unreleased
## [2.4.3] - Unreleased
### Added
### Changed
### Updated
- [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.4.2) to v2.4.2 - misc improvements, see their release notes.
- [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.4.3) to v2.4.3 - misc improvements, see their release notes.
- [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.4.1.giga36) to v2.4.1.giga36.

## [2.4.1] - 2024-07-04
Expand Down
4 changes: 2 additions & 2 deletions scripts/forks/chia_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ else
echo "Installing Chia CUDA binaries on ${arch_name}..."
cd /tmp
if [[ "${arch_name}" == "x86_64" ]]; then
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.3-b2/chia-blockchain-cli_2.4.3-b2-1_amd64.deb
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.3-rc2/chia-blockchain-cli_2.4.3-rc2-1_amd64.deb
apt-get install ./chia-blockchain-cli*.deb
else
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.3-b2/chia-blockchain-cli_2.4.3-b2-1_arm64.deb
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.4.3-rc2/chia-blockchain-cli_2.4.3-rc2-1_arm64.deb
apt-get install ./chia-blockchain-cli*.deb
fi

Expand Down
8 changes: 2 additions & 6 deletions scripts/forks/gigahorse_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,12 @@ else
du -hsc chia-gigahorse-farmer*
tar -xzf chia-gigahorse-farmer*
else
url="https://github.com/madMAx43v3r/chia-gigahorse/releases/download/${GIGAHORSE_BRANCH}/chia-gigahorse-farmer-${GIGAHORSE_VERSION}-aarch64.tar.xz"
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 --version
#tar -xzf chia-gigahorse-farmer* # Fails?
which unxz
unxz --version
unxz chia-gigahorse-farmer*
tar -xzf chia-gigahorse-farmer*
fi
fi
Loading