-
Notifications
You must be signed in to change notification settings - Fork 792
249 lines (238 loc) · 6.9 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
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
name: CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build_frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Setup
run: npm install
- name: Build
run: make build_frontend
- uses: actions/upload-artifact@master
with:
name: build-frontend
path: server/ctrl/static/www/
build_backend:
needs: build_frontend
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/download-artifact@master
with:
name: build-frontend
path: server/ctrl/static/www/
- uses: actions/[email protected]
with:
go-version: 1.19
- name: Setup
run: |
sudo apt install -y libraw-dev libjpeg-dev libpng-dev libheif-dev libwebp-dev libgif-dev
sudo apt install -y build-essential libstdc++6 libomp-dev
mkdir -p ./dist/data/state/config
cp config/config.json ./dist/data/state/config/
- name: Build
run: |
make build_init
make build_backend
- uses: actions/upload-artifact@master
with:
name: build
path: dist
- name: Verify
run: timeout 5 ./dist/filestash || code=$?; if [[ $code -ne 124 ]]; then exit $code; fi
test_frontend:
needs: [build_frontend, build_backend]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clone test repo
uses: actions/checkout@v3
with:
repository: mickael-kerjean/filestash-test
ssh-key: ${{ secrets.DEPLOY_KEY_FILESTASH_TEST }}
path: test
- uses: actions/setup-node@v3
with:
node-version: 14.x
- name: Setup
run: |
npm install
cd ./test/unit_js
npm install
- name: Run
run: |
cd ./test/unit_js
npm test
# verify_frontend:
# needs: [build_frontend, build_backend]
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# - uses: actions/setup-node@v3
# with:
# node-version: 14.x
# - name: Setup
# run: cd public && npm install
# - name: Run
# run: |
# cd public
# # npx eslint .
# npx tsc
test_backend:
needs: [build_frontend, build_backend]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clone test repo
uses: actions/checkout@v3
with:
repository: mickael-kerjean/filestash-test
ssh-key: ${{ secrets.DEPLOY_KEY_FILESTASH_TEST }}
path: test
- uses: actions/download-artifact@v3
with:
name: build-frontend
path: server/ctrl/static/www/
- uses: actions/[email protected]
with:
go-version: 1.19
- name: Setup
run: |
sudo apt-get install -y poppler-utils
cp ./test/assets/* /tmp/
mkdir server/ctrl/static/www/ && touch server/ctrl/static/www/index.html
make build_init
rm -rf server/generator/
go generate ./test/unit_go/...
go get github.com/stretchr/testify/assert
go mod vendor
- name: Run
run: go test --tags "fts5" -count=1 $(go list ./server/... | grep -v "server/plugin" | grep -v "server/generator")
test_smoke:
needs: [build_frontend, build_backend]
runs-on: ubuntu-latest
steps:
- name: Init
uses: actions/download-artifact@v3
with:
name: build
- name: Run
run: |
chmod +x filestash
timeout 5 ./filestash > access.log || code=$?; if [[ $code -ne 124 ]]; then exit $code; fi
echo "========= access.log "
cat access.log
echo "====================="
cat access.log | grep -q "Filestash v0.5 starting"
cat access.log | grep -q "listening on :"
cat access.log | grep -vz "WARN"
cat access.log | grep -vz "ERR"
# test_e2e:
# needs: [test_smoke]
# runs-on: ubuntu-latest
# container:
# image: machines/puppeteer
# options: --user root
# env:
# ADMIN_PASSWORD: $2a$10$9OFbPZV4lYpYjU5eUi91o.kgeMyCuW11j878YBRri3gBwccq2lSFy
# APP_URL: http://127.0.0.1:8334
# CI: true
# steps:
# - uses: actions/checkout@v3
# - name: Clone test repo
# uses: actions/checkout@v3
# with:
# repository: mickael-kerjean/filestash-test
# ssh-key: ${{ secrets.DEPLOY_KEY_FILESTASH_TEST }}
# path: test
# - name: Restore Build
# uses: actions/download-artifact@v3
# with:
# name: build
# - name: Setup
# run: |
# cd ./test/e2e
# npm install
# - name: Run
# run: |
# chmod +x ./filestash
# ./filestash > /dev/null &
# cd ./test/e2e
# node servers/webdav.js > /dev/null &
# npm test
release_docker_amd64:
# if: github.ref == 'refs/heads/master'
needs: [ test_backend, test_frontend, test_smoke ]
runs-on: ubuntu-latest
steps:
- name: Init
uses: actions/checkout@v3
- name: Setup
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Run
run: |
docker build -t machines/filestash:latest-amd64 ./docker/
docker push machines/filestash:latest-amd64
release_docker_arm64:
if: github.ref == 'refs/heads/master'
needs: [ test_backend, test_frontend, test_smoke ]
runs-on: ubuntu-latest
steps:
- name: Init
uses: actions/checkout@v3
- name: Setup
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Run
run: |
uname -m
uname -a
docker version
# docker build -t machines/filestash:latest-arm64 ./docker/
# echo "DONE"
release_docker:
needs: [ release_docker_amd64, release_docker_arm64 ]
runs-on: ubuntu-latest
steps:
- name: Init
uses: actions/checkout@v3
- name: Setup
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Run
run: |
docker manifest create machines/filestash:latest \
--amend machines/filestash:latest-amd64 \
--amend machines/filestash:latest-arm64v8
docker manifest push machines/filestash:latest
deploy:
if: github.ref == 'refs/heads/master'
needs: release_docker
runs-on: ubuntu-latest
steps:
- name: Setup
uses: Azure/k8s-set-context@v1
with:
method: kubeconfig
kubeconfig: ${{ secrets.KUBE_CONFIG }}
- name: Deploy
run: kubectl rollout restart deployment app-filestash-demo -n filestash