Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ on:
required: false
default: "ghcr.io/restatedev/restate:main"
type: string
serviceImage:
description: "service image, if provided it will skip building the image from sdk main branch"
required: false
default: ""
type: string
workflow_call:
inputs:
restateCommit:
Expand All @@ -32,6 +37,11 @@ on:
required: false
default: 'ghcr.io/restatedev/restate:main'
type: string
serviceImage:
description: "service image, if provided it will skip building the image from sdk main branch"
required: false
default: ""
type: string
envVars:
required: false
type: string
Expand Down Expand Up @@ -101,6 +111,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Build Typescript test-services image
if: ${{ inputs.serviceImage == '' }}
id: build
uses: docker/build-push-action@v6
with:
Expand All @@ -116,7 +127,7 @@ jobs:
uses: restatedev/sdk-test-suite@v3.2
with:
restateContainerImage: ${{ inputs.restateCommit != '' && 'localhost/restatedev/restate-commit-download:latest' || (inputs.restateImage != '' && inputs.restateImage || 'ghcr.io/restatedev/restate:main') }}
serviceContainerImage: "restatedev/typescript-test-services"
serviceContainerImage: ${{ inputs.serviceImage != '' && inputs.serviceImage || 'restatedev/typescript-test-services' }}
exclusionsFile: "packages/restate-e2e-services/exclusions.yaml"
envVars: ${{ inputs.envVars }}
testArtifactOutput: ${{ inputs.testArtifactOutput != '' && inputs.testArtifactOutput || 'sdk-typescript-integration-test-report' }}
Expand Down
Loading