-
-
Notifications
You must be signed in to change notification settings - Fork 31
171 lines (165 loc) · 4.9 KB
/
main.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
on:
push:
pull_request:
jobs:
analyse:
runs-on: ubuntu-latest
name: Analyse
strategy:
matrix:
imageBase:
- alpine-3.12.0
- ubuntu-focal-20200925
nginxVersion:
- 1.18.0
- 1.20.2
- 1.22.0
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Analyse
uses: ./.github/actions/nginx-module-toolbox
with:
entrypoint: bash ./scripts/analyse.sh
imageBase: ${{ matrix.imageBase }}
nginxVersion: ${{ matrix.nginxVersion }}
lint:
runs-on: ubuntu-latest
name: Lint
strategy:
matrix:
imageBase:
- alpine-3.12.0
- ubuntu-focal-20200925
nginxVersion:
- 1.18.0
- 1.20.2
- 1.22.0
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Lint
uses: ./.github/actions/nginx-module-toolbox
with:
entrypoint: bash ./scripts/lint.sh
imageBase: ${{ matrix.imageBase }}
nginxVersion: ${{ matrix.nginxVersion }}
build:
runs-on: ubuntu-latest
name: Build
strategy:
matrix:
imageBase:
- alpine-3.12.0
- ubuntu-focal-20200925
nginxVersion:
- 1.18.0
- 1.20.2
- 1.22.0
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
uses: ./.github/actions/nginx-module-toolbox
with:
entrypoint: bash ./scripts/build.sh
imageBase: ${{ matrix.imageBase }}
nginxVersion: ${{ matrix.nginxVersion }}
- name: Upload Artifacts
if: ${{ env.GITHUB_ACTIONS_ENVIRONMENT != 'local' }}
uses: actions/upload-artifact@v2
with:
name: nginx-${{ matrix.imageBase }}-${{ matrix.nginxVersion }}
path: bin
test:
runs-on: ubuntu-latest
name: Test
needs: build
strategy:
matrix:
imageBase:
- alpine-3.12.0
- ubuntu-focal-20200925
nginxVersion:
- 1.18.0
- 1.20.2
- 1.22.0
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download Artifacts
if: ${{ env.GITHUB_ACTIONS_ENVIRONMENT != 'local' }}
uses: actions/download-artifact@v2
with:
name: nginx-${{ matrix.imageBase }}-${{ matrix.nginxVersion }}
path: bin
- name: Test
uses: ./.github/actions/nginx-module-toolbox
with:
entrypoint: bash ./scripts/test.sh
imageBase: ${{ matrix.imageBase }}
nginxVersion: ${{ matrix.nginxVersion }}
leak:
runs-on: ubuntu-latest
name: Leak Check
needs: build
strategy:
matrix:
imageBase:
- alpine-3.12.0
- ubuntu-focal-20200925
nginxVersion:
- 1.18.0
- 1.20.2
- 1.22.0
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download Artifacts
if: ${{ env.GITHUB_ACTIONS_ENVIRONMENT != 'local' }}
uses: actions/download-artifact@v2
with:
name: nginx-${{ matrix.imageBase }}-${{ matrix.nginxVersion }}
path: bin
- name: Leak Check
uses: ./.github/actions/nginx-module-toolbox
with:
entrypoint: bash ./scripts/leak.sh
imageBase: ${{ matrix.imageBase }}
nginxVersion: ${{ matrix.nginxVersion }}
tag:
runs-on: ubuntu-latest
name: Tag
needs: [analyse, build, leak, lint, test]
if: ${{ github.ref == 'refs/heads/master' && github.event_name == 'push' && (success() || failure()) }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Check semver bump
id: check-semver
run: |
if [[ "${{ github.event.head_commit.message }}" =~ ^Merge\ pull\ request\ #[0-9]+\ from\ [^/]+/patch/.+$ ]]; then
echo ::set-output name=semver::patch
elif [[ "${{ github.event.head_commit.message }}" =~ ^Merge\ pull\ request\ #[0-9]+\ from\ [^/]+/major/.+$ ]]; then
echo ::set-output name=semver::major
else
echo ::set-output name=semver::minor
fi
- name: Bump major version and push tag
if: ${{ steps.check-semver.outputs.semver == 'major' }}
uses: anothrNick/[email protected]
env:
DEFAULT_BUMP: major
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Bump minor version and push tag
if: ${{ steps.check-semver.outputs.semver == 'minor' }}
uses: anothrNick/[email protected]
env:
DEFAULT_BUMP: minor
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Bump patch version and push tag
if: ${{ steps.check-semver.outputs.semver == 'patch' }}
uses: anothrNick/[email protected]
env:
DEFAULT_BUMP: patch
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}