Dep updates #7257
Workflow file for this run
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: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: [21-jdk] | |
runs-on: ubuntu-24.04 | |
container: | |
image: eclipse-temurin:${{ matrix.java }} | |
options: --user root | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./gradlew build javadocJar checkMappings --stacktrace --warning-mode fail | |
- run: ./gradlew formatMappings --stacktrace --warning-mode fail | |
- name: Check mapping format | |
run: | | |
git add -A | |
git status | |
if [ -n "$(git status --porcelain)" ]; then exit 1; fi | |
- name: Build artifacts | |
if: ${{ matrix.java == '21-jdk' }} | |
continue-on-error: true | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Artifacts | |
path: build/libs/ | |
test-build-logic: | |
runs-on: ubuntu-24.04 | |
container: | |
image: eclipse-temurin:21-jdk | |
options: --user root | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: gradle/actions/wrapper-validation@v4 | |
- run: ./gradlew :filament:build |