forked from ravendb/ravendb-go-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
47 lines (38 loc) · 1.16 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
# based on https://github.com/joefitzgerald/go-plus/blob/master/appveyor.yml
version: 4.0.{build}
image:
- Visual Studio 2017
- Ubuntu1804
stack: go 1.11
build: off
notifications:
- provider: Email
to:
environment:
LOG_HTTP_REQUEST_SUMMARY: true
LOG_FAILED_HTTP_REQUESTS: true
LOG_FAILED_HTTP_REQUESTS_DELAYED: true
LOG_ALL_REQUESTS: true
VERBOSE_LOG: true
RAVENDB_SERVER_VERSION: 4.1.3
install:
- go version
- go env
- cmd: echo %CD%
- sh: echo `pwd`
- sh: sudo apt-get -qq update
- sh: sudo apt-get install -y wget tar bzip2 zip
- sh: sudo cp ./certs/ca.crt /usr/local/share/ca-certificates/ca.crt
- sh: sudo update-ca-certificates
# note: when changing version, update RAVENDB_SERVER_VERSION in appveyor_run_tests.sh
# and above in environment
- sh: wget -O RavenDB.tar.bz2 https://daily-builds.s3.amazonaws.com/RavenDB-4.1.3-linux-x64.tar.bz2
- sh: tar xvjf RavenDB.tar.bz2
- sh: rm RavenDB.tar.bz2
- sh: ls -lah RavenDB
# https://www.appveyor.com/docs/windows-images-software/#golang
test_script:
- cmd: .\scripts\appveyor_run_tests_win.bat
- sh: ./scripts/appveyor_run_tests.sh
deploy: off