Skip to content

Commit

Permalink
Use Ubuntu 24.04 for test and latest images now too.
Browse files Browse the repository at this point in the history
  • Loading branch information
guydavis committed Feb 16, 2025
1 parent b96dd91 commit 9430cdb
Show file tree
Hide file tree
Showing 4 changed files with 82 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/develop-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
with:
file: docker/dockerfile-noble.base
context: .
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
provenance: false
push: true
tags: |
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
with:
file: docker/dockerfile-jammy.base
context: .
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
provenance: false
push: true
tags: |
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
with:
file: docker/dockerfile-focal.base
context: .
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
provenance: false
push: true
tags: |
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/main-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,44 @@ name: release-base
on: workflow_dispatch

jobs:
docker-noble:
runs-on: ubuntu-24.04
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
file: docker/dockerfile-noble.base
context: .
platforms: linux/amd64
provenance: false
push: true
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-base-noble:latest
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-base-noble:latest
docker-jammy:
runs-on: ubuntu-22.04
steps:
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/test-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,44 @@ name: test-base
on: workflow_dispatch

jobs:
docker-noble:
runs-on: ubuntu-24.04
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v4
with:
file: docker/dockerfile-noble.base
context: .
platforms: linux/amd64
provenance: false
push: true
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-base-noble:test
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-base-noble:test
docker-jammy:
runs-on: ubuntu-22.04
steps:
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +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.5.1] - ?
## [2.5.1] - 2025-02-17
### Added
### Changed
- For Chia and Gigahorse, install them on the latest Ubuntu 24.04 (Noble) Docker image.
### Updated
- [Cactus](https://github.com/Cactus-Network/cactus-blockchain/releases/tag/v2.5.0) to v2.5.0
- [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.5.1) to v2.5.1 - misc improvements, see their release notes.
- [Chia](https://github.com/Chia-Network/chia-blockchain/releases/tag/2.5.1) to v2.5.1 - Upgrade recommended as pooling just broke in Chia v2.5.0
- [Gigahorse](https://github.com/madMAx43v3r/chia-gigahorse/releases/tag/v2.5.1.giga36) to v2.5.1.giga36. NOTE: Only for AMD64, so ARM64 uses an old version.

## [2.5.0] - 2025-01-04
Expand Down

0 comments on commit 9430cdb

Please sign in to comment.