-
Notifications
You must be signed in to change notification settings - Fork 1
56 lines (51 loc) · 1.46 KB
/
push.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
# GitHub Actions workflow for commits pushed to the jolt-jni repo - all branches
name: CI at GitHub
on: [push]
jobs:
MacOS-13:
if: contains(toJson(github.event.commits), '[ci skip] ') == false
runs-on: macOS-13
timeout-minutes: 9
steps:
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- uses: actions/checkout@v4
- run: ./gradlew run --console=plain
MacOS-14:
if: contains(toJson(github.event.commits), '[ci skip] ') == false
runs-on: macOS-14
timeout-minutes: 9
steps:
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- uses: actions/checkout@v4
- run: ./gradlew run --console=plain
Windows:
if: contains(toJson(github.event.commits), '[ci skip] ') == false
runs-on: windows-2022
timeout-minutes: 9
steps:
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- uses: actions/checkout@v4
- run: ./gradlew run --console=plain
shell: bash
Linux:
if: contains(toJson(github.event.commits), '[ci skip] ') == false
runs-on: ubuntu-24.04
timeout-minutes: 9
steps:
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 21
- uses: actions/checkout@v4
- uses: gradle/actions/wrapper-validation@v3
- run: ./gradlew run --console=plain