mirror of
https://github.com/qurator-spk/ocrd-galley.git
synced 2025-06-07 22:00:12 +02:00
🚧 github: Use reusable workflow to build both core + rest of images
This commit is contained in:
parent
e591342b3e
commit
0022e4a275
2 changed files with 49 additions and 55 deletions
41
.github/workflows/build-subimage.yml
vendored
Normal file
41
.github/workflows/build-subimage.yml
vendored
Normal file
|
@ -0,0 +1,41 @@
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
subimage:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
secrets:
|
||||||
|
DOCKERHUB_USERNAME:
|
||||||
|
required: true
|
||||||
|
DOCKERHUB_PASSWORD:
|
||||||
|
required: true
|
||||||
|
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-subimage-job:
|
||||||
|
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 ${{ inputs.subimage }}
|
||||||
|
uses: docker/build-push-action@v4
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
file: Dockerfile-${{ inputs.subimage }}
|
||||||
|
build-args:
|
||||||
|
DRONE_COMMIT=${{ github.sha }}
|
||||||
|
push: true
|
||||||
|
tags: quratorspk/ocrd-galley-${{ inputs.subimage }}:${{ github.sha }}
|
59
.github/workflows/build.yml
vendored
59
.github/workflows/build.yml
vendored
|
@ -13,63 +13,16 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
subimage: ["core"]
|
subimage: ["core"]
|
||||||
runs-on: ubuntu-latest
|
uses: ./.github/workflows/build-subimage.yml
|
||||||
# TODO reuse workflow for core + rest
|
|
||||||
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
|
|
||||||
# TODO data
|
|
||||||
-
|
|
||||||
name: Login to Docker Hub
|
|
||||||
uses: docker/login-action@v2
|
|
||||||
with:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
subimage: ${{ matrix.subimage }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
secrets: inherit
|
||||||
-
|
|
||||||
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 }}
|
|
||||||
|
|
||||||
build-rest:
|
build-rest:
|
||||||
needs: build-core
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
subimage: ["dinglehopper"]
|
subimage: ["dinglehopper"]
|
||||||
runs-on: ubuntu-latest
|
uses: ./.github/workflows/build-subimage.yml
|
||||||
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:
|
with:
|
||||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
subimage: ${{ matrix.subimage }}
|
||||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
secrets: inherit
|
||||||
-
|
|
||||||
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…
Add table
Add a link
Reference in a new issue