blob: 0ea171bf30a94bcc61a75ec7c0c62326c5c65de5 (
plain) (
blame)
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
|
stages:
- test
- build
before_script:
- uname -a
image: ubuntu:18.04
variables:
GET_SOURCES_ATTEMPTS: "5"
ARTIFACT_DOWNLOAD_ATTEMPTS: "5"
MYSQL_ROOT_PASSWORD: root
packetver: "20170517"
mysql_run_8.0:
stage: build
script:
- export CC=gcc-7
- ./.tools/jobs/install.sh "mysql-client
gcc-7
git-core
make autoconf automake autopoint
libssl-dev libtool libmysqlclient-dev libz-dev libpcre3-dev"
- ./.tools/jobs/cloneall.sh
- ./.tools/jobs/initdb.sh mysql
- ./.tools/jobs/build.sh "--enable-packetver=${packetver} --enable-epoll --enable-debug --enable-sanitize=full --disable-manager --enable-Werror --enable-buildbot" "--enable-werror --enable-lto --enable-sanitize"
- ./.tools/jobs/runserver.sh mysql
image: ubuntu:18.04
services:
- mysql:8.0
allow_failure: true
mysql_run_latest:
stage: build
script:
- export CC=gcc-9
- ./.tools/jobs/install.sh "mysql-client=8.0.28-0ubuntu4
libmysqlclient21=8.0.28-0ubuntu4
gcc-9
git-core
make autoconf automake autopoint
libssl-dev libtool libmysqlclient-dev=8.0.28-0ubuntu4 libz-dev libpcre3-dev"
- ./.tools/jobs/cloneall.sh
- ./.tools/jobs/initdb.sh mysql
- ./.tools/jobs/build.sh "--enable-packetver=${packetver} --enable-epoll --enable-debug --enable-sanitize=full --disable-manager --enable-Werror --enable-buildbot" "--enable-werror --enable-lto --enable-sanitize"
- ./.tools/jobs/runserver.sh mysql
image: ubuntu:22.04
services:
- mysql:8.0
# I don't know what's up with Valgrind?
.mariadb_run_valgrind_latest:
stage: test
script:
- export CC=gcc-6
- ./.tools/jobs/install.sh "mysql-client
gcc-6
git-core
make autoconf automake autopoint
libssl-dev openssl libtool libmariadbclient-dev libz-dev libpcre3-dev
valgrind"
- grep -nR CRYPTO_new_ex_data /usr/include/openssl/
- ls /usr/lib/x86_64-linux-gnu/ | grep libcrypto #locate libcrypto.so
- nm /usr/lib/x86_64-linux-gnu/libcrypto.a | grep CRYPTO_new
- ldd /usr/bin/openssl
- ./.tools/jobs/cloneall.sh
- ./.tools/jobs/initdb.sh mariadb
- ./.tools/jobs/build.sh "--enable-packetver=${packetver} --enable-epoll --enable-debug --disable-manager --enable-Werror --enable-buildbot" "--enable-werror"
- ./.tools/jobs/runservervalgrind.sh mariadb
image: ubuntu:18.04
services:
- mariadb:latest
licensecheck:
stage: test
tags:
- lightweight
script:
- ./.tools/jobs/licensecheck.sh
image: ubuntu:18.04
newlines:
stage: test
tags:
- lightweight
script:
- ./.tools/jobs/install.sh "dos2unix git-core"
- ./.tools/jobs/newlines.sh
image: debian:buster
artifacts:
untracked: true
when: always
expire_in: 3 week
spaces:
stage: test
tags:
- lightweight
script:
- ./.tools/jobs/install.sh "sed git-core"
- cd npc
- ../.tools/jobs/spaces.sh
image: debian:buster
allow_failure: true
artifacts:
untracked: true
when: always
expire_in: 3 week
|