We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ed1880 + a7c444b commit 1f6a906Copy full SHA for 1f6a906
appveyor/test_task.bat
@@ -4,7 +4,14 @@ set NO_INTERACTION=1
4
set REPORT_EXIT_STATUS=1
5
set SKIP_IO_CAPTURE_TESTS=1
6
7
-set DEPS_DIR=%PHP_BUILD_CACHE_BASE_DIR%\deps-%PHP_SDK_VC%-%PHP_SDK_ARCH%-%APPVEYOR_REPO_BRANCH%
+if /i "%APPVEYOR_REPO_BRANCH:~0,4%" equ "php-" (
8
+ set BRANCH=%APPVEYOR_REPO_BRANCH:~4,3%
9
+ set STABILITY=stable
10
+) else (
11
+ set BRANCH=master
12
+ set STABILITY=staging
13
+)
14
+set DEPS_DIR=%PHP_BUILD_CACHE_BASE_DIR%\deps-%PHP_SDK_VC%-%PHP_SDK_ARCH%-%BRANCH%
15
16
rem setup MySQL related exts
17
set MYSQL_PWD=Password12!
0 commit comments