Skip to content

build: bump Gradle Shadow Plugin to 8.1.8 #338

build: bump Gradle Shadow Plugin to 8.1.8

build: bump Gradle Shadow Plugin to 8.1.8 #338

Workflow file for this run

name: Tanzawa-CI
on: [push, pull_request, workflow_dispatch]
jobs:
Build:
runs-on: ubuntu-latest
permissions:
checks: write
timeout-minutes: 30
defaults:
run:
shell: bash
env:
JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8
steps:
- name: Setup_Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '11'
- name: Checkout
uses: actions/checkout@v4
- name: Assemble
run: |
./gradlew -i tgsql:core:showTsubakuroManifest clean assemble --warning-mode all
- name: Check
run: |
./gradlew -i check --continue --warning-mode all
- name: Verify
uses: project-tsurugi/tsurugi-annotations-action@v1
if: always()
with:
junit_input: '**/build/test-results/**/TEST-*.xml'
spotbugs_input: '**/build/reports/spotbugs/main/*.xml'
checkstyle_input: '**/build/reports/checkstyle/main.xml'
Publish:
uses: ./.github/workflows/ci-release.yml
if: github.repository_owner == 'project-tsurugi' && (contains(github.ref, '/tags/'))
needs: Build
secrets: inherit
permissions:
contents: write