Work around java sdk issue 1973 #850
Workflow file for this run
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
name: Continuous Integration | |
on: # rebuild any PRs and main branch changes | |
pull_request: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
latest-sdk-versions: | |
runs-on: 'ubuntu-latest' | |
outputs: | |
go_latest: '77626eee301574bc4cfd756dbf0641c61e9e6907' | |
typescript_latest: '1.9.0' | |
java_latest: '1.22.0' | |
python_latest: '1.4.0' | |
csharp_latest: '0.1.0-beta2' | |
steps: | |
- run: 'echo noop' | |
# Build cli and harnesses | |
build-go: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] # windows-latest - like 8x slower. Excluded for now since we're just building. | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Print build information | |
run: 'echo head_ref: "$GITHUB_HEAD_REF", ref: "$GITHUB_REF", os: ${{ matrix.os }}' | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '^1.20' | |
- run: go build -o temporal-features | |
build-ts: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] # windows-latest - like 8x slower. Excluded for now since we're just building. | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Print build information | |
run: 'echo head_ref: "$GITHUB_HEAD_REF", ref: "$GITHUB_REF", os: ${{ matrix.os }}' | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
- run: npm ci | |
- run: npm run build | |
- run: npm run lint | |
build-python: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] # windows-latest - like 8x slower. Excluded for now since we're just building. | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Print build information | |
run: 'echo head_ref: "$GITHUB_HEAD_REF", ref: "$GITHUB_REF", os: ${{ matrix.os }}' | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.10' | |
- run: python -m pip install --upgrade wheel poetry poethepoet | |
- run: poetry install --no-root | |
- run: poe lint | |
build-java: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] # windows-latest - like 8x slower. Excluded for now since we're just building. | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Print build information | |
run: 'echo head_ref: "$GITHUB_HEAD_REF", ref: "$GITHUB_REF", os: ${{ matrix.os }}' | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- run: ./gradlew build | |
build-dotnet: | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ubuntu-latest] # windows-latest - like 8x slower. Excluded for now since we're just building. | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Print build information | |
run: 'echo head_ref: "$GITHUB_HEAD_REF", ref: "$GITHUB_REF", os: ${{ matrix.os }}' | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-dotnet@v3 | |
- run: dotnet build | |
- run: dotnet test | |
feature-tests-ts: | |
needs: latest-sdk-versions | |
uses: ./.github/workflows/typescript.yaml | |
with: | |
version: ${{ needs.latest-sdk-versions.outputs.typescript_latest }} | |
version-is-repo-ref: false | |
features-repo-ref: ${{ github.head_ref }} | |
features-repo-path: ${{ github.event.pull_request.head.repo.full_name }} | |
feature-tests-go: | |
needs: latest-sdk-versions | |
uses: ./.github/workflows/go.yaml | |
with: | |
version: ${{ needs.latest-sdk-versions.outputs.go_latest }} | |
version-is-repo-ref: true | |
features-repo-ref: ${{ github.head_ref }} | |
features-repo-path: ${{ github.event.pull_request.head.repo.full_name }} | |
feature-tests-python: | |
needs: latest-sdk-versions | |
uses: ./.github/workflows/python.yaml | |
with: | |
version: ${{ needs.latest-sdk-versions.outputs.python_latest }} | |
version-is-repo-ref: false | |
features-repo-ref: ${{ github.head_ref }} | |
features-repo-path: ${{ github.event.pull_request.head.repo.full_name }} | |
feature-tests-java: | |
needs: latest-sdk-versions | |
uses: ./.github/workflows/java.yaml | |
with: | |
version: 'v${{ needs.latest-sdk-versions.outputs.java_latest }}' | |
version-is-repo-ref: false | |
features-repo-ref: ${{ github.head_ref }} | |
features-repo-path: ${{ github.event.pull_request.head.repo.full_name }} | |
feature-tests-dotnet: | |
needs: latest-sdk-versions | |
uses: ./.github/workflows/dotnet.yaml | |
with: | |
version: ${{ needs.latest-sdk-versions.outputs.csharp_latest }} | |
version-is-repo-ref: false | |
features-repo-ref: ${{ github.head_ref }} | |
features-repo-path: ${{ github.event.pull_request.head.repo.full_name }} | |
build-docker-images: | |
needs: latest-sdk-versions | |
uses: ./.github/workflows/all-docker-images.yaml | |
secrets: inherit | |
# TODO: Find some way to automatically upgrade to "latest" | |
with: | |
do-push: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} | |
go-repo-ref: ${{ needs.latest-sdk-versions.outputs.go_latest }} | |
ts-ver: 'v${{ needs.latest-sdk-versions.outputs.typescript_latest }}' | |
java-ver: 'v${{ needs.latest-sdk-versions.outputs.java_latest }}' | |
py-ver: 'v${{ needs.latest-sdk-versions.outputs.python_latest }}' | |
cs-ver: 'v${{ needs.latest-sdk-versions.outputs.csharp_latest }}' |