-
Notifications
You must be signed in to change notification settings - Fork 152
224 lines (218 loc) · 7.32 KB
/
e2e-test.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
name: E2E tests
on:
push:
branches: ["develop", "release-*"]
pull_request:
workflow_dispatch:
jobs:
# Build the latest version of complement-compatible-synapse, and cache the image for use in e2e tests.
build-synapse:
runs-on: ubuntu-latest
outputs:
synapsesha: ${{ steps.gitsha.outputs.sha }}
steps:
- name: Checkout synapse
uses: actions/checkout@v3
with:
repository: matrix-org/synapse
ref: master
- name: Get synapse git sha
id: gitsha
run: echo sha=`git rev-parse --short HEAD` >> "$GITHUB_OUTPUT"
- name: Cache complement-synapse image
id: cached-image
uses: actions/cache@v3
with:
path: /tmp/img-synapse.tar
key: ${{ runner.os }}-complement-synapse-${{ steps.gitsha.outputs.sha }}
- if: ${{ steps.cached-image.outputs.cache-hit != 'true' }}
name: Build images
run: |
# enable buildkit for the docker builds
export DOCKER_BUILDKIT=1
docker build -f docker/Dockerfile-workers -t matrixdotorg/synapse-workers:latest .
docker build -f docker/complement/Dockerfile -t complement-synapse:latest docker/complement
docker image save complement-synapse:latest > /tmp/img-synapse.tar
build-homerunner:
runs-on: ubuntu-latest
outputs:
homerunnersha: ${{ steps.gitsha.outputs.sha }}
steps:
- name: Checkout matrix-org/complement
uses: actions/checkout@v3
with:
repository: matrix-org/complement
- name: Get complement git sha
id: gitsha
run: echo sha=`git rev-parse --short HEAD` >> "$GITHUB_OUTPUT"
- name: Cache homerunner
id: cached
uses: actions/cache@v3
with:
path: homerunner
key: ${{ runner.os }}-homerunner-${{ steps.gitsha.outputs.sha }}
- name: "Set Go Version"
if: ${{ steps.cached.outputs.cache-hit != 'true' }}
run: |
echo "$GOROOT_1_17_X64/bin" >> $GITHUB_PATH
echo "~/go/bin" >> $GITHUB_PATH
# Build and install homerunner
- name: Install Complement Dependencies
if: ${{ steps.cached.outputs.cache-hit != 'true' }}
run: |
sudo apt-get update && sudo apt-get install -y libolm3 libolm-dev
- name: Build homerunner
if: ${{ steps.cached.outputs.cache-hit != 'true' }}
run: |
go build ./cmd/homerunner
integration-test:
runs-on: ubuntu-latest
timeout-minutes: 30
needs:
- build-synapse
- build-homerunner
env:
IRCBRIDGE_TEST_PGDB: "ircbridge_integtest"
IRCBRIDGE_TEST_PGURL: "postgresql://postgres_user:postgres_password@localhost"
IRCBRIDGE_TEST_ENABLEPG: "yes"
services:
postgres:
image: postgres:latest
ports:
- 5432:5432
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres_password
POSTGRES_PORT: 5432
POSTGRES_USER: postgres_user
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis:
image: redis
ports:
- 6379:6379
ircd:
image: ghcr.io/ergochat/ergo:stable
ports:
- 6667:6667
steps:
- name: Install Complement Dependencies
run: |
sudo apt-get update && sudo apt-get install -y libolm3
- name: Load cached homerunner bin
uses: actions/cache@v3
with:
path: homerunner
key: ${{ runner.os }}-homerunner-${{ needs.build-synapse.outputs.homerunnersha }}
fail-on-cache-miss: true # Shouldn't happen, we build this in the needs step.
- name: Load cached complement-synapse image
uses: actions/cache@v3
with:
path: /tmp/img-synapse.tar
key: ${{ runner.os }}-complement-synapse-${{ needs.build-synapse.outputs.synapsesha }}
fail-on-cache-miss: true # Shouldn't happen, we build this in the needs step.
- name: Load images
run: |
docker load --input /tmp/img-synapse.tar
- name: Checkout matrix-appservice-irc
uses: actions/checkout@v3
with:
path: matrix-appservice-irc
# Setup node & run tests
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: matrix-appservice-irc/.node-version
- name: Run Homerunner tests
timeout-minutes: 10
run: |
cd matrix-appservice-irc
yarn --strict-semver --frozen-lockfile
HOMERUNNER_SPAWN_HS_TIMEOUT_SECS=100 ../homerunner &
bash -ic 'yarn test:e2e'
- name: Archive trace logs
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-traces
path: |
matrix-appservice-irc/.e2e-traces
integration-test-pool:
runs-on: ubuntu-latest
timeout-minutes: 30
needs:
- build-synapse
- build-homerunner
env:
IRCBRIDGE_TEST_PGDB: "ircbridge_integtest"
IRCBRIDGE_TEST_PGURL: "postgresql://postgres_user:postgres_password@localhost"
IRCBRIDGE_TEST_ENABLEPG: "yes"
IRCBRIDGE_TEST_REDIS_URL: "redis://localhost:6379"
services:
postgres:
image: postgres:latest
ports:
- 5432:5432
env:
POSTGRES_DB: postgres
POSTGRES_PASSWORD: postgres_password
POSTGRES_PORT: 5432
POSTGRES_USER: postgres_user
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
redis:
image: redis
ports:
- 6379:6379
ircd:
image: ghcr.io/ergochat/ergo:stable
ports:
- 6667:6667
steps:
- name: Install Complement Dependencies
run: |
sudo apt-get update && sudo apt-get install -y libolm3
- name: Load cached homerunner bin
uses: actions/cache@v3
with:
path: homerunner
key: ${{ runner.os }}-homerunner-${{ needs.build-synapse.outputs.homerunnersha }}
fail-on-cache-miss: true # Shouldn't happen, we build this in the needs step.
- name: Load cached complement-synapse image
uses: actions/cache@v3
with:
path: /tmp/img-synapse.tar
key: ${{ runner.os }}-complement-synapse-${{ needs.build-synapse.outputs.synapsesha }}
fail-on-cache-miss: true # Shouldn't happen, we build this in the needs step.
- name: Load images
run: |
docker load --input /tmp/img-synapse.tar
- name: Checkout matrix-appservice-irc
uses: actions/checkout@v3
with:
path: matrix-appservice-irc
# Setup node & run tests
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version-file: matrix-appservice-irc/.node-version
- name: Run Homerunner tests
timeout-minutes: 10
run: |
cd matrix-appservice-irc
yarn --strict-semver --frozen-lockfile
HOMERUNNER_SPAWN_HS_TIMEOUT_SECS=100 ../homerunner &
bash -ic 'yarn test:e2e'
- name: Archive trace logs
if: always()
uses: actions/upload-artifact@v3
with:
name: e2e-traces-pool
path: |
matrix-appservice-irc/.e2e-traces