Skip to content

Bump actions/setup-java from 5.5.0 to 5.7.0 #405

Bump actions/setup-java from 5.5.0 to 5.7.0

Bump actions/setup-java from 5.5.0 to 5.7.0 #405

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
build:
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-22.04
eclipse: 4.12
java: 17
- os: windows-2022
eclipse: 4.12
java: 17
- os: macos-15-intel
# Even if our tests pass on macOS 15 with some older Eclipse versions
# 4.35 is the first that explicitly targets macOS 15 - see
# https://eclipse.dev/eclipse/development/plans.html?file=plans/eclipse_project_plan_4_35.xml
# https://eclipse.dev/eclipse/development/plans.html?file=plans/eclipse_project_plan_4_34.xml
eclipse: 4.35
java: 21
name: Eclipse ${{ matrix.eclipse }}, Java ${{ matrix.java }}, ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Build
shell: bash
run: |
if [[ "$RUNNER_OS" == "Linux" ]]; then
export DISPLAY=:99.0
Xvfb $DISPLAY &
fi
./mvnw -V -B -e verify -Pe${{ matrix.eclipse }} -Dtycho.executionEnvironment=JavaSE-${{ matrix.java }} -DskipUITests=false --no-transfer-progress