-
-
Notifications
You must be signed in to change notification settings - Fork 309
30 lines (30 loc) · 716 Bytes
/
build.yml
File metadata and controls
30 lines (30 loc) · 716 Bytes
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
name: Build Waterfall
on:
push:
branches:
- master
- actions #temp
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11, 17, 21]
fail-fast: true
steps:
- uses: actions/checkout@v4
- name: Install Java ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'zulu'
- name: patch
run: |
git config --global user.email "no-reply@github.com"
git config --global user.name "Github Actions"
./waterfall p
- name: build
run: mvn clean install javadoc:javadoc -B