mirror of
https://github.com/qurator-spk/ocrd-galley.git
synced 2025-07-05 19:19:53 +02:00
🚧 github: TUse dynamic build matrix
This commit is contained in:
parent
958db4d0e9
commit
31fe37c36c
2 changed files with 11 additions and 8 deletions
10
.github/list-subimages
vendored
10
.github/list-subimages
vendored
|
@ -3,6 +3,8 @@ import glob
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
import argparse
|
import argparse
|
||||||
|
import json
|
||||||
|
|
||||||
|
|
||||||
all_subimages = {re.sub(r"^Dockerfile-", "", dockerfile) for dockerfile in glob.glob("Dockerfile-*")}
|
all_subimages = {re.sub(r"^Dockerfile-", "", dockerfile) for dockerfile in glob.glob("Dockerfile-*")}
|
||||||
core_subimages = {si for si in all_subimages if si.startswith("core")}
|
core_subimages = {si for si in all_subimages if si.startswith("core")}
|
||||||
|
@ -15,15 +17,15 @@ parser.add_argument('--core', action='store_true',
|
||||||
default=False, help='List core subimages')
|
default=False, help='List core subimages')
|
||||||
parser.add_argument('--rest', action='store_true',
|
parser.add_argument('--rest', action='store_true',
|
||||||
default=False, help='List rest subimages')
|
default=False, help='List rest subimages')
|
||||||
parser.add_argument('--csv', action='store_true',
|
parser.add_argument('--json', action='store_true',
|
||||||
default=False, help='Return list as CSV')
|
default=False, help='Return list as JSON')
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
|
||||||
def list_(subimages):
|
def list_(subimages):
|
||||||
subimages = sorted(subimages)
|
subimages = sorted(subimages)
|
||||||
if args.csv:
|
if args.json:
|
||||||
print(",".join(subimages))
|
print(json.dumps(subimages))
|
||||||
else:
|
else:
|
||||||
print("\n".join(subimages))
|
print("\n".join(subimages))
|
||||||
|
|
||||||
|
|
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
|
@ -10,7 +10,7 @@ on:
|
||||||
- 'test/github-actions'
|
- 'test/github-actions'
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
generate-matrix:
|
matrix:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
outputs:
|
outputs:
|
||||||
core: ${{ steps.step1.outputs.core }}
|
core: ${{ steps.step1.outputs.core }}
|
||||||
|
@ -23,13 +23,14 @@ jobs:
|
||||||
name: Generate outputs
|
name: Generate outputs
|
||||||
id: step1
|
id: step1
|
||||||
run: |
|
run: |
|
||||||
echo "core=$(./.github/list-subimages --core --csv)" >>$GITHUB_OUTPUT
|
echo "core=$(./.github/list-subimages --core --json)" >>$GITHUB_OUTPUT
|
||||||
echo "rest=$(./.github/list-subimages --rest --csv)" >>$GITHUB_OUTPUT
|
echo "rest=$(./.github/list-subimages --rest --json)" >>$GITHUB_OUTPUT
|
||||||
|
|
||||||
build-core:
|
build-core:
|
||||||
|
needs: matrix
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
subimage: ["core"]
|
subimage: ${{ fromJson(needs.matrix.outputs.core) }}
|
||||||
uses: ./.github/workflows/build-subimage.yml
|
uses: ./.github/workflows/build-subimage.yml
|
||||||
with:
|
with:
|
||||||
subimage: ${{ matrix.subimage }}
|
subimage: ${{ matrix.subimage }}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue