🚧 github: Use a matrix build

test/github-actions
Gerber, Mike 2 years ago
parent 2e027d015d
commit e591342b3e

@ -9,22 +9,21 @@ on:
- 'test/github-actions' - 'test/github-actions'
jobs: jobs:
docker: build-core:
strategy: strategy:
matrix: matrix:
subimage: ["core", "dinglehopper"] # core images need to come first! subimage: ["core"]
runs-on: ubuntu-latest runs-on: ubuntu-latest
# TODO reuse workflow for core + rest
steps: steps:
- -
name: Checkout name: Checkout
uses: actions/checkout@v3 uses: actions/checkout@v3
# We are checking out explicitly, so build-push-action isn't trying # We are checking out explicitly, so build-push-action isn't trying
# to checkout the (unreachable) submodule. (Using "context" there.) # to checkout the (unreachable) submodule. (Using "context" there.)
- -
name: Set up Docker Buildx name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2 uses: docker/setup-buildx-action@v2
# TODO data # TODO data
- -
name: Login to Docker Hub name: Login to Docker Hub
@ -42,3 +41,35 @@ jobs:
DRONE_COMMIT=${{ github.sha }} DRONE_COMMIT=${{ github.sha }}
push: true push: true
tags: quratorspk/ocrd-galley-${{ matrix.subimage }}:${{ github.sha }} tags: quratorspk/ocrd-galley-${{ matrix.subimage }}:${{ github.sha }}
build-rest:
needs: build-core
strategy:
matrix:
subimage: ["dinglehopper"]
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
# We are checking out explicitly, so build-push-action isn't trying
# to checkout the (unreachable) submodule. (Using "context" there.)
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build ${{ matrix.subimage }}
uses: docker/build-push-action@v4
with:
context: .
file: Dockerfile-${{ matrix.subimage }}
build-args:
DRONE_COMMIT=${{ github.sha }}
push: true
tags: quratorspk/ocrd-galley-${{ matrix.subimage }}:${{ github.sha }}

Loading…
Cancel
Save