Skip to content

Commit

Permalink
Run ci on windows and macos
Browse files Browse the repository at this point in the history
  • Loading branch information
jvalkeal committed May 2, 2024
1 parent 10314ff commit aaa7d87
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,21 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
include:
- nickname: linux jdk17
java: 17
disable-samples: true
os: ubuntu-latest
- nickname: macos jdk17
java: 17
os: macos-latest
- nickname: windows jdk17
java: 17
os: windows-latest
name: CI PR ${{ matrix.nickname }}
steps:
- uses: actions/checkout@v3
Expand All @@ -23,6 +29,4 @@ jobs:
java-version: ${{ matrix.java }}
cache: gradle
- name: Build
env:
DISABLE_SAMPLES: ${{ matrix.disable-samples }}
run: ./gradlew build
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,20 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- nickname: linux jdk17
java: 17
os: ubuntu-latest
- nickname: macos jdk17
java: 17
os: macos-latest
- nickname: windows jdk17
java: 17
os: windows-latest
name: CI Build ${{ matrix.nickname }}
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit aaa7d87

Please sign in to comment.