-
Notifications
You must be signed in to change notification settings - Fork 0
28 lines (28 loc) · 960 Bytes
/
ci-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
name: Continuous Integration (Main Branch)
on:
push:
# run CI on any push to the main branch
branches:
- main
jobs:
# run per commit ci checks against main branch
lint-checks:
uses: ./.github/workflows/ci-lint.yml
# run default ci checks against main branch
default-checks:
uses: ./.github/workflows/ci-default.yml
# run e2e testing ci for internal testnet checks against main branch
e2e-tests:
needs: [lint-checks, default-checks]
uses: ./.github/workflows/ci-e2e-tests.yml
# run e2e testing without metrics db ci for internal testnet checks against main branch
e2e-no-metrics-tests:
needs: [lint-checks, default-checks]
uses: ./.github/workflows/ci-e2e-no-metrics-tests.yml
# build, tag and publish new service docker images
release-docker-images:
needs: [e2e-tests]
uses: ./.github/workflows/ci-docker-release.yml
with:
dockerhub-username: kavaops
secrets: inherit