-
Notifications
You must be signed in to change notification settings - Fork 48
197 lines (192 loc) · 6.43 KB
/
main-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
name: Anubis Main CD/CI
on:
push:
branches: [ main ]
workflow_dispatch:
jobs:
# Test Stage.
test-api:
name: Test api
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: api
strategy:
matrix:
python-version: [ '3.10' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v3
id: cache-venv # name for referring later
with:
path: |
**/venv
key: ${{ runner.os }}-venv-${{ hashFiles('**/api/requirements/dev.txt') }}
- name: Install dependencies
run: |
set -ex
python -m venv venv
if [ -f requirements/dev.txt ]; then ./venv/bin/pip install -r requirements/dev.txt; fi
if: steps.cache-venv.outputs.cache-hit != 'true'
- name: Background API
run: |
set -ex
docker run -itd -p 6379:6379 redis redis-server --requirepass anubis
env MINDEBUG=1 MIGRATE=1 ./venv/bin/python3 dev.py &
- name: Wait for startup
run: sleep 3
- name: Test with pytest
run: |
./tests/mintest.sh
- name: Teardown
run: |
killall -9 python3
# Test Stage.
test-theia-shell-autograde:
name: Test shell autograde
runs-on: ubuntu-latest
defaults:
run:
shell: bash
working-directory: theia/autograde/
strategy:
matrix:
python-version: [ '3.7', '3.10' ]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
# - uses: actions/cache@v3
# id: cache-venv # name for referring later
# with:
# path: |
# **/venv
# key: ${{ runner.os }}-venv-${{ matrix.python-version }}-${{ hashFiles('**/theia/autograde/requirements.txt') }}-${{ hashFiles('**/theia/autograde/requirements_dev.txt') }}
- name: Install dependencies
run: |
set -ex
python -m venv venv
./venv/bin/pip install -r requirements.txt -r requirements_dev.txt
./venv/bin/pip install -e .
if: steps.cache-venv.outputs.cache-hit != 'true'
- name: Pytest
run: venv/bin/pytest
# Build Stage.
# Will build the docker image, and push it
# to the container registry.
build-api:
name: Build api
needs: [test-api]
runs-on: ubuntu-latest
environment: anubis
steps:
- uses: actions/checkout@v4
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log into DigitalOcean container registry
run: doctl registry login
- name: Build container image
run: env GIT_TAG=$(git log -1 --pretty=%h) docker compose build api
- name: Build container image
run: env GIT_TAG=latest docker compose build api
- name: Push image to registry
run: env GIT_TAG=$(git log -1 --pretty=%h) docker compose push api
- name: Push image to registry
run: env GIT_TAG=latest docker compose push api
build-theia-shell-autograde:
name: Build shell autograde
needs: [test-theia-shell-autograde]
runs-on: ubuntu-latest
environment: anubis
steps:
- uses: actions/checkout@v4
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log into DigitalOcean container registry
run: doctl registry login
- name: Build container image
run: |
env GIT_TAG=$(git log -1 --pretty=%h) docker compose build theia-autograde theia-autograde-docs
env GIT_TAG=latest docker compose build theia-autograde theia-autograde-docs
- name: Push image to registry
run: |
env GIT_TAG=$(git log -1 --pretty=%h) docker compose push theia-autograde theia-autograde-docs
env GIT_TAG=latest docker compose push theia-autograde theia-autograde-docs
build-web:
name: Build web
runs-on: ubuntu-latest
environment: anubis
steps:
- uses: actions/checkout@v4
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log into DigitalOcean container registry
run: doctl registry login
- name: Build container image
run: |
env GIT_TAG=$(git log -1 --pretty=%h) docker compose build web
env GIT_TAG=latest docker compose build web
- name: Push image to registry
run: |
env GIT_TAG=$(git log -1 --pretty=%h) docker compose push web
env GIT_TAG=latest docker compose push web
build-theia-images:
name: Build images
runs-on: ubuntu-latest
environment: anubis
strategy:
matrix:
image:
- theia-proxy
- theia-init
- theia-autosave
- theia-dockerd
steps:
- uses: actions/checkout@v4
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Log into DigitalOcean container registry
run: doctl registry login
- name: Build container image
run: env GIT_TAG=$(git log -1 --pretty=%h) docker compose build ${{ matrix.image }}
- name: Build container image
run: env GIT_TAG=latest docker compose build ${{ matrix.image }}
- name: Push image to registry
run: env GIT_TAG=$(git log -1 --pretty=%h) docker compose push ${{ matrix.image }}
- name: Push image to registry
run: env GIT_TAG=latest docker compose push ${{ matrix.image }}
# Deploy step.
# Will push out yaml to the k8s cluster, then restart
# deployments.
deploy:
name: Deploy to Anubis k8s cluster
needs: [build-api, build-web, build-theia-shell-autograde, build-theia-images]
runs-on: ubuntu-latest
environment: anubis
steps:
- uses: actions/checkout@v4
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Save DigitalOcean kubeconfig
run: doctl kubernetes cluster kubeconfig save anubis2
- name: Helm upgrade
run: make upgrade
- name: Verify deployment
run: make status