-
Notifications
You must be signed in to change notification settings - Fork 2
56 lines (44 loc) · 1.07 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
51
52
53
54
55
56
name: build
env:
GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false -Dkotlin.incremental=false"
on:
push:
paths-ignore:
- '**.md'
branches:
- master
pull_request:
paths-ignore:
- '**.md'
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v3
with:
java-version: 21
distribution: zulu
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: build
run: ./gradlew build
- name: archive vgo test results
uses: actions/upload-artifact@v4
with:
name: vgo_test_results
path: vgo/build/reports/tests/test/
- name: archive vgo core test results
uses: actions/upload-artifact@v4
with:
name: vgo_core_test_results
path: vgo-core/build/reports/tests/test/
- name: release binary
run: ./gradlew binary
- name: archive vgo
uses: actions/upload-artifact@v4
with:
name: vgo
path: vgo/build/libs/vgo