File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -12,15 +12,18 @@ max_jobs: 1
12
12
image : Visual Studio 2017
13
13
clone_folder : c:\projects\azure-webjobs-sdk-script
14
14
init :
15
- - ps : >-
16
- $env:Path="c:\tools\php;c:\python35;C:\Program Files (x86)\Microsoft SDKs\F#\4.0\Framework\v4.0;"+$env:Path
15
+ - ps : $env:Path = "c:\tools\php;c:\python35;C:\Program Files (x86)\Microsoft SDKs\F#\4.0\Framework\v4.0;" + $env:Path;
17
16
install :
18
17
- ps : >-
19
- mkdir c:\tools\php | out-null
20
- Invoke-WebRequest https://azfunc.blob.core.windows.net/public/php-7.1.3-Win32-VC14-x86.zip -OutFile c:\tools\php\php.zip
21
- Add-Type -AssemblyName System.IO.Compression.FileSystem
22
- [System.IO.Compression.ZipFile]::ExtractToDirectory("c:\tools\php\php.zip", "c:\tools\php")
23
- Install-Product node 6.11.2 x86
18
+ mkdir c:\tools\php | out-null
19
+
20
+ Invoke-WebRequest https://azfunc.blob.core.windows.net/public/php-7.1.3-Win32-VC14-x86.zip -OutFile c:\tools\php\php.zip
21
+
22
+ Add-Type -AssemblyName System.IO.Compression.FileSystem
23
+
24
+ [System.IO.Compression.ZipFile]::ExtractToDirectory("c:\tools\php\php.zip", "c:\tools\php")
25
+
26
+ Install-Product node 6.11.2 x86
24
27
build_script :
25
28
- cmd : msbuild "WebJobs.Script.proj" /target:EnableSkipStrongNames;PackageScriptHost;PackageWebHost;TestBuild /verbosity:normal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /property:Buildnumber=%APPVEYOR_BUILD_NUMBER%;Configuration=Release
26
29
test_script :
You can’t perform that action at this time.
0 commit comments