Skip to content

Commit

Permalink
Introduce AppVeyor (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
ktr0731 authored Oct 27, 2018
1 parent d9c7c9a commit e74a029
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/scripts/build-assets.bash
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

OSARCH='darwin/386 darwin/amd64 linux/386 linux/amd64 linux/arm linux/arm64'
OSARCH='darwin/386 darwin/amd64 linux/386 linux/amd64 linux/arm linux/arm64 windows/386 windows/amd64'

mkdir pkg
cd pkg
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
---

[![CircleCI](https://circleci.com/gh/ktr0731/evans/tree/master.svg?style=svg)](https://circleci.com/gh/ktr0731/evans/tree/master)
[![AppVeyor](https://ci.appveyor.com/api/projects/status/32r7s2skrgm9ubva?svg=true)](https://ci.appveyor.com/api/projects/status/32r7s2skrgm9ubva?svg=true)
[![codecov](https://codecov.io/gh/ktr0731/evans/branch/master/graph/badge.svg)](https://codecov.io/gh/ktr0731/evans)

## Motivation
Expand Down
16 changes: 16 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
clone_folder: c:\gopath\src\github.com\ktr0731\evans
environment:
GOPATH: c:\gopath
GOBIN: c:\gopath\bin
PATH: c:\gopath\bin;%PATH%
cache:
- vendor -> Gopkg.lock
install:
- mkdir c:\gopath\bin
- curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- dep ensure
build: off
test_script:
- set CGO_ENABLED=0
- go build
- go test -tags e2e -v ./...
2 changes: 1 addition & 1 deletion meta/meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ import (
const AppName = "evans"

var (
Version = semver.MustParse("0.6.3")
Version = semver.MustParse("0.6.4")
)

0 comments on commit e74a029

Please sign in to comment.