Java PR #624
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
# Copyright 2021 Google LLC | |
# | |
# Licensed 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 | |
# | |
# https://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. | |
# Checks that are intended to run on PRs containing Java code. | |
name: Java PR | |
on: | |
pull_request: | |
branches: | |
- 'main' | |
paths: | |
- '**.java' | |
- '**.xml' | |
# Include relevant GitHub Action files for running these checks. | |
# This will make it easier to verify action changes don't break anything. | |
- '.github/actions/setup-env/*' | |
- '.github/workflows/java-pr.yml' | |
schedule: | |
- cron: "0 */12 * * *" | |
env: | |
MAVEN_OPTS: -Dorg.slf4j.simpleLogger.log.org.apache.maven.plugins.shade=error | |
permissions: read-all | |
jobs: | |
spotless_check: | |
name: Spotless | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@230611dbd0eb52da1e1f4f7bc8bb0c3a339fc8b7 | |
- name: Setup Environment | |
id: setup-env | |
uses: ./.github/actions/setup-env | |
- name: Run Spotless | |
run: ./cicd/run-spotless --changed-files="${{ steps.setup-env.outputs.changed-files }}" | |
java_build: | |
name: Build | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@230611dbd0eb52da1e1f4f7bc8bb0c3a339fc8b7 | |
- name: Setup Environment | |
id: setup-env | |
uses: ./.github/actions/setup-env | |
- name: Run Build | |
run: ./cicd/run-build --changed-files="${{ steps.setup-env.outputs.changed-files }}" | |
- name: Cleanup Java Environment | |
uses: ./.github/actions/cleanup-java-env | |
java_unit_tests: | |
name: Unit Tests | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@230611dbd0eb52da1e1f4f7bc8bb0c3a339fc8b7 | |
- name: Setup Environment | |
id: setup-env | |
uses: ./.github/actions/setup-env | |
- name: Run Unit Tests | |
run: ./cicd/run-unit-tests --changed-files="${{ steps.setup-env.outputs.changed-files }}" | |
- name: Cleanup Java Environment | |
uses: ./.github/actions/cleanup-java-env | |
java_integration_smoke_tests_templates: | |
name: Dataflow Templates Integration Smoke Tests | |
timeout-minutes: 60 | |
# Run on any runner that matches all the specified runs-on values. | |
runs-on: [self-hosted, it] | |
steps: | |
- name: Checkout Code | |
uses: actions/[email protected] | |
- name: Setup Environment | |
id: setup-env | |
uses: ./.github/actions/setup-env | |
- name: Run Integration Smoke Tests | |
run: | | |
./cicd/run-it-smoke-tests \ | |
--changed-files="${{ steps.setup-env.outputs.changed-files }}" \ | |
--it-region="us-central1" \ | |
--it-project="cloud-teleport-testing" \ | |
--it-artifact-bucket="cloud-teleport-testing-it-gitactions" | |
- name: Cleanup Java Environment | |
uses: ./.github/actions/cleanup-java-env | |
java_integration_tests_templates: | |
name: Dataflow Templates Integration Tests | |
needs: [java_integration_smoke_tests_templates] | |
timeout-minutes: 180 | |
# Run on any runner that matches all the specified runs-on values. | |
runs-on: [self-hosted, it] | |
steps: | |
- name: Checkout Code | |
uses: actions/[email protected] | |
- name: Setup Environment | |
id: setup-env | |
uses: ./.github/actions/setup-env | |
- name: Run Integration Tests | |
run: | | |
./cicd/run-it-tests \ | |
--changed-files="${{ steps.setup-env.outputs.changed-files }}" \ | |
--it-region="us-central1" \ | |
--it-project="cloud-teleport-testing" \ | |
--it-artifact-bucket="cloud-teleport-testing-it-gitactions" | |
- name: Cleanup Java Environment | |
uses: ./.github/actions/cleanup-java-env | |
java_load_tests_templates: | |
if: contains(github.event.pull_request.labels.*.name, 'run-load-tests') | |
name: Dataflow Templates Load Tests | |
needs: [spotless_check, java_build, java_unit_tests, java_integration_tests_templates] | |
timeout-minutes: 600 | |
# Run on any runner that matches all the specified runs-on values. | |
runs-on: [self-hosted, perf] | |
steps: | |
- name: Checkout Code | |
uses: actions/[email protected] | |
- name: Setup Environment | |
id: setup-env | |
uses: ./.github/actions/setup-env | |
- name: Run Load Tests | |
run: | | |
./cicd/run-load-tests \ | |
--changed-files="${{ steps.setup-env.outputs.changed-files }}" \ | |
--it-region="us-central1" \ | |
--it-project="cloud-teleport-testing" \ | |
--it-artifact-bucket="cloud-teleport-testing-it-gitactions" | |
--lt-exportDataset="performance_tests" | |
--lt-exportTable="template_performance_metrics" | |
- name: Cleanup Java Environment | |
uses: ./.github/actions/cleanup-java-env |