Skip to content

PreCommit SQL Java11 #31

PreCommit SQL Java11

PreCommit SQL Java11 #31

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: PreCommit SQL Java11
on:
push:
tags: ['v*']
branches: ['master', 'release-*']
paths: ['sdks/java/extensions/sql/**','.github/workflows/beam_PreCommit_SQL_Java11.yml']
pull_request_target:
branches: ['master', 'release-*']
paths: [sdks/java/extensions/sql/**]
issue_comment:
types: [created]
schedule:
- cron: '0 */6 * * *'
workflow_dispatch:
# This allows a subsequently queued workflow run to interrupt previous runs
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.sha || github.head_ref || github.ref }}-${{ github.event.sender.login }}-${{ github.event.schedule }}'
cancel-in-progress: true
# 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
jobs:
beam_PreCommit_SQL_Java11:
timeout-minutes: 120
if: |
github.event_name == 'push' ||
github.event_name == 'pull_request_target' ||
github.event_name == 'schedule' ||
github.event.comment.body == 'Run SQL_Java11 PreCommit'
runs-on: [self-hosted, ubuntu-20.04, main]
name: beam_PreCommit_SQL_Java11 (Run SQL_Java11 PreCommit)
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Rerun on comment
if: github.event.comment.body == 'Run SQL_Java11 PreCommit'
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: Set up Java
uses: actions/setup-java@v3.8.0
with:
distribution: 'temurin'
java-version: '11'
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: '3.8'
- name: Install Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: '3.10.4'
channel: 'stable'
- name: Build and Test
uses: ./.github/actions/gradle-command-self-hosted-action
with:
gradle-command: :sqlPreCommit
arguments: |
-PdisableSpotlessCheck=true \
-PdisableCheckStyle=true \
-PcompileAndRunTestsWithJava11 \
-PskipCheckerFramework \
-Pjava11Home=$JAVA_HOME_11_X64 \
- name: Archive JUnit Test Results
uses: actions/upload-artifact@v3
with:
name: JUnit Test Results
path: '**/build/test-results/**/*.xml'
- name: Archive SpotBugs Results
uses: actions/upload-artifact@v3
with:
name: SpotBugs Results
path: '**/build/reports/spotbugs/*.html'