generated from kyma-project/template-repository
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move GA builds to -pull, -push and -release files (#1065)
- Loading branch information
1 parent
8ce3700
commit bd27e1c
Showing
10 changed files
with
143 additions
and
228 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: serverless build (pull) | ||
|
||
on: | ||
pull_request_target: | ||
types: [ opened, edited, synchronize, reopened, ready_for_review ] | ||
|
||
permissions: | ||
id-token: write # This is required for requesting the JWT token | ||
contents: read # This is required for actions/checkout | ||
|
||
jobs: | ||
build-operator: | ||
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main | ||
with: | ||
name: serverless-operator | ||
dockerfile: components/operator/Dockerfile | ||
|
||
build-gitserver: | ||
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main | ||
with: | ||
name: gitserver | ||
dockerfile: Dockerfile | ||
context: tests/gitserver | ||
|
||
build-serverless-controller: | ||
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main | ||
with: | ||
name: function-controller | ||
dockerfile: components/serverless/deploy/manager/Dockerfile | ||
|
||
build-serverless-webhook: | ||
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main | ||
with: | ||
name: function-webhook | ||
dockerfile: components/serverless/deploy/webhook/Dockerfile | ||
|
||
build-serverless-jobinit: | ||
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main | ||
with: | ||
name: function-build-init | ||
dockerfile: components/serverless/deploy/jobinit/Dockerfile | ||
|
||
build-nodejs18: | ||
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main | ||
with: | ||
name: function-runtime-nodejs18 | ||
dockerfile: nodejs18/Dockerfile | ||
context: components/runtimes/nodejs | ||
|
||
build-nodejs20: | ||
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main | ||
with: | ||
name: function-runtime-nodejs20 | ||
dockerfile: nodejs20/Dockerfile | ||
context: components/runtimes/nodejs | ||
|
||
build-python39: | ||
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main | ||
with: | ||
name: function-runtime-python39 | ||
dockerfile: python39/Dockerfile | ||
context: components/runtimes/python | ||
|
||
build-python312: | ||
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main | ||
with: | ||
name: function-runtime-python312 | ||
dockerfile: python312/Dockerfile | ||
context: components/runtimes/python | ||
|
||
build-java17: | ||
uses: kyma-project/test-infra/.github/workflows/image-builder.yml@main # Usage: kyma-project/test-infra/.github/workflows/image-builder.yml@main | ||
with: | ||
name: function-runtime-java17-jvm-alpha | ||
dockerfile: Dockerfile-jvm-runtime | ||
context: components/runtimes/java17 |
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.