Skip to content

Commit

Permalink
add windows builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Athou committed Aug 12, 2024
1 parent fa5776c commit 7a4e299
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ on: [ push ]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: [ "ubuntu-latest", "windows-latest" ]
database: [ "h2", "postgresql", "mysql", "mariadb" ]
runs-on: ${{ matrix.os }}

steps:
# Checkout
Expand Down Expand Up @@ -35,7 +36,7 @@ jobs:

# Build & Test
- name: Build with Maven
run: mvn --batch-mode --no-transfer-progress install -Pnative -P${{ matrix.database }}
run: mvn --batch-mode --no-transfer-progress install -Pnative -P${{ matrix.database }} -DskipTests=${{ runner.os == 'Windows' && matrix.database != 'h2' }}

# Upload artifacts
- name: Upload cross-platform app
Expand Down

0 comments on commit 7a4e299

Please sign in to comment.