From 9848dd235d8db8b954f57cb929eacff41808e651 Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Sat, 17 Feb 2024 17:12:25 -0800 Subject: [PATCH] enable mysql service --- .github/workflows/ci.yml | 2 +- conf.d/mysql.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 30964f9..4deb748 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,7 @@ jobs: steps: - name: Start MySQL run: | - sudo service mysql start + sudo /etc/init.d/mysql start mysql -e 'CREATE DATABASE nictool;' -u${{ env.DB_USER }} -p${{ env.DB_PASS }} - uses: actions/checkout@v4 - uses: actions/setup-node@v4 diff --git a/conf.d/mysql.yml b/conf.d/mysql.yml index 56a231e..99c5e53 100644 --- a/conf.d/mysql.yml +++ b/conf.d/mysql.yml @@ -1,6 +1,6 @@ default: - host: localhost + host: 127.0.0.1 port: 3306 user: nictool database: nictool