-
Notifications
You must be signed in to change notification settings - Fork 344
300 lines (277 loc) · 9.69 KB
/
tpv2.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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
name: Experimental Traffic Portal v2
env:
# alpine:3.13
ALPINE_VERSION: sha256:08d6ca16c60fe7490c03d10dc339d9fd8ea67c6466dea8d558526b1330a85930
NODE_VERSION: 20
on:
push:
paths:
- experimental/traffic-portal/**
- .github/workflows/tpv2.yml
- .github/actions/tpv2-integration-tests
- lib/go-tc/**
- '!**_test.go'
- traffic_ops/app/db/**
- traffic_ops/traffic_ops_golang/**.go
pull_request:
paths:
- experimental/traffic-portal/**
- .github/workflows/tpv2.yml
- .github/actions/tpv2-integration-tests
- '!**_test.go'
- lib/go-tc/**
- traffic_ops/app/db/**
- traffic_ops/traffic_ops_golang/**.go
types: [opened, reopened, ready_for_review, synchronize]
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache node modules
id: restore-npm-cache
uses: actions/cache@v3
with:
path: ./experimental/traffic-portal/node_modules
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-${{ hashFiles('./experimental/traffic-portal/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}.x
- name: NPM install
if: steps.restore-npm-cache.cache-hit != 'true'
run: |
cd experimental/traffic-portal/
npm ci
- name: Build
run: |
cd experimental/traffic-portal/
npm run build:ssr
lint:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache node modules
id: restore-npm-cache
uses: actions/cache@v3
with:
path: ./experimental/traffic-portal/node_modules
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-${{ hashFiles('./experimental/traffic-portal/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}.x
- name: NPM install
if: steps.restore-npm-cache.cache-hit != 'true'
run: |
cd experimental/traffic-portal/
npm ci
- name: Lint
run: |
cd experimental/traffic-portal/
npm run lint
unit-tests:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache node modules
id: restore-npm-cache
uses: actions/cache@v3
with:
path: ./experimental/traffic-portal/node_modules
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-${{ hashFiles('./experimental/traffic-portal/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}.x
- name: Install latest Chrome
run: sudo apt-get update && sudo apt-get install google-chrome-stable
- name: NPM install
if: steps.restore-npm-cache.cache-hit != 'true'
run: |
cd experimental/traffic-portal/
npm ci
- name: Test
run: |
cd experimental/traffic-portal/
npm run coverage:ci
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
files: ${{ github.workspace }}/experimental/traffic-portal/coverage/traffic-portal/cobertura-coverage.xml
flags: traffic_portal_v2,unit_tests
end-to-end-tests:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
env:
PGUSER: traffic_ops
PGPASSWORD: twelve
PGHOST: localhost
PGDATABASE: traffic_ops
PGPORT: 5432
services:
postgres:
image: postgres:13
env:
POSTGRES_USER: traffic_ops
POSTGRES_PASSWORD: twelve
POSTGRES_DB: traffic_ops
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
smtp:
image: maildev/maildev:2.0.0-beta3
ports:
- 25:25
options: >-
--entrypoint=bin/maildev
--user=root
--health-cmd="sh -c \"[[ \$(wget -qO- http://smtp/healthz) == true ]]\""
--
maildev/maildev:2.0.0-beta3
--smtp=25
--hide-extensions=STARTTLS
--web=80
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Cache Alpine Docker image
uses: actions/cache@v3
with:
path: ${{ github.workspace }}/docker-images
key: docker-images/alpine@${{ env.ALPINE_VERSION }}.tar.gz
- name: Import cached Alpine Docker image
run: .github/actions/save-alpine-tar/entrypoint.sh load ${{ env.ALPINE_VERSION }}
- name: Cache node modules
id: restore-npm-cache
uses: actions/cache@v3
with:
path: ./experimental/traffic-portal/node_modules
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-${{ hashFiles('./experimental/traffic-portal/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-modules-
- name: Initialize Traffic Ops Database
id: todb
uses: ./.github/actions/todb-init
- name: Initialize Traffic Vault Database
id: tvdb
uses: ./.github/actions/tvdb-init
- name: Check Go Version
run: echo "value=$(cat GO_VERSION)" >> $GITHUB_OUTPUT
id: go-version
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ steps.go-version.outputs.value }}
- name: Build Traffic Ops
run: |
cd "${GITHUB_WORKSPACE}/traffic_ops/traffic_ops_golang"
go build .
# Setup
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install postgresql-client gettext-base
- name: Hash TO user password
env:
PYTHONPATH: traffic_ops/install/bin
run: |2
password_hash="$(<<PYTHON_COMMANDS python
from _postinstall import hash_pass
print(hash_pass('${{ env.PGPASSWORD }}12'))
PYTHON_COMMANDS
)" &&
echo "TO_USER_PASSWORD_HASH=${password_hash}" >> '${{ github.env }}'
- name: Create admin user
run: |2
<<QUERY psql
INSERT INTO tm_user (username, role, tenant_id, local_passwd)
VALUES ('admin', (
SELECT id
FROM "role"
WHERE "name" = 'admin'
), (
SELECT id
FROM tenant
WHERE "name" = 'root'
), '${{ env.TO_USER_PASSWORD_HASH }}');
QUERY
- name: Create SSL Certificates and AES key
run: |
set -o pipefail
openssl rand 32 | base64 | tee "${GITHUB_WORKSPACE}/aes.key" &&
openssl req -new -x509 -nodes -newkey rsa:4096 -out traffic_ops/traffic_ops_golang/localhost.crt -keyout traffic_ops/traffic_ops_golang/localhost.key -subj "/CN=tptests"
- name: NPM install
if: steps.restore-npm-cache.cache-hit != 'true'
run: |
cd experimental/traffic-portal
npm ci
- name: Build TPv2
run: |
cd experimental/traffic-portal
npx ng build
- name: Run everything and test
uses: ./.github/actions/tpv2-integration-tests
- name: Upload Report
uses: actions/upload-artifact@v3
if: always()
with:
name: ${{ github.job }}
path: |
traffic_ops/traffic_ops_golang/out.log
experimental/traffic-portal/logs
experimental/traffic-portal/cypress/screenshots
- name: Save Alpine Docker image
run: .github/actions/save-alpine-tar/entrypoint.sh save ${{ env.ALPINE_VERSION }}
pkg-build:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@main
with:
fetch-depth: 5
- name: Cache node modules
uses: actions/cache@v2
with:
path: ${{ github.workspace }}/.npm
key: ${{ runner.os }}-node-${{ env.NODE_VERSION }}-${{ hashFiles('./experimental/traffic-portal/package-lock.json') }}
- name: Node ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: Build RPM
uses: ./.github/actions/build-rpms
env:
ATC_COMPONENT: traffic_portal_v2
- name: Upload RPM
uses: actions/upload-artifact@v2
with:
name: ${{ github.job }}
path: ${{ github.workspace }}/dist/${{ github.job }}-*.rpm