forked from rryqszq4/ngx-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
37 lines (27 loc) · 842 Bytes
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
version: "{branch}.build.{build}"
image: Visual Studio 2017
branches:
only:
- master
cache:
- c:\build-cache
environment:
SRC_BUILD_FOLDER: c:\build-cache
platform:
- x86
build: false
install:
- echo start
- cd %APPVEYOR_BUILD_FOLDER%
- cd ..
- echo download php
- ps: Invoke-WebRequest https://windows.php.net/downloads/releases/archives/php-7.1.15-Win32-VC14-x86.zip -OutFile ${env:APPVEYOR_BUILD_FOLDER}\..\php.zip
- 'mkdir php && mv php.zip php\php.zip && cd php'
- 7z.exe x php.zip | FIND /V "ing "
- cd ..
- echo download nginx
- ps: Invoke-WebRequest http://nginx.org/download/nginx-1.10.3.zip -OutFile ${env:APPVEYOR_BUILD_FOLDER}\..\nginx.zip
- 'mkdir nginx && mv nginx.zip nginx\nginx.zip && cd nginx'
- 7z.exe x nginx.zip | FIND /V "ing "
- cd ..
test: off