forked from mysql/mysql-docker
-
Notifications
You must be signed in to change notification settings - Fork 7
227 lines (201 loc) · 10.4 KB
/
test_and_deploy.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
name: Building Image, Running Benchmarks and Deploying to Dockerhub
on:
# Launch on manual trigger
workflow_dispatch:
# Launch on any push
push:
pull_request:
# Launch on PRs *towards* these branches
branches:
- 'release-**'
- main
# Not running on "closed" - that is taken care of by "push" (if merged)
types: [opened, synchronize, reopened]
env:
BASE_DEPLOY_URL: https://repo.hops.works/master
ARM_IMAGE_NAME: rondb-standalone-arm64
X86_IMAGE_NAME: rondb-standalone-amd64
RONDB_VERSION_LTS: 21.04.16
LTS_X86_TARBALL_NAME: rondb-21.04.16-linux-glibc2.17-x86_64.tar.gz
LTS_ARM_TARBALL_NAME: rondb-21.04.16-linux-glibc2.35-arm64_v8.tar.gz
RONDB_VERSION_STABLE: 22.10.1
STABLE_X86_TARBALL_NAME: rondb-22.10.1-linux-glibc2.28-x86_64.tar.gz
STABLE_ARM_TARBALL_NAME: rondb-22.10.1-linux-glibc2.35-arm64_v8.tar.gz
jobs:
integration-test-and-package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build and run Docker Compose cluster with benchmarking for RONDB_VERSION_LTS
run: |
./run.sh -lv \
--rondb-tarball-url $BASE_DEPLOY_URL/$LTS_X86_TARBALL_NAME \
--rondb-version $RONDB_VERSION_LTS \
--size mini \
--run-benchmark sysbench_single \
--detached
- name: Wait for one container exit or timeout
run: |
start=`date +%s`
while true; do
end=`date +%s`
runtime=$((end-start))
if [ $( docker container ls --filter "status=exited" | grep rondb | wc -l ) -gt 0 ]; then
echo "One container is down. We can continue"
docker container ls --filter "status=exited"
exit 0
elif [ $runtime -gt 800 ]; then
echo "The benchmarking seems to be stuck. We're aborting now."
docker ps
exit 1
fi
sleep 2
done
- run: docker container ls
- run: docker logs mgmd_1
- run: docker logs ndbd_1
- run: docker logs mysqld_1
- run: docker logs rest_1
- run: docker logs bench_1
# At this point we only know that one container has exited. We want to
# check whether the bench container has exited with exit code 0. We need
# both status and exit code to do so, since Docker reports exit code 0
# for running containers.
- name: Check Benchmarking Exit Code
run: |
if [ "$(docker inspect bench_1 --format='{{.State.Status}}')" != "exited" ]
then
echo "Some container other than bench_1 exited unexpectedly."
docker ps -a
exit 1
elif [ "$(docker inspect bench_1 --format='{{.State.ExitCode}}')" != "0" ]
then
echo "Benchmarking failed."
cat autogenerated_files/*/volumes/sysbench_single/sysbench_results/oltp_rw_0_0.res
exit 1
fi
- name: Printing Sysbench results
run: cat autogenerated_files/*/volumes/sysbench_single/final_result.txt
- name: Login to Dockerhub
uses: docker/login-action@v2
if: github.repository == 'logicalclocks/rondb-docker' && (startsWith(github.ref_name, 'release-') || github.ref_name == 'main')
with:
username: hopsworks
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build X86 image for RONDB_VERSION_STABLE
if: github.repository == 'logicalclocks/rondb-docker' && (startsWith(github.ref_name, 'release-') || github.ref_name == 'main')
run: |
VERSION="$(< "./VERSION" sed -e 's/^[[:space:]]*//')"
docker buildx build . \
--tag rondb-standalone:$RONDB_VERSION_STABLE-$VERSION \
--build-arg RONDB_VERSION=$RONDB_VERSION_STABLE \
--build-arg RONDB_TARBALL_LOCAL_REMOTE=remote \
--build-arg RONDB_TARBALL_URI=$BASE_DEPLOY_URL/$STABLE_X86_TARBALL_NAME
# In the main branch, we work with "<version>-SNAPSHOT", which might as well be called "latest"
- name: Push X86 *latest* images to Dockerhub
if: github.repository == 'logicalclocks/rondb-docker' && github.ref_name == 'main'
run: |
VERSION="$(< "./VERSION" sed -e 's/^[[:space:]]*//')"
docker tag rondb-standalone:$RONDB_VERSION_LTS-$VERSION hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_LTS-$VERSION
docker tag rondb-standalone:$RONDB_VERSION_STABLE-$VERSION hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_STABLE-$VERSION
docker tag rondb-standalone:$RONDB_VERSION_LTS-$VERSION hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_LTS-latest
docker tag rondb-standalone:$RONDB_VERSION_STABLE-$VERSION hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_STABLE-latest
docker tag rondb-standalone:$RONDB_VERSION_STABLE-$VERSION hopsworks/$X86_IMAGE_NAME:latest
docker push hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_LTS-$VERSION
docker push hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_STABLE-$VERSION
docker push hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_LTS-latest
docker push hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_STABLE-latest
docker push hopsworks/$X86_IMAGE_NAME:latest
- name: Push X86 *release* images to Dockerhub
if: github.repository == 'logicalclocks/rondb-docker' && startsWith(github.ref_name, 'release-')
run: |
VERSION="$(< "./VERSION" sed -e 's/^[[:space:]]*//')"
docker tag rondb-standalone:$RONDB_VERSION_LTS-$VERSION hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_LTS-$VERSION
docker tag rondb-standalone:$RONDB_VERSION_STABLE-$VERSION hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_STABLE-$VERSION
docker push hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_LTS-$VERSION
docker push hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_STABLE-$VERSION
build-and-push-ARM64:
runs-on: ubuntu-latest
if: github.repository == 'logicalclocks/rondb-docker' && (startsWith(github.ref_name, 'release-') || github.ref_name == 'main')
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Dockerhub
uses: docker/login-action@v2
with:
username: hopsworks
password: ${{ secrets.DOCKERHUB_TOKEN }}
# We're skipping the benchmarking on ARM64 as we assume this will be run on a regular basis
# during development. ARM64 images are only for development anyways. It is more important to add
# all types of benchmarking to the tests.
- name: Build and push ARM64 image for RONDB_VERSION_LTS
run: |
VERSION="$(< "./VERSION" sed -e 's/^[[:space:]]*//')"
TAGS="hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_LTS-$VERSION"
if [[ "${{ github.ref_name == 'main' }}" == "true" ]]; then
TAGS+=" --tag hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_LTS-latest"
fi
docker buildx build . \
--tag $TAGS \
--platform=linux/arm64 \
--output type=registry \
--build-arg RONDB_VERSION=$RONDB_VERSION_LTS \
--build-arg RONDB_TARBALL_LOCAL_REMOTE=remote \
--build-arg RONDB_TARBALL_URI=$BASE_DEPLOY_URL/$LTS_ARM_TARBALL_NAME \
--cache-to type=registry,ref=hopsworks/rondb-standalone-cache,mode=max \
--cache-from type=registry,ref=hopsworks/rondb-standalone-cache,mode=max
- name: Build and push ARM64 image for RONDB_VERSION_STABLE
run: |
VERSION="$(< "./VERSION" sed -e 's/^[[:space:]]*//')"
TAGS="--tag hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_STABLE-$VERSION"
if [[ "${{ github.ref_name == 'main' }}" == "true" ]]; then
TAGS+=" --tag hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_STABLE-latest"
TAGS+=" --tag hopsworks/$ARM_IMAGE_NAME:latest"
fi
docker buildx build . \
$TAGS \
--platform=linux/arm64 \
--output type=registry \
--build-arg RONDB_VERSION=$RONDB_VERSION_STABLE \
--build-arg RONDB_TARBALL_LOCAL_REMOTE=remote \
--build-arg RONDB_TARBALL_URI=$BASE_DEPLOY_URL/$STABLE_ARM_TARBALL_NAME \
--cache-to type=registry,ref=hopsworks/rondb-standalone-cache,mode=max \
--cache-from type=registry,ref=hopsworks/rondb-standalone-cache,mode=max
build-and-push-cross-platform-image:
runs-on: ubuntu-latest
if: github.repository == 'logicalclocks/rondb-docker' && (startsWith(github.ref_name, 'release-') || github.ref_name == 'main')
needs: [integration-test-and-package, build-and-push-ARM64]
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Dockerhub
uses: docker/login-action@v2
with:
username: hopsworks
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Create and push multi-platform image
run: |
VERSION="$(< "./VERSION" sed -e 's/^[[:space:]]*//')"
# Using $VERSION will create weird `-SNAPSHOT` tags, when in main, but we need
# those Dockerhub images in order to run the main branch.
docker buildx imagetools create -t hopsworks/rondb-standalone:$RONDB_VERSION_LTS-$VERSION \
hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_LTS-$VERSION \
hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_LTS-$VERSION
docker buildx imagetools create -t hopsworks/rondb-standalone:$RONDB_VERSION_STABLE-$VERSION \
hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_STABLE-$VERSION \
hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_STABLE-$VERSION
if [[ "${{ github.ref_name == 'main' }}" == "true" ]]; then
docker buildx imagetools create -t hopsworks/rondb-standalone:$RONDB_VERSION_LTS-latest \
hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_LTS-latest \
hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_LTS-latest
docker buildx imagetools create -t hopsworks/rondb-standalone:$RONDB_VERSION_STABLE-latest \
hopsworks/$X86_IMAGE_NAME:$RONDB_VERSION_STABLE-latest \
hopsworks/$ARM_IMAGE_NAME:$RONDB_VERSION_STABLE-latest
docker buildx imagetools create -t hopsworks/rondb-standalone:latest \
hopsworks/$X86_IMAGE_NAME:latest \
hopsworks/$ARM_IMAGE_NAME:latest
fi