-
Notifications
You must be signed in to change notification settings - Fork 42
82 lines (63 loc) · 2.05 KB
/
pull_request.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
name: Build Artifacts
on: pull_request
env:
GRADLE_OPTS: -Dorg.gradle.daemon=false -Dorg.gradle.jvmargs="-Xmx5g -XX:+HeapDumpOnOutOfMemoryError -XX:+UseParallelGC -XX:MaxMetaspaceSize=1g -Dfile.encoding=UTF-8"
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
jvm_target: [ '1.8', '11', '17' ]
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Build and test with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: -PjvmTargetVersion=${{ matrix.jvm_target }} build --scan --stacktrace -x apiCheck
- name: Upload reports
uses: actions/upload-artifact@v3
with:
name: 'reports-${{ matrix.os }}'
path: '**/build/reports/**'
update_api:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Build
uses: gradle/gradle-build-action@v2
with:
arguments: apiDump
- name: Stop Gradle daemons
run: ./gradlew --stop
- name: "Commit new API files"
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update API files
file_pattern: /**/api/*.api
build_documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Create API Doc and validate, step 1"
run: ./gradlew buildMetaDoc
- name: "Create API Doc and validate, step 2"
run: ./gradlew :arrow-meta:dokkaJekyll # :arrow-meta-docs:runAnk
- name: "Build"
env:
JEKYLL_ENV: production
run: |
sudo gem install bundler
bundle config set --local path 'vendor/bundle'
sudo bundle install --gemfile docs/Gemfile
BUNDLE_GEMFILE=docs/Gemfile bundle exec jekyll build -b /docs/meta -s docs/docs -d docs/build