-
Notifications
You must be signed in to change notification settings - Fork 1
203 lines (195 loc) · 6.56 KB
/
build-pr.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
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
name: Pull request
on:
workflow_dispatch:
merge_group:
pull_request:
types: [ opened, synchronize, reopened, ready_for_review ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
ktlint:
name: Ktlint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
cache: 'maven'
- name: Kjør ktlint
env:
GITHUB_USERNAME: x-access-token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
mvn -B --no-transfer-progress antrun:run@ktlint
enhetstester:
name: Enhetstester
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
cache: 'maven'
- name: Kjør enhetstester
env:
GITHUB_USERNAME: x-access-token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
mvn verify -B --no-transfer-progress --settings .m2/maven-settings.xml --file pom.xml -DexcludedGroups=integration,verdikjedetest -Pjacoco -DjacocoTestDirectory=UT
- name: Last opp Jacoco UT rapport
uses: actions/upload-artifact@v4
with:
name: jacocoUT
path: target/jacoco/UT/jacoco.xml
retention-days: 1
overwrite: true
integrasjonstester:
name: Integrasjonstester
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
cache: 'maven'
- name: Kjør integrasjonstester
env:
GITHUB_USERNAME: x-access-token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
mvn verify -B --no-transfer-progress --settings .m2/maven-settings.xml --file pom.xml -Dgroups=integration -DexcludedGroups=verdikjedetest -Dsurefire.rerunFailingTestsCount=2 -Pjacoco -DjacocoTestDirectory=IT
- name: Last opp Jacoco IT rapport
uses: actions/upload-artifact@v4
with:
name: jacocoIT
path: target/jacoco/IT/jacoco.xml
retention-days: 1
overwrite: true
sonar:
if: github.actor != 'dependabot[bot]'
name: Sonar
runs-on: ubuntu-latest-8-cores
needs: [ enhetstester, integrasjonstester ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
cache: 'maven'
- name: Last ned Jacoco UT rapport
uses: actions/download-artifact@v4
with:
name: jacocoUT
path: jacoco/UT
- name: Last ned Jacoco IT rapport
uses: actions/download-artifact@v4
with:
name: jacocoIT
path: jacoco/IT
- name: Cache Sonar packages
uses: actions/cache@v4
with:
path: ~/.sonar/cache
key: ${{ runner.os }}-sonar
restore-keys: ${{ runner.os }}-sonar
- name: Kjør Sonar
env:
GITHUB_USERNAME: x-access-token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: |
mvn sonar:sonar -Dsonar.coverage.jacoco.xmlReportPaths="jacoco/UT/jacoco.xml,jacoco/IT/jacoco.xml"
verdikjedetesterFeatureToggleOff:
name: Verdikjedetester m/ feature toggles slått av
permissions:
contents: "read"
id-token: "write"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
cache: 'maven'
- name: Checkout mock-server
uses: actions/checkout@v4
with:
ref: "main"
repository: navikt/familie-mock-server
token: ${{ secrets.READER_TOKEN }}
path: familie-mock-server
- name: 🔧💻 Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
cache-dependency-path: familie-mock-server/yarn.lock
registry-url: "https://npm.pkg.github.com"
- name: 🧶📥 Yarn install
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: cd familie-mock-server; yarn --prefer-offline --frozen-lockfile
- name: 🧶📥 Yarn start
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: cd familie-mock-server; yarn start:dev &
- name: Kjør verdikjedetester m/ feature toggles slått av
env:
GITHUB_USERNAME: x-access-token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
mvn -B --no-transfer-progress verify --settings .m2/maven-settings.xml --file pom.xml -DargLine="-DmockFeatureToggleAnswer=false -DbrukLokalMockserver=true" -Dgroups=verdikjedetest
verdikjedetesterFeatureToggleOn:
name: Verdikjedetester m/ feature toggles slått på
permissions:
contents: "read"
id-token: "write"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
cache: 'maven'
- name: Checkout mock-server
uses: actions/checkout@v4
with:
ref: "main"
repository: navikt/familie-mock-server
token: ${{ secrets.READER_TOKEN }}
path: familie-mock-server
- name: 🔧💻 Setup node
uses: actions/setup-node@v4
with:
node-version: '20'
cache: yarn
cache-dependency-path: familie-mock-server/yarn.lock
registry-url: "https://npm.pkg.github.com"
- name: 🧶📥 Yarn install
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: cd familie-mock-server; yarn --prefer-offline --frozen-lockfile
- name: 🧶📥 Yarn start
env:
NODE_AUTH_TOKEN: ${{ secrets.READER_TOKEN }}
run: cd familie-mock-server; yarn start:dev &
- name: Kjør verdikjedetester m/ feature toggles slått på
env:
GITHUB_USERNAME: x-access-token
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
mvn -B --no-transfer-progress verify --settings .m2/maven-settings.xml --file pom.xml -DargLine="-DmockFeatureToggleAnswer=true -DbrukLokalMockserver=true" -Dgroups=verdikjedetest