File: appveyor.yml

package info (click to toggle)
badger 2.2007.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,384 kB
  • sloc: sh: 31; makefile: 7
file content (50 lines) | stat: -rw-r--r-- 1,278 bytes parent folder | download | duplicates (2)
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
# version format
version: "{build}"

# Operating system (build VM template)
os: Windows Server 2012 R2

# Platform.
platform: x64

clone_folder: c:\gopath\src\github.com\dgraph-io\badger

# Environment variables
environment:
  GOVERSION: 1.12
  GOPATH: c:\gopath
  GO111MODULE: on

# scripts that run after cloning repository
install:
  - set PATH=%GOPATH%\bin;c:\go\bin;c:\msys64\mingw64\bin;%PATH%
  - go version
  - go env
  - python --version
  - gcc --version

# To run your custom scripts instead of automatic MSBuild
build_script:
  # We need to disable firewall - https://github.com/appveyor/ci/issues/1579#issuecomment-309830648
  - ps: Disable-NetFirewallRule -DisplayName 'File and Printer Sharing (SMB-Out)'
  - cd c:\gopath\src\github.com\dgraph-io\badger
  - git branch
  - go get -t ./...

# To run your custom scripts instead of automatic tests
test_script:
  # Unit tests
  - ps: Add-AppveyorTest "Unit Tests" -Outcome Running
  - go test -v github.com/dgraph-io/badger/...
  - go test -v -vlog_mmap=false github.com/dgraph-io/badger/...
  - ps: Update-AppveyorTest "Unit Tests" -Outcome Passed

notifications:
  - provider: Email
    to:
      - pawan@dgraph.io
    on_build_failure: true
    on_build_status_changed: true
# to disable deployment
deploy: off