diff options
-rw-r--r-- | .github/workflows/phpunit-mysql-sharding.yml | 5 | ||||
-rw-r--r-- | .github/workflows/phpunit-mysql.yml | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/phpunit-mysql-sharding.yml b/.github/workflows/phpunit-mysql-sharding.yml index 1fad4d6578e..0d17dd81539 100644 --- a/.github/workflows/phpunit-mysql-sharding.yml +++ b/.github/workflows/phpunit-mysql-sharding.yml @@ -77,6 +77,7 @@ jobs: MYSQL_PASSWORD: nextcloud MYSQL_DATABASE: oc_autotest options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 10 + command: --default-auth=mysql_native_password shard1: image: ghcr.io/nextcloud/continuous-integration-mysql-${{ matrix.mysql-versions }}:latest ports: @@ -87,6 +88,7 @@ jobs: MYSQL_PASSWORD: nextcloud MYSQL_DATABASE: nextcloud options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 10 + command: --default-auth=mysql_native_password shard2: image: ghcr.io/nextcloud/continuous-integration-mysql-${{ matrix.mysql-versions }}:latest ports: @@ -97,6 +99,7 @@ jobs: MYSQL_PASSWORD: nextcloud MYSQL_DATABASE: nextcloud options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 10 + command: --default-auth=mysql_native_password shard3: image: ghcr.io/nextcloud/continuous-integration-mysql-${{ matrix.mysql-versions }}:latest ports: @@ -107,6 +110,7 @@ jobs: MYSQL_PASSWORD: nextcloud MYSQL_DATABASE: nextcloud options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 10 + command: --default-auth=mysql_native_password shard4: image: ghcr.io/nextcloud/continuous-integration-mysql-${{ matrix.mysql-versions }}:latest ports: @@ -117,6 +121,7 @@ jobs: MYSQL_PASSWORD: nextcloud MYSQL_DATABASE: nextcloud options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 10 + command: --default-auth=mysql_native_password steps: - name: Checkout server diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml index 198dd55c5df..8a48c37004c 100644 --- a/.github/workflows/phpunit-mysql.yml +++ b/.github/workflows/phpunit-mysql.yml @@ -81,6 +81,7 @@ jobs: MYSQL_PASSWORD: nextcloud MYSQL_DATABASE: oc_autotest options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 10 + command: --default-auth=mysql_native_password steps: - name: Checkout server |