From 5beb905bf1afb69d4a326c8760666cb3be2cf80e Mon Sep 17 00:00:00 2001 From: ruben Date: Thu, 16 Apr 2020 14:20:08 +0100 Subject: [PATCH] Added missing permissions for OSX CI --- ci/build_unix.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/ci/build_unix.sh b/ci/build_unix.sh index ed0e72c5..0232c68a 100644 --- a/ci/build_unix.sh +++ b/ci/build_unix.sh @@ -9,6 +9,7 @@ if [ $TRAVIS_OS_NAME == "osx" ]; then brew install $DATABASE cp ci/unix-ci.cnf ~/.my.cnf # This location is checked by both MySQL and MariaDB sudo mkdir -p /var/run/mysqld/ + sudo chmod 777 /var/run/mysqld/ mysql.server start # Note that running this with sudo fails if [ $DATABASE == "mariadb" ]; then sudo mysql -u root < ci/root_user_setup.sql