forked from yangxikun/opentelemetry-lua
-
Notifications
You must be signed in to change notification settings - Fork 0
114 lines (110 loc) · 3.23 KB
/
ci.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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
name: test
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
on:
push:
branches:
- "main"
- "update-ci"
pull_request:
branches:
- main
jobs:
build-openresty:
name: "Build openresty image"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v1
- uses: docker/build-push-action@v4
with:
context: .
cache-from: type=gha
cache-to: type=gha,mode=max
push: false
outputs: type=docker,dest=/tmp/openresty-image.tar
tags: opentelemetry-lua_openresty
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: openresty-image
path: /tmp/openresty-image.tar
end-to-end-tests:
name: "End to end tests"
timeout-minutes: 60
runs-on: ubuntu-latest
needs:
- build-openresty
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v1
- uses: docker/build-push-action@v4
with:
context: examples/server
cache-from: type=gha
cache-to: type=gha,mode=max
push: false
tags: opentelemetry-lua_test-server
- uses: docker/build-push-action@v4
with:
context: examples/client
cache-from: type=gha
cache-to: type=gha,mode=max
push: false
tags: opentelemetry-lua_test-client
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: openresty-image
path: /tmp
- name: Load Docker images
run: |
docker load --input /tmp/openresty-image.tar
docker image ls -a
- name: Start containers
run: make openresty-dev CONTAINER_ORCHESTRATOR_EXEC_OPTIONS="-T"
- name: Run openresty integration tests
run: make openresty-integration-test CONTAINER_ORCHESTRATOR_EXEC_OPTIONS="-T"
- name: Run openresty-test-e2e-trace-context
run: make openresty-test-e2e-trace-context CONTAINER_ORCHESTRATOR_EXEC_OPTIONS="-T"
- name: Run openresty-test-e2e
run: make openresty-test-e2e CONTAINER_ORCHESTRATOR_EXEC_OPTIONS="-T"
unit-tests:
name: "unit tests"
timeout-minutes: 60
runs-on: ubuntu-latest
needs:
- build-openresty
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: openresty-image
path: /tmp
- name: Load Docker images
run: |
docker load --input /tmp/openresty-image.tar
docker image ls -a
- name: Run busted unit tests
run: make lua-unit-test
- name: Run api tests
run: make api-test
book-keeping:
name: "Book-keeping"
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: docker/setup-buildx-action@v1
- uses: docker/build-push-action@v4
with:
context: utils
cache-from: type=gha
cache-to: type=gha,mode=max
push: false
tags: opentelemetry-lua_utils
- run: make check-format