Skip to content

Commit

Permalink
Add sdk-features trigger to PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sushisource committed Nov 23, 2022
1 parent 86631e9 commit a945f53
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/sdk-features-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: SDK Features Integration

on: # rebuild any PRs and main branch changes
pull_request:
push:
branches:
- master

concurrency: # Auto-cancel existing runs in the PR when a new commit is pushed
group: ${{ github.head_ref }}
cancel-in-progress: true

jobs:
build-docker-image:
# TODO: Change to main after merged
uses: temporalio/docker-builds/.github/workflows/docker-build-only.yml@just-build-image-workflow
with:
temporal-server-repo-path: ${{github.event.pull_request.head.repo.full_name}}
temporal-server-repo-ref: ${{github.event.pull_request.head.ref}}
docker-builds-repo-ref: just-build-image-workflow

feature-tests-ts:
needs: build-docker-image
uses: temporalio/sdk-features/.github/workflows/typescript.yaml@trigger-from-server
with:
version: 1.4.4
version-is-repo-ref: false
sdk-features-repo-ref: trigger-from-server
docker-image-artifact-name: temporal-server-docker

feature-tests-go:
needs: build-docker-image
uses: temporalio/sdk-features/.github/workflows/go.yaml@main
with:
version: v1.18.1
version-is-repo-ref: false

feature-tests-python:
needs: build-docker-image
uses: temporalio/sdk-features/.github/workflows/python.yaml@main
with:
version: 0.1b3
version-is-repo-ref: false

feature-tests-java:
needs: build-docker-image
uses: temporalio/sdk-features/.github/workflows/java.yaml@main
with:
version: v1.17.0
version-is-repo-ref: false

0 comments on commit a945f53

Please sign in to comment.