-
Notifications
You must be signed in to change notification settings - Fork 1
128 lines (128 loc) · 4.46 KB
/
ci.yaml
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
name: jersey-netty-cdi-jackson-file-eventstore
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
inputs:
git-ref:
description: Git Ref (Optional)
required: false
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache jersey-netty-cdi-jackson-file-eventstore mvn
id: jersey-netty-cdi-jackson-file-eventstore-mvn
uses: actions/cache@v2
with:
path: |
~/.m2/repository
!~/.m2/repository/com/gituhb/daggerok
key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }}
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cleanup local system cache
run: sudo rm -rf ~/.m2/repository/com/github/daggerok
- run: ./mvnw -B dependency:resolve-plugins dependency:resolve
- run: ./mvnw
spotbugs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache jersey-netty-cdi-jackson-file-eventstore mvn
id: jersey-netty-cdi-jackson-file-eventstore-mvn
uses: actions/cache@v2
with:
path: |
~/.m2/repository
!~/.m2/repository/com/gituhb/daggerok
key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }}
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cleanup local system cache
run: sudo rm -rf ~/.m2/repository/com/github/daggerok
- run: ./mvnw -B dependency:resolve-plugins dependency:resolve
- run: ./mvnw spotbugs:check
display-property-updates:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache jersey-netty-cdi-jackson-file-eventstore mvn
id: jersey-netty-cdi-jackson-file-eventstore-mvn
uses: actions/cache@v2
with:
path: |
~/.m2/repository
!~/.m2/repository/com/gituhb/daggerok
key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }}
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cleanup local system cache
run: sudo rm -rf ~/.m2/repository/com/github/daggerok
- run: ./mvnw -B dependency:resolve-plugins dependency:resolve
- run: ./mvnw versions:display-property-updates
javadoc:
if: github.event.inputs.git-ref != ''
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache jersey-netty-cdi-jackson-file-eventstore mvn
id: jersey-netty-cdi-jackson-file-eventstore-mvn
uses: actions/cache@v2
with:
path: |
~/.m2/repository
!~/.m2/repository/com/gituhb/daggerok
key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }}
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cleanup local system cache
run: sudo rm -rf ~/.m2/repository/com/github/daggerok
- run: ./mvnw -B dependency:resolve-plugins dependency:resolve
- name: Build javadoc
run: ./mvnw javadoc:javadoc
docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache jersey-netty-cdi-jackson-file-eventstore
id: jersey-netty-cdi-jackson-file-eventstore
uses: actions/cache@v2
with:
path: |
~/.gems
~/.bundle
~/.m2/repository
!~/.m2/repository/com/gituhb/daggerok
key: ${{ runner.os }}-${{ hashFiles('**/pom.xml') }}
- name: Set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Cleanup local system cache
run: sudo rm -rf ~/.m2/repository/com/github/daggerok
- run: ./mvnw -B dependency:resolve-plugins dependency:resolve
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.6'
- run: ./mvnw -Dbundle=`which bundle` -P gem-install
- run: ./mvnw -Dbundle=`which bundle` -P bundle-update-jekyll
- run: ./mvnw -Dbundle=`which bundle` -P bundle-install
- run: ./mvnw -Dbundle=`which bundle` -P jekyll-search
- run: ./mvnw -Dbundle=`which bundle` -P jekyll-build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.0
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/_site # The folder the action should deploy.