-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
Geth 1.4.11
- Loading branch information
There are no files selected for viewing
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,45 @@ | ||
language: go | ||
go: | ||
- 1.4.2 | ||
- 1.5.4 | ||
- 1.6.2 | ||
go_import_path: github.com/ethereum/go-ethereum | ||
sudo: false | ||
matrix: | ||
include: | ||
- os: linux | ||
dist: trusty | ||
go: 1.4.2 | ||
- os: linux | ||
dist: trusty | ||
go: 1.5.4 | ||
- os: linux | ||
dist: trusty | ||
go: 1.6.2 | ||
- os: osx | ||
go: 1.6.2 | ||
|
||
# This builder does the PPA upload (and nothing else). | ||
- os: linux | ||
dist: trusty | ||
go: 1.6.2 | ||
env: PPA | ||
addons: | ||
apt: | ||
packages: | ||
- devscripts | ||
- debhelper | ||
- dput | ||
script: | ||
- go run build/ci.go travis-debsrc | ||
|
||
install: | ||
# - go get code.google.com/p/go.tools/cmd/goimports | ||
# - go get github.com/golang/lint/golint | ||
# - go get golang.org/x/tools/cmd/vet | ||
- go get golang.org/x/tools/cmd/cover | ||
before_script: | ||
# - gofmt -l -w . | ||
# - goimports -l -w . | ||
# - golint . | ||
# - go vet ./... | ||
# - go test -race ./... | ||
script: | ||
- make travis-test-with-coverage | ||
- go run build/ci.go install | ||
- go run build/ci.go test -coverage -vet | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) | ||
env: | ||
global: | ||
- secure: "U2U1AmkU4NJBgKR/uUAebQY87cNL0+1JHjnLOmmXwxYYyj5ralWb1aSuSH3qSXiT93qLBmtaUkuv9fberHVqrbAeVlztVdUsKAq7JMQH+M99iFkC9UiRMqHmtjWJ0ok4COD1sRYixxi21wb/JrMe3M1iL4QJVS61iltjHhVdM64=" | ||
sudo: false | ||
# - go run build/ci.go archive -type tar | ||
|
||
notifications: | ||
webhooks: | ||
urls: | ||
- https://webhooks.gitter.im/e/e09ccdce1048c5e03445 | ||
on_success: change | ||
on_failure: always | ||
on_start: false |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.4.10 | ||
1.4.11 |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
os: Visual Studio 2015 | ||
|
||
# Clone directly into GOPATH. | ||
clone_folder: c:\gopath\src\github.com\ethereum\go-ethereum | ||
clone_depth: 5 | ||
version: "{branch}.{build}" | ||
environment: | ||
global: | ||
GOPATH: c:\gopath | ||
|
||
# cache choco package files so we don't hit sourceforge all | ||
# the time. | ||
cache: | ||
- c:\cache | ||
|
||
install: | ||
- cmd: choco install --cache c:\cache golang mingw | find /v "Extracting " | ||
- refreshenv | ||
- cd c:\gopath\src\github.com\ethereum\go-ethereum | ||
|
||
build_script: | ||
- go run build\ci.go install | ||
|
||
test_script: | ||
- go run build\ci.go test -vet -coverage | ||
|
||
after_build: | ||
- go run build\ci.go archive -type zip | ||
|
||
artifacts: | ||
- path: geth-*.zip |