-
Notifications
You must be signed in to change notification settings - Fork 4
31 lines (31 loc) · 1.03 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
name: build
on:
push:
schedule:
- cron: '0 0 10 * *'
jobs:
build-20-8:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: sudo apt-get update && sudo apt-get install openjdk-8-jdk maven && mvn clean install --batch-mode
build-20-11:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: sudo apt-get update && sudo apt-get install openjdk-11-jdk maven && mvn clean install --batch-mode
build-22-8:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- run: sudo apt-get update && sudo apt-get install openjdk-8-jdk maven && mvn clean install --batch-mode
build-22-11:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- run: sudo apt-get update && sudo apt-get install openjdk-11-jdk maven && mvn clean install --batch-mode
build-22-17:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v1
- run: sudo apt-get update && sudo apt-get install openjdk-17-jdk maven && mvn clean install --batch-mode