forked from minishift/minishift
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
34 lines (28 loc) · 750 Bytes
/
Copy pathappveyor.yml
File metadata and controls
34 lines (28 loc) · 750 Bytes
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
# AppVeyor CI configuration for Minishift
---
version: "{build}"
clone_folder: C:\gopath\src\github.com\minishift\minishift
environment:
GOPATH: C:\gopath
platform:
- x64
install:
# Dump some info
- go version
- go env
# Install Glide and create a specific tmp path to avoid error with too long dir names
- go get github.com/Masterminds/glide
- set PATH=%PATH%;%GOPATH%\bin
- mkdir c:\tmp
# Use Chocolatey to install make
- choco install make
build_script:
- glide --tmp C:\tmp install -v
- make cross test fmtcheck
artifacts:
- path: out\linux-amd64\minishift
name: Linux minishift binary
- path: out\darwin-amd64\minishift
name: OS-X minishift binary
- path: out\windows-amd64\minishift.exe
name: Windows minishift binary