File tree 2 files changed +16
-5
lines changed
2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 4
4
5
5
version : ' {build}'
6
6
7
- stack : postgresql
7
+ stack : postgresql 13.4
8
8
9
9
environment :
10
10
PGUSER : postgres
34
34
only :
35
35
- image : Visual Studio 2019
36
36
services :
37
- - postgresql101
37
+ - postgresql134
38
38
# REF: https://github.com/docascode/docfx-seed/blob/master/appveyor.yml
39
39
before_build :
40
40
- pwsh : |
92
92
appveyor_repo_tag : true
93
93
94
94
build_script :
95
- - pwsh : dotnet --version
96
- - pwsh : .\Build.ps1
95
+ - pwsh : |
96
+ Write-Output ".NET version:"
97
+ dotnet --version
98
+
99
+ Write-Output "PostgreSQL version:"
100
+ if ($IsWindows) {
101
+ . "${env:ProgramFiles}\PostgreSQL\13\bin\psql" --version
102
+ }
103
+ else {
104
+ psql --version
105
+ }
106
+
107
+ .\Build.ps1
97
108
98
109
test : off
Original file line number Diff line number Diff line change @@ -9,4 +9,4 @@ docker run --rm --name jsonapi-dotnet-core-testing `
9
9
- e POSTGRES_USER= postgres `
10
10
- e POSTGRES_PASSWORD= postgres `
11
11
- p 5432 :5432 `
12
- postgres:12.0
12
+ postgres:13.4
You can’t perform that action at this time.
0 commit comments