Skip to content

Commit

Permalink
Merge pull request #855 from guydavis/integration
Browse files Browse the repository at this point in the history
Version 0.8.7
  • Loading branch information
guydavis authored Feb 16, 2023
2 parents 95c8309 + dbc899a commit a2ec574
Show file tree
Hide file tree
Showing 220 changed files with 3,497 additions and 1,201 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/develop-apple.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
Expand Down
51 changes: 51 additions & 0 deletions .github/workflows/develop-ballcoin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
name: develop-ballcoin

on:
push:
branches:
- 'develop'

jobs:
docker:
runs-on: ubuntu-20.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@v3
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=focal"
"MACHINARIS_STREAM=develop"
"CHIADOG_BRANCH=dev"
"FDCLI_BRANCH=dev"
"BALLCOIN_BRANCH=main"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-ballcoin:develop
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-ballcoin:develop
6 changes: 4 additions & 2 deletions .github/workflows/develop-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile-jammy.base
context: .
platforms: linux/amd64
provenance: false
push: true
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-base-jammy:develop
Expand Down Expand Up @@ -67,11 +68,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile-focal.base
context: .
platforms: linux/amd64
provenance: false
push: true
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-base-focal:develop
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/develop-bpx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/develop-btcgreen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/develop-cactus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
Expand Down
58 changes: 53 additions & 5 deletions .github/workflows/develop-chia.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- 'develop'

jobs:
docker:
chia:
runs-on: ubuntu-22.04
steps:
-
Expand All @@ -33,19 +33,67 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
"MACHINARIS_STREAM=develop"
"CHIADOG_BRANCH=dev"
"CHIA_BRANCH=release/1.6.2"
"BLADEBIT_BRANCH=master"
"PLOTMAN_BRANCH=development"
"CHIA_BRANCH=release/1.7.0"
"BLADEBIT_BRANCH=cuda-compression"
"MADMAX_BRANCH=master"
"PLOTMAN_BRANCH=compress"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris:develop
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris:develop
gigahorse:
runs-on: ubuntu-22.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
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
"MACHINARIS_STREAM=develop"
"CHIADOG_BRANCH=dev"
"GIGAHORSE_BRANCH=v1.6.2.giga4"
"CHIA_BRANCH=release/1.7.0"
"PLOTMAN_BRANCH=development"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-gigahorse:develop
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-gigahorse:develop
3 changes: 2 additions & 1 deletion .github/workflows/develop-chinilla.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
Expand Down
54 changes: 51 additions & 3 deletions .github/workflows/develop-chives.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ on:
- 'develop'

jobs:
docker:

chives:
runs-on: ubuntu-20.04
steps:
-
Expand All @@ -33,7 +34,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
Expand All @@ -43,8 +44,55 @@ jobs:
"UBUNTU_VER=focal"
"MACHINARIS_STREAM=develop"
"CHIADOG_BRANCH=dev"
"CHIVES_BRANCH=1.5.1"
"CHIVES_REPO=https://github.com/HiveProject2021/chives-blockchain.git"
"CHIVES_BRANCH=1.5.4"
"MADMAX_BRANCH=master"
"PLOTMAN_BRANCH=development"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-chives:develop
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-chives:develop
chivesfoxy:
runs-on: ubuntu-20.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@v3
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=focal"
"MACHINARIS_STREAM=develop"
"CHIADOG_BRANCH=dev"
"CHIVES_REPO=https://github.com/foxypool/chives-blockchain.git"
"CHIVES_BRANCH=main"
"PLOTMAN_BRANCH=development"
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/machinaris-chivesfoxy:develop
ghcr.io/${{ secrets.DOCKERHUB_USERNAME }}/machinaris-chivesfoxy:develop
3 changes: 2 additions & 1 deletion .github/workflows/develop-coffee.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=focal"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/develop-cryptodoge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=focal"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/develop-ecostake.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=focal"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/develop-flax.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=jammy"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/develop-flora.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=focal"
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/develop-gold.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
uses: docker/build-push-action@v4
with:
file: docker/dockerfile
context: .
platforms: linux/amd64
provenance: false
push: true
build-args: |
"UBUNTU_VER=focal"
Expand Down
Loading

0 comments on commit a2ec574

Please sign in to comment.