forked from dotnet/BenchmarkDotNet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
45 lines (33 loc) · 1 KB
/
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
38
39
40
41
42
43
44
45
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 0.13.2.{build}
# branches to build
branches:
# blacklist
except:
- gh-pages
pull_requests:
do_not_increment_build_number: true
# Do not build on tags (GitHub only)
skip_tags: true
#---------------------------------#
# environment configuration #
#---------------------------------#
os: Visual Studio 2022
# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf input
# add Visual C++ toolset to $path so NativeAOT tests can build native executables
before_build:
- call "C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvars64.bat"
#---------------------------------#
# build configuration #
#---------------------------------#
build_script:
- ps: .\build.ps1
test: off
deploy: off
artifacts:
- path: '**\BenchmarkDotNet.*.*nupkg' # find all NuGet packages recursively