-
Notifications
You must be signed in to change notification settings - Fork 2
55 lines (45 loc) · 1.22 KB
/
build-arm.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Trigger a build of all docker images including ARM images
on:
push:
workflow_dispatch:
inputs:
build_arm:
type: boolean
description: "Build for ARM as well"
default: true
required: false
env:
BUILD_ARM: "true"
permissions:
contents: read
packages: write
checks: read
jobs:
trigger-backend:
uses: ./.github/workflows/backend.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-config-preprocessor:
uses: ./.github/workflows/config-preprocessor-build.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-dummy-preprocessing:
uses: ./.github/workflows/dummyPreprocessing.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-ingest:
uses: ./.github/workflows/ingest.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-keycloakify:
uses: ./.github/workflows/keycloakify-build.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-preprocessing-nextclade:
uses: ./.github/workflows/preprocessing-nextclade.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}
trigger-website:
uses: ./.github/workflows/website.yml
with:
build_arm: ${{ github.env.BUILD_ARM }}