Skip to content

Commit

Permalink
Remove unused step from GA
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalKalke committed Jul 4, 2024
1 parent 2d6d601 commit 3a3b3c0
Showing 1 changed file with 0 additions and 30 deletions.
30 changes: 0 additions & 30 deletions .github/workflows/serverless-build-runtimes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,61 +15,31 @@ jobs:
name: function-runtime-nodejs18/ga
dockerfile: nodejs18/Dockerfile
context: components/runtimes/nodejs
test-image-nodejs18:
runs-on: ubuntu-latest
needs: build-image-nodejs18
steps:
- name: Test image
run: echo "Testing images ${{ needs.build-image-nodejs18.outputs.images }}"

build-image-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/ga
dockerfile: nodejs20/Dockerfile
context: components/runtimes/nodejs
test-image-nodejs20:
runs-on: ubuntu-latest
needs: build-image-nodejs18
steps:
- name: Test image
run: echo "Testing images ${{ needs.build-image-nodejs18.outputs.images }}"

build-image-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/ga
dockerfile: python39/Dockerfile
context: components/runtimes/python
test-image-python39:
runs-on: ubuntu-latest
needs: build-image-python39
steps:
- name: Test image
run: echo "Testing images ${{ needs.build-image-python39.outputs.images }}"

build-image-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/ga
dockerfile: python312/Dockerfile
context: components/runtimes/python
test-image-python312:
runs-on: ubuntu-latest
needs: build-image-python312
steps:
- name: Test image
run: echo "Testing images ${{ needs.build-image-python312.outputs.images }}"

build-image-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/ga
dockerfile: Dockerfile-jvm-runtime
context: components/runtimes/java17
test-image-java17:
runs-on: ubuntu-latest
needs: build-image-java17
steps:
- name: Test image
run: echo "Testing images ${{ needs.build-image-java17.outputs.images }}"

0 comments on commit 3a3b3c0

Please sign in to comment.