-
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade fasthttp to v1.3.0 and router to v0.3.4
- Loading branch information
Sergio Andres Virviescas Santana
committed
May 20, 2019
1 parent
7c8050e
commit b656a37
Showing
5 changed files
with
32 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,31 @@ | ||
language: go | ||
sudo: false | ||
|
||
go: | ||
- 1.9.x | ||
- 1.10.x | ||
- 1.11.x | ||
- 1.12.x | ||
- tip | ||
|
||
os: | ||
- linux | ||
- osx | ||
|
||
matrix: | ||
include: | ||
- go: tip | ||
env: ATREUGO_VERSION=v7 | ||
allow_failures: | ||
- go: tip | ||
fast_finish: true | ||
|
||
before_install: | ||
- go get -u -v github.com/mattn/goveralls | ||
|
||
script: | ||
# build test for supported platforms | ||
- GOOS=linux go build | ||
- GOOS=darwin go build | ||
- GOOS=freebsd go build | ||
- GOOS=windows go build | ||
- GOARCH=386 go build | ||
|
||
- $GOPATH/bin/goveralls -v -service=travis-ci -package github.com/savsgio/atreugo | ||
- $GOPATH/bin/goveralls -v -service=travis-ci -package github.com/savsgio/atreugo/$ATREUGO_VERSION |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
module github.com/savsgio/atreugo/v7 | ||
|
||
require ( | ||
github.com/fasthttp/router v0.3.3 | ||
github.com/fasthttp/router v0.3.4 | ||
github.com/json-iterator/go v1.1.6 | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/savsgio/go-logger v1.0.0 | ||
github.com/valyala/bytebufferpool v1.0.0 | ||
github.com/valyala/fasthttp v1.2.0 | ||
github.com/valyala/fasthttp v1.3.0 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters