2014-11-16 01:36:30 +00:00
language : go
2016-05-25 12:07:57 +00:00
go_import_path : github.com/ethereum/go-ethereum
sudo : false
2019-07-25 05:51:31 +00:00
jobs :
2020-03-31 10:09:45 +00:00
allow_failures :
- stage : build
os : osx
2021-02-19 14:03:17 +00:00
go : 1.15 .x
2020-03-31 10:09:45 +00:00
env :
- azure-osx
- azure-ios
- cocoapods-ios
2016-05-25 12:07:57 +00:00
include :
2020-03-31 10:09:45 +00:00
# This builder only tests code linters on latest version of Go
2019-07-25 05:51:31 +00:00
- stage : lint
os : linux
dist : xenial
2021-02-19 14:03:17 +00:00
go : 1.16 .x
2019-07-25 05:51:31 +00:00
env :
- lint
git :
submodules : false # avoid cloning ethereum/tests
script :
- go run build/ci.go lint
2018-03-28 12:35:41 +00:00
# This builder does the Ubuntu PPA upload
2019-07-25 05:51:31 +00:00
- stage : build
if : type = push
2018-10-08 14:37:06 +00:00
os : linux
2019-04-08 07:43:01 +00:00
dist : xenial
2021-02-19 14:03:17 +00:00
go : 1.16 .x
2016-11-02 16:21:05 +00:00
env :
- ubuntu-ppa
2020-04-14 11:03:18 +00:00
- GO111MODULE=on
2017-12-07 14:49:35 +00:00
git :
submodules : false # avoid cloning ethereum/tests
2016-05-25 12:07:57 +00:00
addons :
apt :
packages :
- devscripts
- debhelper
- dput
2017-06-22 20:21:59 +00:00
- fakeroot
2019-02-12 09:55:25 +00:00
- python-bzrlib
- python-paramiko
2016-05-25 12:07:57 +00:00
script :
2019-02-18 09:24:11 +00:00
- echo '|1|7SiYPr9xl3uctzovOTj4gMwAC1M=|t6ReES75Bo/PxlOPJ6/GsGbTrM0= ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA0aKz5UTUndYgIGG7dQBV+HaeuEZJ2xPHo2DS2iSKvUL4xNMSAY4UguNW+pX56nAQmZKIZZ8MaEvSj6zMEDiq6HFfn5JcTlM80UwlnyKe8B8p7Nk06PPQLrnmQt5fh0HmEcZx+JU9TZsfCHPnX7MNz4ELfZE6cFsclClrKim3BHUIGq//t93DllB+h4O9LHjEUsQ1Sr63irDLSutkLJD6RXchjROXkNirlcNVHH/jwLWR5RcYilNX7S5bIkK8NlWPjsn/8Ua5O7I9/YoE97PpO6i73DTGLh5H9JN/SITwCKBkgSDWUt61uPK3Y11Gty7o2lWsBjhBUm2Y38CBsoGmBw==' >> ~/.ssh/known_hosts
2020-11-11 13:34:43 +00:00
- go run build/ci.go debsrc -upload ethereum/ethereum -sftp-user geth-ci -signer "Go Ethereum Linux Builder <geth-ci@ethereum.org>"
2018-03-28 12:35:41 +00:00
# This builder does the Linux Azure uploads
2019-07-25 05:51:31 +00:00
- stage : build
if : type = push
2018-10-08 14:37:06 +00:00
os : linux
2019-04-08 07:43:01 +00:00
dist : xenial
2018-03-28 12:35:41 +00:00
sudo : required
2021-02-19 14:03:17 +00:00
go : 1.16 .x
2018-03-28 12:35:41 +00:00
env :
- azure-linux
2020-04-14 11:03:18 +00:00
- GO111MODULE=on
2018-03-28 12:35:41 +00:00
git :
submodules : false # avoid cloning ethereum/tests
addons :
apt :
packages :
- gcc-multilib
script :
# Build for the primary platforms that Trusty can manage
2020-11-11 13:34:43 +00:00
- go run build/ci.go install -dlgo
2020-12-09 14:43:36 +00:00
- go run build/ci.go archive -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
2020-11-11 13:34:43 +00:00
- go run build/ci.go install -dlgo -arch 386
2020-12-09 14:43:36 +00:00
- go run build/ci.go archive -arch 386 -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
2016-11-02 16:21:05 +00:00
2016-11-04 11:48:20 +00:00
# Switch over GCC to cross compilation (breaks 386, hence why do it here only)
- sudo -E apt-get -yq --no-install-suggests --no-install-recommends --force-yes install gcc-arm-linux-gnueabi libc6-dev-armel-cross gcc-arm-linux-gnueabihf libc6-dev-armhf-cross gcc-aarch64-linux-gnu libc6-dev-arm64-cross
- sudo ln -s /usr/include/asm-generic /usr/include/asm
2020-11-11 13:34:43 +00:00
- GOARM=5 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabi-gcc
2020-12-09 14:43:36 +00:00
- GOARM=5 go run build/ci.go archive -arch arm -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
2020-11-11 13:34:43 +00:00
- GOARM=6 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabi-gcc
2020-12-09 14:43:36 +00:00
- GOARM=6 go run build/ci.go archive -arch arm -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
2020-11-11 13:34:43 +00:00
- GOARM=7 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabihf-gcc
2020-12-09 14:43:36 +00:00
- GOARM=7 go run build/ci.go archive -arch arm -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
2020-11-11 13:34:43 +00:00
- go run build/ci.go install -dlgo -arch arm64 -cc aarch64-linux-gnu-gcc
2020-12-09 14:43:36 +00:00
- go run build/ci.go archive -arch arm64 -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
2017-02-20 09:28:55 +00:00
2017-03-01 08:47:55 +00:00
# This builder does the Linux Azure MIPS xgo uploads
2019-07-25 05:51:31 +00:00
- stage : build
if : type = push
2018-10-08 14:37:06 +00:00
os : linux
2019-04-08 07:43:01 +00:00
dist : xenial
2017-03-01 08:47:55 +00:00
services :
- docker
2021-02-19 14:03:17 +00:00
go : 1.16 .x
2017-03-01 08:47:55 +00:00
env :
- azure-linux-mips
2020-04-14 11:03:18 +00:00
- GO111MODULE=on
2017-12-07 14:49:35 +00:00
git :
submodules : false # avoid cloning ethereum/tests
2017-03-01 08:47:55 +00:00
script :
- go run build/ci.go xgo --alltools -- --targets=linux/mips --ldflags '-extldflags "-static"' -v
- for bin in build/bin/*-linux-mips; do mv -f "${bin}" "${bin/-linux-mips/}"; done
2020-12-09 14:43:36 +00:00
- go run build/ci.go archive -arch mips -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
2017-03-01 08:47:55 +00:00
- go run build/ci.go xgo --alltools -- --targets=linux/mipsle --ldflags '-extldflags "-static"' -v
- for bin in build/bin/*-linux-mipsle; do mv -f "${bin}" "${bin/-linux-mipsle/}"; done
2020-12-09 14:43:36 +00:00
- go run build/ci.go archive -arch mipsle -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
2017-03-01 08:47:55 +00:00
- go run build/ci.go xgo --alltools -- --targets=linux/mips64 --ldflags '-extldflags "-static"' -v
- for bin in build/bin/*-linux-mips64; do mv -f "${bin}" "${bin/-linux-mips64/}"; done
2020-12-09 14:43:36 +00:00
- go run build/ci.go archive -arch mips64 -type tar -signer LINUX_SIGNING_KEY signify SIGNIFY_KEY -upload gethstore/builds
2017-03-01 08:47:55 +00:00
- go run build/ci.go xgo --alltools -- --targets=linux/mips64le --ldflags '-extldflags "-static"' -v
- for bin in build/bin/*-linux-mips64le; do mv -f "${bin}" "${bin/-linux-mips64le/}"; done
2020-12-09 14:43:36 +00:00
- go run build/ci.go archive -arch mips64le -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
2017-03-01 08:47:55 +00:00
2017-02-10 15:14:56 +00:00
# This builder does the Android Maven and Azure uploads
2019-07-25 05:51:31 +00:00
- stage : build
if : type = push
2018-10-08 14:37:06 +00:00
os : linux
2019-04-08 07:43:01 +00:00
dist : xenial
2017-02-10 15:14:56 +00:00
addons :
apt :
packages :
- oracle-java8-installer
- oracle-java8-set-default
language : android
android :
components :
- platform-tools
- tools
- android-15
- android-19
- android-24
env :
- azure-android
- maven-android
2020-04-14 11:03:18 +00:00
- GO111MODULE=on
2017-12-07 14:49:35 +00:00
git :
submodules : false # avoid cloning ethereum/tests
2017-02-10 15:14:56 +00:00
before_install :
2021-02-19 14:03:17 +00:00
- curl https://dl.google.com/go/go1.16.linux-amd64.tar.gz | tar -xz
2017-02-10 15:14:56 +00:00
- export PATH=`pwd`/go/bin:$PATH
- export GOROOT=`pwd`/go
2017-02-17 09:38:42 +00:00
- export GOPATH=$HOME/go
2017-02-10 15:14:56 +00:00
script :
# Build the Android archive and upload it to Maven Central and Azure
2021-02-23 17:57:39 +00:00
- curl https://dl.google.com/android/repository/android-ndk-r21e-linux-x86_64.zip -o android-ndk-r21e.zip
- unzip -q android-ndk-r21e.zip && rm android-ndk-r21e.zip
- mv android-ndk-r21e $ANDROID_HOME/ndk-bundle
2017-02-10 15:14:56 +00:00
- mkdir -p $GOPATH/src/github.com/ethereum
2019-02-22 11:07:04 +00:00
- ln -s `pwd` $GOPATH/src/github.com/ethereum/go-ethereum
2020-12-09 14:43:36 +00:00
- go run build/ci.go aar -signer ANDROID_SIGNING_KEY -signify SIGNIFY_KEY -deploy https://oss.sonatype.org -upload gethstore/builds
2017-02-10 15:14:56 +00:00
# This builder does the OSX Azure, iOS CocoaPods and iOS Azure uploads
2019-07-25 05:51:31 +00:00
- stage : build
if : type = push
2018-10-08 14:37:06 +00:00
os : osx
2021-02-19 14:03:17 +00:00
go : 1.16 .x
2016-11-02 16:21:05 +00:00
env :
2016-11-02 17:36:48 +00:00
- azure-osx
2017-02-10 15:14:56 +00:00
- azure-ios
- cocoapods-ios
2020-04-14 11:03:18 +00:00
- GO111MODULE=on
2017-12-07 14:49:35 +00:00
git :
submodules : false # avoid cloning ethereum/tests
2016-11-02 16:21:05 +00:00
script :
2020-11-11 13:34:43 +00:00
- go run build/ci.go install -dlgo
2020-12-09 14:43:36 +00:00
- go run build/ci.go archive -type tar -signer OSX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
2016-05-25 12:07:57 +00:00
2016-11-15 08:25:51 +00:00
# Build the iOS framework and upload it to CocoaPods and Azure
2017-05-08 08:22:08 +00:00
- gem uninstall cocoapods -a -x
2017-03-20 12:12:47 +00:00
- gem install cocoapods
2016-11-17 15:15:17 +00:00
- mv ~/.cocoapods/repos/master ~/.cocoapods/repos/master.bak
- sed -i '.bak' 's/repo.join/!repo.join/g' $(dirname `gem which cocoapods`)/cocoapods/sources_manager.rb
- if [ "$TRAVIS_PULL_REQUEST" = "false" ]; then git clone --depth=1 https://github.com/CocoaPods/Specs.git ~/.cocoapods/repos/master && pod setup --verbose; fi
2016-11-15 09:44:54 +00:00
- xctool -version
- xcrun simctl list
2016-11-17 15:15:17 +00:00
2018-02-13 17:32:20 +00:00
# Workaround for https://github.com/golang/go/issues/23749
- export CGO_CFLAGS_ALLOW='-fmodules|-fblocks|-fobjc-arc'
2020-12-09 14:43:36 +00:00
- go run build/ci.go xcode -signer IOS_SIGNING_KEY -signify SIGNIFY_KEY -deploy trunk -upload gethstore/builds
2016-11-15 08:25:51 +00:00
2020-11-11 22:52:50 +00:00
# These builders run the tests
- stage : build
os : linux
arch : amd64
dist : xenial
2021-02-19 14:03:17 +00:00
go : 1.16 .x
2020-11-11 22:52:50 +00:00
env :
- GO111MODULE=on
script :
- go run build/ci.go test -coverage $TEST_PACKAGES
- stage : build
if : type = pull_request
os : linux
arch : arm64
dist : xenial
2021-02-19 14:03:17 +00:00
go : 1.16 .x
2020-11-11 22:52:50 +00:00
env :
- GO111MODULE=on
script :
- go run build/ci.go test -coverage $TEST_PACKAGES
- stage : build
os : linux
dist : xenial
2021-02-19 14:03:17 +00:00
go : 1.15 .x
2020-11-11 22:52:50 +00:00
env :
- GO111MODULE=on
script :
- go run build/ci.go test -coverage $TEST_PACKAGES
2017-04-06 10:53:33 +00:00
# This builder does the Azure archive purges to avoid accumulating junk
2019-07-25 05:51:31 +00:00
- stage : build
if : type = cron
2018-10-08 14:37:06 +00:00
os : linux
2019-04-08 07:43:01 +00:00
dist : xenial
2021-02-19 14:03:17 +00:00
go : 1.16 .x
2017-04-06 10:53:33 +00:00
env :
- azure-purge
2020-04-14 11:03:18 +00:00
- GO111MODULE=on
2017-12-07 14:49:35 +00:00
git :
submodules : false # avoid cloning ethereum/tests
2017-04-06 10:53:33 +00:00
script :
- go run build/ci.go purge -store gethstore/builds -days 14