forked from interuss/dss
-
Notifications
You must be signed in to change notification settings - Fork 0
69 lines (68 loc) · 1.86 KB
/
ci.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
name: Continuous integration
on:
pull_request: # All
push:
branches:
- master
jobs:
hygiene-tests:
name: Repository hygiene
runs-on: ubuntu-latest
steps:
- name: Job information
run: |
echo "Job information"
echo "Trigger: ${{ github.event_name }}"
echo "Host: ${{ runner.os }}"
echo "Repository: ${{ github.repository }}"
echo "Branch: ${{ github.ref }}"
docker images
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Python lint
run: make python-lint
- name: Automated hygiene verification
run: make hygiene
- name: Shell lint
run: make shell-lint
- name: Go lint
run: make go-lint
- name: Terraform lint
run: make terraform-lint
dss-tests:
name: DSS tests
runs-on: ubuntu-latest
steps:
- name: Job information
run: |
echo "Job information"
echo "Trigger: ${{ github.event_name }}"
echo "Host: ${{ runner.os }}"
echo "Repository: ${{ github.repository }}"
echo "Branch: ${{ github.ref }}"
docker images
go env
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Deployment infrastructure tests
run: make evaluate-tanka
- name: Go unit tests
run: make test-go-units
- name: Go unit tests with CockroachDB
run: make test-go-units-crdb
- name: Build dss image
run: make build-dss
- name: Tear down any pre-existing local DSS instance
run: make down-locally
- name: Start local DSS instance
run: make start-locally
- name: Probe local DSS instance
run: make probe-locally
- name: Run Qualifier against local DSS instance
run: make qualify-locally
- name: Bring down local DSS instance
run: make down-locally