Skip to content

Commit

Permalink
Run feature tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tdeebswihart committed May 20, 2024
1 parent c3c94ab commit f77c0d2
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-build-only.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- 5000:5000
steps:
- name: Checkout docker builds repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Must specify repo path, or it'll use path of calling workflow (since this is a reusable wf)
repository: temporalio/docker-builds
Expand Down
59 changes: 59 additions & 0 deletions .github/workflows/features-integration.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Features Integration

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

permissions: read-all

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

jobs:
build-docker-image:
uses: ./.github/workflows/docker-build-only.yml

feature-tests-ts:
needs: build-docker-image
uses: temporalio/features/.github/workflows/typescript.yaml@main
with:
# This field is not actually used by these workflow if docker-image-artifact-name
# is set, but it's marked as required, so supply some string.
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker

feature-tests-go:
needs: build-docker-image
uses: temporalio/features/.github/workflows/go.yaml@main
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker

feature-tests-python:
needs: build-docker-image
uses: temporalio/features/.github/workflows/python.yaml@main
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker

feature-tests-java:
needs: build-docker-image
uses: temporalio/features/.github/workflows/java.yaml@main
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker

feature-tests-dotnet:
needs: build-docker-image
uses: temporalio/features/.github/workflows/dotnet.yaml@main
with:
version: __latest_features_docker_image__
version-is-repo-ref: false
docker-image-artifact-name: temporal-server-docker

0 comments on commit f77c0d2

Please sign in to comment.