PostCommit Go Dataflow ARM #211
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: Go PostCommit Dataflow ARM | |
on: | |
push: | |
tags: ['v*'] | |
branches: ['master', 'release-*'] | |
paths: ['model/**', 'sdks/go.**', 'release/**', '.github/workflows/beam_PostCommit_Go_Dataflow_ARM.yml'] | |
issue_comment: | |
types: [created] | |
schedule: | |
- cron: '0 */6 * * *' | |
workflow_dispatch: | |
#Setting explicit permissions for the action to avoid the default permissions which are `write-all` in case of pull_request_target event | |
permissions: | |
actions: write | |
pull-requests: read | |
checks: read | |
contents: read | |
deployments: read | |
id-token: none | |
issues: read | |
discussions: read | |
packages: read | |
pages: read | |
repository-projects: read | |
security-events: read | |
statuses: read | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
beam_PostCommit_Go_Dataflow_ARM: | |
if: | | |
github.event_name == 'push' || | |
github.event_name == 'schedule' || | |
github.event.comment.body == 'Run Go PostCommit Dataflow ARM' | |
runs-on: [self-hosted, ubuntu-20.04, main] | |
name: beam_PostCommit_Go_Dataflow_ARM | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Rerun on comment | |
if: github.event.comment.body == 'Run Go PostCommit Dataflow ARM' | |
uses: ./.github/actions/rerun-job-action | |
with: | |
pull_request_url: ${{ github.event.issue.pull_request.url }} | |
github_repository: ${{ github.repository }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
github_job: ${{ github.job }} | |
github_current_run_id: ${{ github.run_id }} | |
- name: Install Java | |
uses: actions/setup-java@v3.8.0 | |
with: | |
distribution: 'zulu' | |
java-version: '8' | |
- name: Install Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
cache-read-only: false | |
- name: run goPostCommitDataflowARM test | |
run: ./gradlew :goPostCommitDataflowARM |