File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 24
24
- name : Test
25
25
run : make test
26
26
27
+ build_mariadb :
28
+ runs-on : ubuntu-22.04
29
+ name : Build with MariaDB
30
+ steps :
31
+ - name : Setup MariaDB Repo
32
+ run : |
33
+ sudo apt-get install software-properties-common
34
+ sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xF1656F24C74CD1D8
35
+ sudo add-apt-repository 'deb [arch=amd64] https://ftp.nluug.nl/db/mariadb/repo/11.0/ubuntu jammy main'
36
+ - name : Setup MariaDB Libs
37
+ run : sudo apt install libmariadb-dev libmariadb-dev-compat
38
+ - name : Checkout
39
+ uses : actions/checkout@v3
40
+ - name : Autogen
41
+ run : ./autogen.sh
42
+ - name : Configure
43
+ run : ./configure --with-mysql --with-pgsql
44
+ - name : Build
45
+ run : make
46
+ - name : MariaDB version
47
+ run : mariadb_config --version
48
+ - name : Sysbench version
49
+ run : ./src/sysbench --version
50
+ - name : Test
51
+ run : make test
You can’t perform that action at this time.
0 commit comments