From d23c32028615773776ab0cdc9ddb4b7e4892d3b7 Mon Sep 17 00:00:00 2001 From: Aidan Lee Date: Sun, 16 Jun 2024 17:42:01 +0100 Subject: [PATCH] unmask mysql service before starting --- tools/azure-pipelines/build.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/azure-pipelines/build.yml b/tools/azure-pipelines/build.yml index f4a2eb823..376880a0f 100644 --- a/tools/azure-pipelines/build.yml +++ b/tools/azure-pipelines/build.yml @@ -39,6 +39,7 @@ jobs: displayName: Install dependencies - script: | set -ex + sudo systemctl unmask mysql.service sudo systemctl start mysql sudo mysql -u root -e "create database hxcpp; grant all privileges on hxcpp.* to hxcpp@localhost identified by 'hxcpp'; flush privileges;" displayName: Configure MariaDB