-
-
Notifications
You must be signed in to change notification settings - Fork 0
68 lines (57 loc) · 1.73 KB
/
daily-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
name: Daily build
on:
schedule:
- cron: '0 */12 * * *'
jobs:
macos-build:
runs-on: macos-latest
timeout-minutes: 30
steps:
- name: Prepare git
run: git config --global core.autocrlf false
- name: Checkout repository
uses: actions/checkout@v1
with:
submodules: "recursive"
fetch-depth: 2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Make Maven Wrapper executable
if: contains(matrix.os, 'win') == false
run: |
chmod +x ./mvnw
- name: Build with Maven
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
timeout-minutes: 20
run: |
./mvnw clean package --errors --batch-mode --lax-checksums -DskipTests=true -P"non_module_java","test-jar","dev"
windows-build:
runs-on: windows-latest
timeout-minutes: 30
steps:
- name: Prepare git
run: git config --global core.autocrlf false
- name: Checkout repository
uses: actions/checkout@v1
with:
submodules: "recursive"
fetch-depth: 2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Make Maven Wrapper executable
if: contains(matrix.os, 'win') == false
run: |
chmod +x ./mvnw
- name: Build with Maven
env:
packageUser: ${{ github.actor }}
packagePAT: ${{ secrets.GITHUB_TOKEN }}
timeout-minutes: 20
run: |
./mvnw clean package --errors --batch-mode --lax-checksums -DskipTests=true -P"non_module_java","test-jar","xsd","dev"