Skip to content

Switch from macos-13 runner to macos-15-intel #302

Switch from macos-13 runner to macos-15-intel

Switch from macos-13 runner to macos-15-intel #302

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
- os: windows-2022
eclipse: 4.12
- os: macos-15-intel
eclipse: 4.22
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # v5.0.0
with:
distribution: temurin
java-version: 17
- 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-17 -DskipUITests=false --no-transfer-progress