-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathappveyor.yml
68 lines (58 loc) · 1.56 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
image: Visual Studio 2022
version: 5.0.0.{build}
skip_branch_with_pr: true
skip_tags: true
skip_commits:
files:
- '**/*.md'
environment:
Appveyor: true
# Postgres
POSTGRES_PATH: C:\Program Files\PostgreSQL\15
PGUSER: postgres
PGPASSWORD: Password12!
POSTGRES_ENV_POSTGRES_USER: postgres
POSTGRES_ENV_POSTGRES_PASSWORD: Password12!
POSTGRES_ENV_POSTGRES_DB: test
# MySQL
MYSQL_PATH: C:\Program Files\MySql\MySQL Server 8.0
MYSQL_PWD: Password12!
MYSQL_ENV_MYSQL_USER: root
MYSQL_ENV_MYSQL_PASSWORD: Password12!
MYSQL_ENV_MYSQL_DATABASE: test
services:
- postgresql15
init:
- git config --global core.autocrlf input
- SET PATH=%POSTGRES_PATH%\bin;%MYSQL_PATH%\bin;%PATH%
- net start MSSQL$SQL2019
- ps: Start-Service MySQL80
- ps: Start-Service postgresql-x64-15
nuget:
disable_publish_on_pr: true
dotnet_csproj:
patch: true
file: '**\*.csproj'
package_version: '{version}-rc'
version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
build_script:
# Postgres
- createdb test
# MySQL
- mysql -e "create database test;" --user=root
# Our stuff
- ps: .\build.ps1 -PullRequestNumber "$env:APPVEYOR_PULL_REQUEST_NUMBER" -CreatePackages $true
test: off
artifacts:
- path: .\.nupkgs\*.nupkg
deploy:
- provider: NuGet
server: https://www.myget.org/F/dapper-database/api/v2
on:
branch: master
api_key:
secure: omw4IBzq0RAzx+QBqt880QN9gJUB3aB+GpX8bizQxirNDk+Ocw66b+8wtf8Eu2SK
symbol_server: https://www.myget.org/F/dapper-database/symbols/api/v2/package