Skip to content
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
44 changes: 0 additions & 44 deletions .github/workflows/develop-blockchains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,50 +6,6 @@ on:
- 'develop'

jobs:
cactus:
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
"MACHINARIS_STREAM=develop"
"CHIADOG_BRANCH=dev"
"FDCLI_BRANCH=dev"
"CACTUS_BRANCH=main"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-cactus:develop
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-cactus:develop

chia:
runs-on: ubuntu-24.04
steps:
Expand Down
42 changes: 0 additions & 42 deletions .github/workflows/main-blockchains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,48 +7,6 @@ on:
description: 'Release Version'

jobs:
cactus:
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
"MACHINARIS_STREAM=latest"
"CACTUS_BRANCH=main"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-cactus:latest
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-cactus:latest

chia:
runs-on: ubuntu-24.04
steps:
Expand Down
43 changes: 0 additions & 43 deletions .github/workflows/test-blockchains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,49 +6,6 @@ on:
- 'integration'

jobs:
cactus:
runs-on: ubuntu-22.04
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Set up QEMU
uses: docker/setup-qemu-action@v3
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
-
name: Login to DockerHub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v6
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
"MACHINARIS_STREAM=develop"
"CHIADOG_BRANCH=dev"
"CACTUS_BRANCH=main"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-cactus:test
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-cactus:test

chia:
runs-on: ubuntu-24.04
steps:
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +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.5.5] - 2025-08-20
### Added
### Changed
- [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.5.5) to v2.5.5 - misc improvements, see their release notes. Not backwards compatible with old versions.

## [2.5.4] - 2025-05-29
### Added
### Changed
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.4
2.5.5
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.5.4/chia-blockchain-cli_2.5.4-1_amd64.deb
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.5/chia-blockchain-cli_2.5.5-1_amd64.deb
apt-get install ./chia-blockchain-cli*.deb
else
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.4/chia-blockchain-cli_2.5.4-1_arm64.deb
curl -sLJO https://github.com/Chia-Network/chia-blockchain/releases/download/2.5.5/chia-blockchain-cli_2.5.5-1_arm64.deb
apt-get install ./chia-blockchain-cli*.deb
fi

Expand Down
4 changes: 2 additions & 2 deletions scripts/pull_3rd_party_libs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
#

# Bootstrap and Icons
BSI_VERSION=1.12.1
BOOTSTRAP_VERSION=5.3.6
BSI_VERSION=1.13.1
BOOTSTRAP_VERSION=5.3.7
BASEPATH=${JS_LIBS_BASEPATH:-/machinaris/web/static/3rd_party}

# Mapping library
Expand Down
Loading