Official Go implementation of the Ethereum protocol
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#!/usr/bin/make -f
|
|
|
|
# -*- makefile -*-
|
|
|
|
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
|
|
#export DH_VERBOSE=1
|
|
|
|
|
|
|
|
# Launchpad rejects Go's access to $HOME, use custom folder
|
|
|
|
export HOME=/tmp/home
|
|
|
|
|
|
|
|
override_dh_auto_build:
|
|
|
|
go get golang.org/dl/go1.13 && $HOME/go/bin/go1.13 download
|
|
|
|
build/env.sh $HOME/go/bin/go1.13 run build/ci.go install -git-commit={{.Env.Commit}} -git-branch={{.Env.Branch}} -git-tag={{.Env.Tag}} -buildnum={{.Env.Buildnum}} -pull-request={{.Env.IsPullRequest}}
|
|
|
|
|
|
|
|
override_dh_auto_test:
|
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@
|