-
Notifications
You must be signed in to change notification settings - Fork 1
75 lines (64 loc) · 1.92 KB
/
build.yaml
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
name: build
on:
pull_request: { }
push:
branches:
- 'trunk'
tags-ignore:
- '**'
env:
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
arch: [ amd64 ]
cmake-arch: [ x86_64 ]
include:
- os: macOS-latest
arch: x86_64
cmake-arch: x86_64
- os: macOS-latest
arch: aarch64
cmake-arch: arm64
- os: windows-latest
arch: x86_64
cmake-arch: x86_64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v2
- uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 18
- run: ./gradlew build --stacktrace
if: matrix.arch == 'amd64' || matrix.arch == 'x86_64'
publish:
runs-on: macos-latest
needs:
- build
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v2
- uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: 18
- run: ./gradlew assemble dokkaHtml
- run: ./gradlew publish
if: ${{ github.ref == 'refs/heads/trunk' && github.repository == 'diglol/id' }}
env:
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.SONATYPE_NEXUS_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.SONATYPE_NEXUS_PASSWORD }}
- name: Deploy docs
if: ${{ github.ref == 'refs/heads/trunk' && github.repository == 'diglol/id' }}
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: site
FOLDER: id/build/dokka/html
TARGET_FOLDER: docs/latest/
CLEAN: true