From bdd53862cd55bef22d21bde5cf983cbe23660f70 Mon Sep 17 00:00:00 2001 From: Olivier 'reivilibre Date: Sun, 5 Sep 2021 12:39:45 +0100 Subject: [PATCH] Debug CI more --- .woodpecker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index e785bfa..9aa7a6d 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -20,14 +20,14 @@ pipeline: testSuite: image: rust:1.54.0-slim-bullseye commands: - - apt-get -qq update && apt-get -yqq install pkg-config libssl-dev build-essential libsqlite3-dev python3.9 python3.9-venv postgresql postgresql-client mariadb-server mariadb-client - - ls /run/mysqld + - apt-get -qq update && apt-get -yqq -o=Dpkg::Use-Pty=0 install pkg-config libssl-dev build-essential libsqlite3-dev python3.9 python3.9-venv postgresql postgresql-client mariadb-server mariadb-client + - ls /run/mysqld || : - pg_ctlcluster 13 main start - su postgres -c 'createuser root' - su postgres -c 'createdb -O root testsuitedb' - psql testsuitedb -c 'CREATE TABLE testsuitetable ();' - - systemctl status mysqld - - systemctl status mariadb + - systemctl status mysqld || : + - systemctl status mariadb || : - mysql -e 'CREATE DATABASE testsuitemydb; USE testsuitemydb; CREATE TABLE sometable (INT PRIMARY KEY); INSERT INTO sometable VALUES (42);' - cargo install -q --path yama - cargo install -q --path datman