ci: fixed mariadb options

This commit is contained in:
Jannat Patel
2023-10-13 11:24:58 +05:30
parent d840d2fc18
commit bf5cc5e1d1

View File

@@ -26,7 +26,7 @@ jobs:
- 3306:3306 - 3306:3306
env: env:
MYSQL_ROOT_PASSWORD: root MYSQL_ROOT_PASSWORD: root
options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3 options: --health-cmd="mysqladmin ping" --health-interval=5s --health-timeout=2s --health-retries=3 --character-set-server utf8mb4 --collation-server utf8mb4_unicode_ci
steps: steps:
- name: Clone - name: Clone
uses: actions/checkout@v2 uses: actions/checkout@v2
@@ -70,7 +70,7 @@ jobs:
- name: Create bench site - name: Create bench site
working-directory: /home/runner/frappe-bench working-directory: /home/runner/frappe-bench
run: bench new-site --mariadb-root-password root --character-set-server utf8mb4 --collation-server utf8mb4_unicode_ci --admin-password admin frappe.local run: bench new-site --mariadb-root-password root --admin-password admin frappe.local
- name: Install LMS app - name: Install LMS app
working-directory: /home/runner/frappe-bench working-directory: /home/runner/frappe-bench