-mariadb -e "create database test; use test; create table t(a int primary key) engine=innodb; insert into t values (1); select * from t; drop table t; drop database test;"
fresh install:
stage:test
image:debian:${RELEASE}
artifacts:
when:always
name:"$CI_BUILD_NAME"
paths:
-${WORKING_DIR}/debug
script:
-cd ${WORKING_DIR}# Don't repeat this step, it's just cd ./debian/output
-mariadb -e "create database test; use test; create table t(a int primary key) engine=innodb; insert into t values (1); select * from t; drop table t; drop database test;"