Skip to content

Commit

Permalink
Add and fix cicd settings; change main reference description (shawn1m…
Browse files Browse the repository at this point in the history
…#208)

* Change CICD settings

* Change CICD settings, modify main description of reference
  • Loading branch information
shawn1m authored Feb 17, 2020
1 parent 783f229 commit b3655b8
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ addons:
packages:
- python3
script:
- "go test -cover ./..."
- "go test -cover ./... -race -coverprofile=coverage.txt -covermode=atomic"
- "python3 ./build.py -create-sample"
after_success:
- "bash <(curl -s https://codecov.io/bash)"
before_deploy:
- "go version"
- "ls -al"
- "python3 ./build.py -build"
deploy:
provider: releases
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# overture
[![Build Status](https://travis-ci.org/shawn1m/overture.svg)](https://travis-ci.org/shawn1m/overture)
[![Build status](https://ci.appveyor.com/api/projects/status/gqrixsfcmmrcaohr/branch/master?svg=true)](https://ci.appveyor.com/project/shawn1m/overture/branch/master)
[![GoDoc](https://godoc.org/github.com/shawn1m/overture?status.svg)](https://godoc.org/github.com/shawn1m/overture)
[![Go Report Card](https://goreportcard.com/badge/github.com/shawn1m/overture)](https://goreportcard.com/report/github.com/shawn1m/overture)
[![codecov](https://codecov.io/gh/shawn1m/overture/branch/master/graph/badge.svg)](https://codecov.io/gh/shawn1m/overture)

Overture is a DNS server/forwarder/dispatcher written in Go.

Expand Down
11 changes: 9 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,21 @@ image: Ubuntu

clone_folder: /usr/go/src/github.com/shawn1m/overture

branches:
only:
- master

skip_tags: true

skip_branch_with_pr: true

environment:
GOPATH: /usr/go/

stack: go 1.13

before_build:
- "go version"
- "ls -al"
- "python3 ./build.py -create-sample"
- "python3 ./build.py -build"

before_test:
Expand Down
2 changes: 1 addition & 1 deletion main/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func main() {
}

log.Infof("Overture %s", version)
log.Info("If you need any help, please visit the project repository: https://github.com/shawn1m/overture")
log.Info("If you want to use overture safe and sound, please read the README.md from project repository: https://github.com/shawn1m/overture")

runtime.GOMAXPROCS(*processorNumber)

Expand Down

0 comments on commit b3655b8

Please sign in to comment.