Skip to content

[OPS] Update hadoop-common to 3.4.2 #206

[OPS] Update hadoop-common to 3.4.2

[OPS] Update hadoop-common to 3.4.2 #206

Workflow file for this run

# Copyright 2025 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
#
# 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: DWH Dumper CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: test
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout latest code
uses: actions/checkout@v5
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'temurin'
# Configure Gradle for optimal use in GitHub Actions, including caching of downloaded dependencies.
# See: https://github.com/gradle/actions/blob/main/setup-gradle/README.md
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Setup Protobuf
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Clean
run: ./gradlew -Pci clean
- name: Test Dumper
run: ./gradlew -Pci :dumper:app:build --stacktrace
- name: Test DTS transfer
run: ./gradlew -Pci :dts-transfer-status:app:build --stacktrace
- name: Test Permissions migration
run: ./gradlew -Pci :permissions-migration:app:build --stacktrace