File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ environment:
15
15
CONFIGURE_OPTS : --enable-mongodb --with-mongodb-sasl=yes --with-mongodb-client-side-encryption=yes
16
16
17
17
matrix :
18
+ - PHP_VER : 8.0.0rc2
19
+ TS : 1
20
+ CRT : vs16
21
+ APPVEYOR_BUILD_WORKER_IMAGE : Visual Studio 2019
18
22
- PHP_VER : 7.4.4
19
23
TS : 1
20
24
CRT : vc15
@@ -71,6 +75,14 @@ install:
71
75
# Latest versions will be in releases/ instead of releases/archives
72
76
if (-not (Test-Path c:\build-cache\$devel_pkg)) {
73
77
Invoke-WebRequest "http://windows.php.net/downloads/releases/$devel_pkg" -OutFile "c:\build-cache\$devel_pkg"
78
+
79
+ if (-not (Test-Path c:\build-cache\$devel_pkg)) {
80
+ Invoke-WebRequest "https://windows.php.net/downloads/qa/archives/$devel_pkg" -OutFile "c:\build-cache\$devel_pkg"
81
+
82
+ if (-not (Test-Path c:\build-cache\$devel_pkg)) {
83
+ Invoke-WebRequest "https://windows.php.net/downloads/qa/$devel_pkg" -OutFile "c:\build-cache\$devel_pkg"
84
+ }
85
+ }
74
86
}
75
87
}
76
88
@@ -133,6 +145,14 @@ test_script:
133
145
# Latest versions will be in releases/ instead of releases/archives
134
146
if (-not (Test-Path c:\build-cache\$runtime_pkg)) {
135
147
Invoke-WebRequest "http://windows.php.net/downloads/releases/$runtime_pkg" -OutFile "c:\build-cache\$runtime_pkg"
148
+
149
+ if (-not (Test-Path c:\build-cache\$runtime_pkg)) {
150
+ Invoke-WebRequest "https://windows.php.net/downloads/qa/archives/$runtime_pkg" -OutFile "c:\build-cache\$runtime_pkg"
151
+
152
+ if (-not (Test-Path c:\build-cache\$runtime_pkg)) {
153
+ Invoke-WebRequest "https://windows.php.net/downloads/qa/$runtime_pkg" -OutFile "c:\build-cache\$runtime_pkg"
154
+ }
155
+ }
136
156
}
137
157
}
138
158
You can’t perform that action at this time.
0 commit comments