Skip to content

Commit

Permalink
disable matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow committed Jan 28, 2025
1 parent 5797884 commit c9a3801
Showing 1 changed file with 3 additions and 11 deletions.
14 changes: 3 additions & 11 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,34 +9,26 @@ jobs:

runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
java: [11, 17]
module:
- org.matsim.run
- org.matsim.episim

steps:
- uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
java-version: 11
distribution: 'temurin'
architecture: x64
cache: maven

- name: Test module
run: mvn -Dtest=${{matrix.module}}.** test --batch-mode -Dmatsim.preferLocalDtds=true -Dmaven.javadoc.skip -e
run: mvn test --batch-mode -Dmatsim.preferLocalDtds=true -Dmaven.javadoc.skip -e

- name: Generate reports
run: mvn site:site --batch-mode

- name: Archive reports
uses: actions/upload-artifact@v4
with:
name: maven-site-${{ matrix.java }}-${{ matrix.module }}
name: maven-site
path: target/site/

env:
Expand Down

0 comments on commit c9a3801

Please sign in to comment.