forked from highlight/highlight
-
Notifications
You must be signed in to change notification settings - Fork 0
203 lines (171 loc) · 7.83 KB
/
docker.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
name: Publish Production Docker Images
on:
workflow_dispatch:
pull_request:
types: [opened, synchronize]
release:
types: [published]
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
publish-docker:
name: Publish Production Docker Image
strategy:
matrix:
container: ['frontend', 'backend']
runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 30
# does not work for open source builds as doppler is required
if: github.event.pull_request.head.repo.full_name == 'highlight/highlight' || github.ref == 'refs/heads/main' || github.event_name == 'release'
env:
IMAGE_NAME: highlight-${{ matrix.container }}
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Docker
uses: docker/login-action@v3
with:
registry: ghcr.io
username: Vadman97
password: ${{ secrets.GH_DOCKER_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push docker container.
id: image-build
shell: bash
working-directory: ./docker
env:
DOPPLER_TOKEN: ${{ secrets.DOPPLER_TOKEN }}
REACT_APP_COMMIT_SHA: ${{ github.sha }}
TARGET: ${{ matrix.container }}
RELEASE: ${{ github.ref_name }}
REPO: ${{ github.event.pull_request.head.repo.full_name }}
REF: ${{ github.ref }}
run: |
IMAGE_TAG=$(echo ${{ github.ref_name }} | sed 's/\//-/g')-${{ github.sha }}
IMAGE_TAG=ghcr.io/highlight/$IMAGE_NAME:$IMAGE_TAG
if [[ ${{ github.event_name }} == 'release' ]]; then
IMAGE_TAG=ghcr.io/highlight/$IMAGE_NAME:latest
PUSH="--push"
elif [[ ${REF} == 'refs/heads/main' || ${REPO} == 'highlight/highlight' ]]; then
PUSH="--push"
else
PUSH=""
fi
PUSH="$PUSH -t $IMAGE_TAG"
export PUSH
export PLATFORM="--platform linux/arm64,linux/amd64"
# build docker image with common environment
./build.sh
echo "Built $IMAGE_NAME"
test-docker-enterprise:
name: Test Docker Image
needs:
- publish-docker
runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 90
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Node.js environment
uses: buildjet/setup-node@v4
with:
node-version: lts/*
cache: 'yarn'
- name: Install poetry
run: pipx install poetry
- name: Install python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'poetry'
- name: Install dependencies
working-directory: ./e2e/tests
run: poetry install --all-extras
- name: Login to Docker Hub
if: github.event.pull_request.head.repo.full_name == 'highlight/highlight' || github.ref == 'refs/heads/main'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Docker
if: github.event.pull_request.head.repo.full_name == 'highlight/highlight' || github.ref == 'refs/heads/main'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: Vadman97
password: ${{ secrets.GH_DOCKER_TOKEN }}
- name: Run docker enterprise
env:
LICENSE_KEY: ${{ secrets.LICENSE_KEY }}
run: |
IMAGE_TAG=$(echo ${{ github.ref_name }} | sed 's/\//-/g')-${{ github.sha }}
if [[ ${{ github.event_name }} == 'release' ]]; then
IMAGE_TAG=latest
fi
export BACKEND_IMAGE_NAME=ghcr.io/highlight/highlight-backend:$IMAGE_TAG
export FRONTEND_IMAGE_NAME=ghcr.io/highlight/highlight-frontend:$IMAGE_TAG
export RELEASE=$IMAGE_TAG
export LICENSE_KEY
pushd docker;
# setup infra / db
source ./env.sh --go-docker;
# ensure db migrated so we can insert the desired records
./start-infra.sh > /tmp/highlight.log 2>&1;
docker compose exec -e PSQL_HOST -e PSQL_USER -e PSQL_DB postgres bash -c 'psql -h $PSQL_HOST -U $PSQL_USER $PSQL_DB < /root/init.sql' >> /tmp/highlight.log 2>&1;
# start highlight
./run-enterprise.sh --no-pull >> /tmp/highlight.log 2>&1;
popd;
# install dependencies for e2e tests
yarn install >> /tmp/highlight.log 2>&1;
yarn build:sdk >> /tmp/highlight.log 2>&1;
# run python backend functional tests
pushd ./e2e/tests
export HIGHLIGHT_OAUTH_CLIENT_ID=abc123
export HIGHLIGHT_OAUTH_CLIENT_SECRET=def456
poetry run pytest -k "not cypress" .
popd
# look for containers that crashed
num_crashed=$(docker ps -a -f status=exited | grep -E '\(' | grep -cvE '\(\d+\)' || true)
if [ "$num_crashed" -gt 0 ]; then
echo "$num_crashed containers crashed"
docker ps -a -f status=exited
exit 1
fi
- name: Dump setup logs on failure
if: failure()
run: cat /tmp/highlight.log
- name: Dump docker container logs on failure
if: failure()
run: |
cd docker;
docker compose -f compose.yml -f compose.enterprise.yml logs;
- name: Dump databases on failure
if: failure()
run: |
cd docker;
mkdir backups
docker compose exec postgres bash -c "mkdir /backups";
docker compose exec postgres bash -c "pg_dump -h localhost -U postgres postgres > /backups/postgres.sql";
docker compose exec postgres bash -c "cat /backups/postgres.sql" > ./backups/postgres.sql 2>&1;
docker compose exec clickhouse bash -c "mkdir /backups && chmod -R 777 /backups";
docker compose exec clickhouse clickhouse-client --host clickhouse --query "BACKUP DATABASE default TO File('/backups/clickhouse.zip')";
docker compose exec clickhouse bash -c "cat /backups/clickhouse.zip" > ./backups/clickhouse.zip 2>&1;
- name: Save database artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: db-dump
path: docker/backups/*