From 0557536e16e1377a3ef0fe527c5aa8b03780e75f Mon Sep 17 00:00:00 2001 From: Andrea Boriero Date: Mon, 4 Oct 2021 10:10:48 +0200 Subject: [PATCH] Activate correct profile for mysql8 on GH actions --- ci/build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/build.sh b/ci/build.sh index 27c847f80c..49f32442ae 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -5,6 +5,8 @@ if [ "$RDBMS" == "derby" ]; then goal="-Pdb=derby" elif [ "$RDBMS" == "hsqldb" ]; then goal="-Pdb=hsqldb" +elif [ "$RDBMS" == "mysql8" ]; then + goal="-Pdb=mysql_ci" elif [ "$RDBMS" == "mysql" ]; then goal="-Pdb=mysql_ci" elif [ "$RDBMS" == "mariadb" ]; then