-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make a single launcher workflow to launch all arm builds
- Loading branch information
1 parent
ff2b50e
commit b6be3d9
Showing
8 changed files
with
96 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Trigger a build of all docker images including ARM images | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
build_arm: | ||
type: boolean | ||
description: "Build for ARM as well" | ||
default: true | ||
required: false | ||
|
||
jobs: | ||
trigger-backend: | ||
uses: ./.github/workflows/backend.yml | ||
with: | ||
build_arm: ${{ github.event.inputs.build_arm }} | ||
|
||
trigger-config-preprocessor: | ||
uses: ./.github/workflows/config-preprocessor-build.yml | ||
with: | ||
build_arm: ${{ github.event.inputs.build_arm }} | ||
|
||
trigger-dummy-preprocessing: | ||
uses: ./.github/workflows/dummyPreprocessing.yml | ||
with: | ||
build_arm: ${{ github.event.inputs.build_arm }} | ||
|
||
trigger-ingest: | ||
uses: ./.github/workflows/ingest.yml | ||
with: | ||
build_arm: ${{ github.event.inputs.build_arm }} | ||
|
||
trigger-keycloakify: | ||
uses: ./.github/workflows/keycloakify-build.yml | ||
with: | ||
build_arm: ${{ github.event.inputs.build_arm }} | ||
|
||
trigger-preprocessing-nextclade: | ||
uses: ./.github/workflows/preprocessing-nextclade.yml | ||
with: | ||
build_arm: ${{ github.event.inputs.build_arm }} | ||
|
||
trigger-website: | ||
uses: ./.github/workflows/website.yml | ||
with: | ||
build_arm: ${{ github.event.inputs.build_arm }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters