Skip to content

Commit 9c2dc01

Browse files
author
Matt Mason
committed
Add yml file to 1.x
1 parent ecfeb7e commit 9c2dc01

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

appveyor.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: 1.0.{build}
2+
pull_requests:
3+
do_not_increment_build_number: true
4+
branches:
5+
only:
6+
- dev
7+
- master
8+
- fsharp
9+
- next
10+
- core
11+
max_jobs: 1
12+
image: Visual Studio 2017
13+
clone_folder: c:\projects\azure-webjobs-sdk-script
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
17+
install:
18+
- 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
24+
build_script:
25+
- 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+
test_script:
27+
- cmd: runappveyortests.cmd
28+
artifacts:
29+
- path: bin\Packages\*.zip
30+
name: Runtime
31+
- path: bin\Packages\*.nupkg
32+
name: NuGet
33+
hosts:
34+
api.nuget.org: 93.184.221.200
35+
dist.nuget.org: 93.184.221.200

0 commit comments

Comments
 (0)