-
Notifications
You must be signed in to change notification settings - Fork 2
69 lines (52 loc) · 1.45 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
57
58
59
60
61
62
63
64
65
66
67
68
69
# Build workflow
name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Validate wrapper to prevent potential supply chain attack
gradle-wrapper-validation:
# Run on Ubuntu which consumes less minutes
runs-on: ubuntu-latest
name: Validate Gradle wrapper
steps:
- uses: actions/checkout@v4
- uses: gradle/actions/wrapper-validation@v4
build:
# Many tests only pass on Windows
runs-on: windows-latest
strategy:
matrix:
java: [ '11', '21' ]
name: Java ${{ matrix.java }} build
steps:
- uses: actions/checkout@v4
# Set JDK
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
# Build
- name: Build with Gradle
run: >-
./gradlew build
# Upload test artifact
- name: Upload test output
uses: actions/upload-artifact@v4
if: ${{ failure() }}
with:
name: test-output-${{ matrix.java }}
path: |
echosvg-test/build/reports/tests/test/
test-references/samples/**/candidate-variation/*
retention-days: 15
overwrite: true
# Generate modular javadocs
- name: Modular javadocs
if: ${{ success() }}
run: ./gradlew modularJavadoc