Webrepl fixes #222
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: Maven PR Build | |
# We require all commits go through PR on GitHub | |
on: | |
pull_request: | |
branches: | |
- webrepl | |
jobs: | |
build: | |
name: Maven PR Builder (JDK ${{ matrix.java }}) | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ "21" ] | |
maven: [ "3.8.2" ] | |
steps: | |
- name: Check out code | |
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # v3.0.2 | |
with: | |
fetch-depth: 0 # Unshallow checkout helps SonarCloud provide more info | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf # v3.2.0 | |
with: | |
platforms: all | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@c47758b77c9736f4b2ef4073d4d51994fabfe349 # v3.7.1 | |
- name: Install JDK ${{ matrix.java }} | |
uses: actions/setup-java@860f60056505705214d223b91ed7a30f173f6142 # v3.3.0 | |
with: | |
cache: maven | |
distribution: 'adopt' | |
java-version: ${{ matrix.java }} | |
# If running locally in act, install Maven | |
- name: Set up Maven if needed | |
if: ${{ env.ACT }} | |
uses: stCarolas/setup-maven@07fbbe97d97ef44336b7382563d66743297e442f # v4.5 | |
with: | |
maven-version: ${{ matrix.maven }} | |
- name: Cache SonarCloud packages | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: ~/.sonar/cache | |
key: ${{ runner.os }}-sonar | |
restore-keys: ${{ runner.os }}-sonar | |
- name: Build with Maven | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
DOCKER_BUILDKIT: 1 | |
run: mvn -B -ntp -Psonar verify -Dsonar.branch.name="${{ github.ref }}" |