This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
201 lines (184 loc) · 5.78 KB
/
prod.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
name: Production
on:
push:
branches:
- prod
jobs:
build:
env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make pull-latest
- run: make all
- run: bash ops/build-report.sh
- run: docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- run: make push
ssh:
env:
MESSAGING_DOMAINNAME: oldmessaging.connext.network
TESTNET_DOMAINNAME: testnet-vector.connext.network
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: test connection to messaging server
uses: ./ops/ssh-action/
with:
HOST: ubuntu@${{ env.MESSAGING_DOMAINNAME }}
SSH_KEY: ${{ secrets.SSH_KEY }}
CMD: 'echo "Successfully connected to $MESSAGING_DOMAINNAME: `hostname`";'
- name: test connection to testnet server
uses: ./ops/ssh-action/
with:
HOST: ubuntu@${{ env.TESTNET_DOMAINNAME }}
SSH_KEY: ${{ secrets.SSH_KEY }}
CMD: 'echo "Successfully connected to $TESTNET_DOMAINNAME: `hostname`";'
docs:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- run: pip install mkdocs-material
- run: cd modules/documentation && mkdocs gh-deploy --force && cd ../..
utils:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make test-utils
contracts:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make test-contracts
protocol:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make test-protocol
engine:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make test-engine
server-node:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make test-server-node
browser-node:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make test-browser-node
router:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make test-router
messaging:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make pull-latest
- run: make messaging
- run: make start-messaging
- run: make test-messaging
- name: Print logs
if: failure()
run: docker service logs --tail 200 messaging_auth
duet:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make pull-latest
- run: make duet
- run: make start-duet
- run: make test-duet
- name: Print logs
if: failure()
run: |
docker service logs --tail 200 trio_alice
docker service logs --tail 200 trio_bob
trio:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- run: make pull-latest
- run: make trio
- run: make start-trio
- run: make test-trio
- name: Print logs
if: failure()
run: |
docker service logs --tail 200 trio_roger
docker service logs --tail 200 trio_router
docker service logs --tail 200 trio_carol
docker service logs --tail 200 trio_dave
messaging-prod:
runs-on: ubuntu-20.04
needs: [build]
steps:
- uses: actions/checkout@v1
- run: make pull
- run: jq '.production = true' ops/config/messaging.default.json > messaging.config.json
- run: make restart-messaging
- run: bash ops/test-integration.sh messaging
- name: Print logs
if: failure()
run: docker service ls && docker service logs --tail 200 messaging_auth
routing-node-prod:
runs-on: ubuntu-20.04
needs: [build]
steps:
- uses: actions/checkout@v1
- run: make pull
- run: jq '.production = true' ops/config/messaging.default.json > messaging.config.json
- run: jq '.production = true' ops/config/router.default.json > router.config.json
- run: make restart-router
- run: bash ops/test-integration.sh router
- name: Print logs
if: failure()
run: docker service ls && docker service logs --tail 200 router_node && docker service logs --tail 200 router_router
deploy-messaging:
env:
DOMAINNAME: oldmessaging.connext.network
needs: [ssh, utils, contracts, protocol, engine, server-node, browser-node, router, messaging, duet, trio, messaging-prod, routing-node-prod]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: deploy messaging service to production
uses: ./ops/ssh-action/
with:
HOST: ubuntu@${{ env.DOMAINNAME }}
SSH_KEY: ${{ secrets.SSH_KEY }}
CMD: '
git checkout --force prod;
git reset --hard $GITHUB_SHA;
make restart-messaging;
docker container prune -f;
docker image ls -q | xargs docker image rm || true;
'
deploy-testnet:
env:
DOMAINNAME: testnet-vector.connext.network
MESSAGING_URL: https://messaging.connext.network
needs: [ssh, utils, contracts, protocol, engine, server-node, browser-node, router, messaging, duet, trio, messaging-prod, routing-node-prod]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v1
- name: deploy testnet node to prod server
uses: ./ops/ssh-action/
with:
HOST: ubuntu@${{ env.DOMAINNAME }}
SSH_KEY: ${{ secrets.SSH_KEY }}
CMD: '
git checkout --force prod;
git reset --hard $GITHUB_SHA;
make restart;
docker container prune -f;
docker image ls -q | xargs docker image rm || true;
'