Skip to content

Commit 00bedba

Browse files
committed
Don't install SQLServer via Chocolatey
1 parent 75d7684 commit 00bedba

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/actions/setup-windows/action.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ runs:
1010
net start MySQL
1111
mysql --port=3306 --user=root --password="" -e "ALTER USER 'root'@'localhost' IDENTIFIED BY 'Password12!'; FLUSH PRIVILEGES;"
1212
- name: Setup MSSQL
13-
shell: pwsh
14-
run: |
15-
choco install sql-server-express -y --no-progress --install-arguments="/SECURITYMODE=SQL /SAPWD=Password12!"
13+
uses: ankane/setup-sqlserver@v1
14+
with:
15+
accept-eula: true
1616
- name: Setup PostgreSQL
1717
shell: pwsh
1818
run: |

.github/scripts/windows/test_task.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ if %errorlevel% neq 0 exit /b 3
4545

4646
rem setup ODBC related exts
4747
set ODBC_TEST_USER=sa
48-
set ODBC_TEST_PASS=Password12!
48+
set ODBC_TEST_PASS=YourStrong!Passw0rd
4949
set ODBC_TEST_DSN=Driver={ODBC Driver 17 for SQL Server};Server=^(local^)\SQLEXPRESS;Database=master;uid=%ODBC_TEST_USER%;pwd=%ODBC_TEST_PASS%
5050
set PDOTEST_DSN=odbc:%ODBC_TEST_DSN%
5151

.github/workflows/push.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ env:
4141
CXX: ccache g++
4242
jobs:
4343
LINUX_X64:
44-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
44+
if: false
4545
services:
4646
mysql:
4747
image: mysql:8.3
@@ -137,7 +137,7 @@ jobs:
137137
if: ${{ !matrix.asan }}
138138
uses: ./.github/actions/verify-generated-files
139139
LINUX_X32:
140-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
140+
if: false
141141
name: LINUX_X32_DEBUG_ZTS
142142
runs-on: ubuntu-latest
143143
timeout-minutes: 50
@@ -193,7 +193,7 @@ jobs:
193193
-d zend_extension=opcache.so
194194
-d opcache.enable_cli=1
195195
MACOS_DEBUG_NTS:
196-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
196+
if: false
197197
strategy:
198198
fail-fast: false
199199
matrix:
@@ -262,7 +262,7 @@ jobs:
262262
run: .github/scripts/windows/test.bat
263263
BENCHMARKING:
264264
name: BENCHMARKING
265-
if: github.repository == 'php/php-src' || github.event_name == 'pull_request'
265+
if: false
266266
runs-on: ubuntu-24.04
267267
timeout-minutes: 50
268268
steps:

0 commit comments

Comments
 (0)