-
Notifications
You must be signed in to change notification settings - Fork 0
100 lines (87 loc) · 2.78 KB
/
main.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
name: Main branch CI
on:
pull_request:
branches:
- main
push:
branches:
- main
schedule:
- cron: '40 6 * * 0'
jobs:
codeql:
name: CodeQL Analysis
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
check-libraries:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
secrets:
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }}
lint-report:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
terraform-check:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
static-analysis:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
unit-tests-with-coverage:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
build:
needs:
- lint-report
- static-analysis
- unit-tests-with-coverage
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
secrets: inherit
integration-test:
needs:
- build
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
publish-charm:
name: Publish Charm
needs:
- lint-report
- static-analysis
- unit-tests-with-coverage
- integration-test
if: ${{ github.ref_name == 'main' }}
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
track-name: 1.6
secrets:
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }}
publish-charm-on-push:
name: Publish Developer Charm To Branch
needs:
- lint-report
- static-analysis
- unit-tests-with-coverage
- integration-test
if: ${{ (github.ref_name != 'main') && (github.event_name == 'push') }}
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
branch-name: ${{ github.ref_name }}
track-name: 1.6
secrets:
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }}
lib-needs-publishing:
runs-on: ubuntu-24.04
outputs:
needs-publishing: ${{ steps.changes.outputs.fiveg_nrf }}
steps:
- uses: actions/checkout@v4
- uses: dorny/paths-filter@v3
id: changes
with:
filters: |
fiveg_nrf:
- 'lib/charms/sdcore_nrf_k8s/v0/fiveg_nrf.py'
publish-lib:
name: Publish Lib
needs:
- publish-charm
- lib-needs-publishing
if: ${{ github.ref_name == 'main' }} && ${{ needs.changes.outputs.needs-publishing == 'true' }}
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
lib-name: "charms.sdcore_nrf_k8s.v0.fiveg_nrf"
secrets:
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }}