-
Notifications
You must be signed in to change notification settings - Fork 4
50 lines (45 loc) · 1.05 KB
/
build.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
name: Build
on:
push:
branches:
- main
- 3.2.x
- 3.1.x
- 2.7.x
pull_request:
branches:
- main
- 3.2.x
- 3.1.x
- 2.7.x
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'corretto'
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew build --no-daemon --stacktrace --info
native-image-build:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Setup GraalVM
uses: graalvm/setup-graalvm@v1
with:
java-version: '17'
distribution: 'graalvm'
github-token: ${{ secrets.GITHUB_TOKEN }}
native-image-job-reports: 'true'
- name: Build native image
run: |
./gradlew nativeRun --no-daemon --stacktrace