Skip to content

deps: bump version.io.quarkus from 2.16.9.Final to 2.16.11.Final #603

deps: bump version.io.quarkus from 2.16.9.Final to 2.16.11.Final

deps: bump version.io.quarkus from 2.16.9.Final to 2.16.11.Final #603

Workflow file for this run

name: JVM and OS matrix
on:
push:
branches: [0.8.x]
pull_request:
branches: [0.8.x]
paths-ignore:
- 'LICENSE*'
- '.gitignore'
- '**.md'
- '**.adoc'
- '*.txt'
jobs:
build:
concurrency:
group: pull_request-${{ github.event_name }}-${{ github.head_ref }}-${{ matrix.os }}-${{ matrix.java-version }}
cancel-in-progress: true
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
java-version: [ 11, 17, 20 ] #Latest two LTS + latest non-LTS.
timeout-minutes: 120
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: ${{matrix.java-version}}
distribution: 'temurin'
cache: 'maven'
- name: Build and test timefold-solver
run: mvn -B -Dfull verify
native:
concurrency:
group: pull_request-${{ github.event_name }}-${{ github.head_ref }}
cancel-in-progress: true
runs-on: ubuntu-latest
timeout-minutes: 120
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Build and test timefold-solver in Native mode
run: mvn -B -Dnative verify