Skip to content

Bump org.apache.maven.plugins:maven-source-plugin from 3.2.1 to 3.3.1 #885

Bump org.apache.maven.plugins:maven-source-plugin from 3.2.1 to 3.3.1

Bump org.apache.maven.plugins:maven-source-plugin from 3.2.1 to 3.3.1 #885

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on: [push, pull_request]
jobs:
test-ibex:
runs-on: ubuntu-20.04
# The different steps
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
# Install Ibex
- name: Install ibex
run: |
sh scripts/install-ibex.sh
# Regression tests
- name: Test Ibex
run: mvn --file pom.xml test -Pcoverage -DtestFailureIgnore=true -Dgroups=ibex
test-solver:
runs-on: ubuntu-latest
# Tests matrix
strategy:
#fail-fast: false
matrix:
group: [ "1s", "10s", "checker" ]
# The different steps
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
# Regression tests
- name: Test ${{ matrix.group }}
run: mvn --file pom.xml test -Pcoverage -DtestFailureIgnore=true -Dgroups=${{ matrix.group }}
test-parser:
needs: [ test-solver ]
runs-on: ubuntu-latest
# Tests matrix
strategy:
#fail-fast: false
matrix:
group: [ "xcsp", "dimacs", "mps" ]
# The different steps
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
# Regression tests
- name: Test ${{ matrix.group }}
run: mvn --file pom.xml test -Pcoverage -DtestFailureIgnore=true -Dgroups=${{ matrix.group }}
test-mzn:
needs: [ test-solver ]
runs-on: ubuntu-latest
# Tests matrix
strategy:
#fail-fast: false
matrix:
group: [ "mzn" ]
# The different steps
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
#cache: 'maven'
# Regression tests
- name: Test ${{ matrix.group }}
run: mvn --file pom.xml test -Pcoverage -DtestFailureIgnore=true -Dgroups=${{ matrix.group }}