This repository has been archived by the owner on Jan 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (58 loc) · 1.82 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
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
name: Bygg og deploy
on:
push:
branches:
- '**'
paths-ignore:
- '**.md'
- '**.MD'
- '.gitignore'
- '.editorconfig'
- '.java-version'
- 'LICENCE'
- 'CODEOWNERS'
jobs:
build-app:
name: Build
uses: navikt/fp-gha-workflows/.github/workflows/build-app.yml@main
with:
sonar-scan: true
build-image: ${{ github.ref_name == 'master' }} # default: true
push-image: ${{ github.ref_name == 'master' }} # default: false
secrets: inherit
verdikjede:
name: Verdikjedetester
if: github.ref_name == 'master'
needs: build-app
uses: navikt/fp-autotest/.github/workflows/autotest.yml@master
with:
build-version: ${{ needs.build-app.outputs.build-version }}
test-suite: verdikjede
secrets: inherit
notify:
name: Notify
if: github.ref_name == 'master' && (success() || failure()) && !contains(needs.*.result, 'skipped')
needs: [build-app, verdikjede]
uses: navikt/fp-autotest/.github/workflows/report-and-notify.yml@master
with:
verdikjede: ${{ needs.verdikjede.outputs.resultat }}
build-version: ${{ needs.build-app.outputs.build-version }}
secrets: inherit
deploy-dev:
name: Deploy dev
if: github.ref_name == 'master'
needs: [build-app, verdikjede]
uses: navikt/fp-gha-workflows/.github/workflows/deploy.yml@main
with:
image: ghcr.io/${{ github.repository }}:${{ needs.build-app.outputs.build-version }}
cluster: dev-fss
secrets: inherit
deploy-prod:
name: Deploy prod
if: github.ref_name == 'master'
needs: [build-app, verdikjede, deploy-dev]
uses: navikt/fp-gha-workflows/.github/workflows/deploy.yml@main
with:
image: ghcr.io/${{ github.repository }}:${{ needs.build-app.outputs.build-version }}
cluster: prod-fss
secrets: inherit