forked from cincuranet/FirebirdSql.Data.FirebirdClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
22 lines (22 loc) · 868 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
version: '0.0.0.{build}'
image: Visual Studio 2017
configuration:
- Release
environment:
matrix:
- firebird_selection: FB30_Default
- firebird_selection: FB25_SC
test: off
init:
- git config --global core.autocrlf true
before_build:
- ps: $baseDir = Resolve-Path .
build_script:
- ps: $env:build_nuget = 'C:\Program Files\AppVeyor\BuildAgent\Tools\nuget.exe'
- ps: $env:build_wix = 'C:\Program Files (x86)\WiX Toolset v3.11\bin'
- ps: "& $baseDir\\Provider\\build.ps1 -Configuration $env:CONFIGURATION -Version $env:APPVEYOR_BUILD_VERSION"
after_build:
- ps: gci "$baseDir\Provider\out" | % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
test_script:
- ps: $env:tests_firebird_dir = 'C:\firebird'
- ps: "& $baseDir\\Provider\\tests.ps1 -Configuration $env:CONFIGURATION -FirebirdSelection $env:firebird_selection -TestSuite Tests-All"