Skip to content

Commit c3fa755

Browse files
committed
use UC drive letter strictly
1 parent 8ddd4ed commit c3fa755

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ skip_commits:
1212
- UPGRADING.INTERNALS
1313

1414
environment:
15-
PHP_BUILD_CACHE_BASE_DIR: c:\build-cache
16-
PHP_BUILD_OBJ_DIR: c:\obj
17-
PHP_BUILD_CACHE_SDK_DIR: c:\build-cache\sdk
15+
PHP_BUILD_CACHE_BASE_DIR: C:\build-cache
16+
PHP_BUILD_OBJ_DIR: C:\obj
17+
PHP_BUILD_CACHE_SDK_DIR: C:\build-cache\sdk
1818
PHP_BUILD_SDK_BRANCH: php-sdk-2.2.0
1919
PHP_BUILD_CRT: vs16
2020
matrix:

.github/scripts/windows/build_task.bat

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ if /i "%APPVEYOR%" equ "True" rmdir /s /q C:\mingw-w64 >nul 2>&1
1515
if %errorlevel% neq 0 exit /b 3
1616
if /i "%APPVEYOR%" equ "True" rmdir /s /q C:\msys64 >nul 2>&1
1717
if %errorlevel% neq 0 exit /b 3
18-
if /i "%APPVEYOR%" equ "True" rmdir /s /q c:\OpenSSL-Win32 >nul 2>&1
18+
if /i "%APPVEYOR%" equ "True" rmdir /s /q C:\OpenSSL-Win32 >nul 2>&1
1919
if %errorlevel% neq 0 exit /b 3
20-
if /i "%APPVEYOR%" equ "True" rmdir /s /q c:\OpenSSL-Win64 >nul 2>&1
20+
if /i "%APPVEYOR%" equ "True" rmdir /s /q C:\OpenSSL-Win64 >nul 2>&1
2121
if %errorlevel% neq 0 exit /b 3
22-
if /i "%APPVEYOR%" equ "True" rmdir /s /q c:\OpenSSL-v11-Win32 >nul 2>&1
22+
if /i "%APPVEYOR%" equ "True" rmdir /s /q C:\OpenSSL-v11-Win32 >nul 2>&1
2323
if %errorlevel% neq 0 exit /b 3
24-
if /i "%APPVEYOR%" equ "True" rmdir /s /q c:\OpenSSL-v11-Win64 >nul 2>&1
24+
if /i "%APPVEYOR%" equ "True" rmdir /s /q C:\OpenSSL-v11-Win64 >nul 2>&1
2525
if %errorlevel% neq 0 exit /b 3
2626
rem rmdir takes several minutes rename instead only
2727
pushd C:\

.github/scripts/windows/test_task.bat

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ if "%THREAD_SAFE%" neq "" set PHP_BUILD_DIR=%PHP_BUILD_DIR%_TS
105105

106106
set TEST_PHPDBG_EXECUTABLE=%PHP_BUILD_DIR%\phpdbg.exe
107107

108-
mkdir c:\tests_tmp
108+
mkdir C:\tests_tmp
109109

110-
set TEST_PHP_JUNIT=c:\junit.out.xml
110+
set TEST_PHP_JUNIT=C:\junit.out.xml
111111

112112
set OPCACHE_OPTS=-d opcache.enable=1 -d opcache.enable_cli=1 -d opcache.protect_memory=1 -d opcache.jit_buffer_size=16M
113-
nmake test TESTS="%OPCACHE_OPTS% -q --offline -g FAIL,XFAIL,BORK,WARN,LEAK,XLEAK,SKIP --color --show-diff --show-slow 1000 --set-timeout 120 --temp-source c:\tests_tmp --temp-target c:\tests_tmp -j2"
113+
nmake test TESTS="%OPCACHE_OPTS% -q --offline -g FAIL,XFAIL,BORK,WARN,LEAK,XLEAK,SKIP --color --show-diff --show-slow 1000 --set-timeout 120 --temp-source C:\tests_tmp --temp-target C:\tests_tmp -j2"
114114
if %errorlevel% neq 0 exit /b %errorlevel%

.github/workflows/nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -463,9 +463,9 @@ jobs:
463463
name: "${{ matrix.branch.name }}_WINDOWS_${{ matrix.x64 && 'X64' || 'X86' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
464464
runs-on: windows-2019
465465
env:
466-
PHP_BUILD_CACHE_BASE_DIR: c:\build-cache
467-
PHP_BUILD_OBJ_DIR: c:\obj
468-
PHP_BUILD_CACHE_SDK_DIR: c:\build-cache\sdk
466+
PHP_BUILD_CACHE_BASE_DIR: C:\build-cache
467+
PHP_BUILD_OBJ_DIR: C:\obj
468+
PHP_BUILD_CACHE_SDK_DIR: C:\build-cache\sdk
469469
PHP_BUILD_SDK_BRANCH: php-sdk-2.2.0
470470
PHP_BUILD_CRT: vs16
471471
PLATFORM: ${{ matrix.x64 && 'x64' || 'x86' }}

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,9 @@ jobs:
112112
name: "WINDOWS_${{ matrix.x64 && 'X64' || 'X86' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"
113113
runs-on: windows-2019
114114
env:
115-
PHP_BUILD_CACHE_BASE_DIR: c:\build-cache
116-
PHP_BUILD_OBJ_DIR: c:\obj
117-
PHP_BUILD_CACHE_SDK_DIR: c:\build-cache\sdk
115+
PHP_BUILD_CACHE_BASE_DIR: C:\build-cache
116+
PHP_BUILD_OBJ_DIR: C:\obj
117+
PHP_BUILD_CACHE_SDK_DIR: C:\build-cache\sdk
118118
PHP_BUILD_SDK_BRANCH: php-sdk-2.2.0
119119
PHP_BUILD_CRT: vs16
120120
PLATFORM: ${{ matrix.x64 && 'x64' || 'x86' }}

0 commit comments

Comments
 (0)