2014-11-16 03:36:30 +02:00
|
|
|
language: go
|
2016-05-25 15:07:57 +03:00
|
|
|
go_import_path: github.com/ethereum/go-ethereum
|
|
|
|
sudo: false
|
2019-07-25 08:51:31 +03:00
|
|
|
jobs:
|
2020-03-31 13:09:45 +03:00
|
|
|
allow_failures:
|
|
|
|
- stage: build
|
|
|
|
os: osx
|
|
|
|
env:
|
|
|
|
- azure-osx
|
|
|
|
|
2016-05-25 15:07:57 +03:00
|
|
|
include:
|
2020-03-31 13:09:45 +03:00
|
|
|
# This builder only tests code linters on latest version of Go
|
2019-07-25 08:51:31 +03:00
|
|
|
- stage: lint
|
|
|
|
os: linux
|
2021-02-23 21:31:09 +03:00
|
|
|
dist: bionic
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.21.x
|
2019-07-25 08:51:31 +03:00
|
|
|
env:
|
|
|
|
- lint
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
|
|
|
script:
|
|
|
|
- go run build/ci.go lint
|
|
|
|
|
2021-06-21 19:16:51 +03:00
|
|
|
# These builders create the Docker sub-images for multi-arch push and each
|
|
|
|
# will attempt to push the multi-arch image if they are the last builder
|
2021-06-21 13:01:24 +03:00
|
|
|
- stage: build
|
2021-06-18 15:28:30 +03:00
|
|
|
if: type = push
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
|
|
|
dist: bionic
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.21.x
|
2021-06-18 15:28:30 +03:00
|
|
|
env:
|
|
|
|
- docker
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
2021-06-21 19:43:37 +03:00
|
|
|
before_install:
|
|
|
|
- export DOCKER_CLI_EXPERIMENTAL=enabled
|
2021-06-18 15:28:30 +03:00
|
|
|
script:
|
2021-08-10 17:13:06 +03:00
|
|
|
- go run build/ci.go docker -image -manifest amd64,arm64 -upload ethereum/client-go
|
2021-06-18 15:28:30 +03:00
|
|
|
|
2021-06-21 13:01:24 +03:00
|
|
|
- stage: build
|
2021-06-18 15:28:30 +03:00
|
|
|
if: type = push
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
|
|
|
dist: bionic
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.21.x
|
2021-06-18 15:28:30 +03:00
|
|
|
env:
|
|
|
|
- docker
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
2021-06-21 19:43:37 +03:00
|
|
|
before_install:
|
|
|
|
- export DOCKER_CLI_EXPERIMENTAL=enabled
|
2021-06-18 15:28:30 +03:00
|
|
|
script:
|
2021-08-10 17:13:06 +03:00
|
|
|
- go run build/ci.go docker -image -manifest amd64,arm64 -upload ethereum/client-go
|
2021-06-17 10:47:45 +03:00
|
|
|
|
2018-03-28 15:35:41 +03:00
|
|
|
# This builder does the Linux Azure uploads
|
2019-07-25 08:51:31 +03:00
|
|
|
- stage: build
|
|
|
|
if: type = push
|
2018-10-08 17:37:06 +03:00
|
|
|
os: linux
|
2021-02-23 21:31:09 +03:00
|
|
|
dist: bionic
|
2018-03-28 15:35:41 +03:00
|
|
|
sudo: required
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.21.x
|
2018-03-28 15:35:41 +03:00
|
|
|
env:
|
|
|
|
- azure-linux
|
|
|
|
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 16:34:43 +03:00
|
|
|
- go run build/ci.go install -dlgo
|
2020-12-09 17:43:36 +03:00
|
|
|
- go run build/ci.go archive -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
|
2020-11-11 16:34:43 +03:00
|
|
|
- go run build/ci.go install -dlgo -arch 386
|
2020-12-09 17:43:36 +03:00
|
|
|
- go run build/ci.go archive -arch 386 -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
|
2016-11-02 19:21:05 +03:00
|
|
|
|
2016-11-04 14:48:20 +03: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 16:34:43 +03:00
|
|
|
- GOARM=5 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabi-gcc
|
2020-12-09 17:43:36 +03: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 16:34:43 +03:00
|
|
|
- GOARM=6 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabi-gcc
|
2020-12-09 17:43:36 +03: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 16:34:43 +03:00
|
|
|
- GOARM=7 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabihf-gcc
|
2020-12-09 17:43:36 +03: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 16:34:43 +03:00
|
|
|
- go run build/ci.go install -dlgo -arch arm64 -cc aarch64-linux-gnu-gcc
|
2020-12-09 17:43:36 +03:00
|
|
|
- go run build/ci.go archive -arch arm64 -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
|
2017-02-20 12:28:55 +03:00
|
|
|
|
2023-02-16 10:00:45 +03:00
|
|
|
# This builder does the OSX Azure uploads
|
|
|
|
- stage: build
|
|
|
|
if: type = push
|
|
|
|
os: osx
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.21.x
|
2023-02-16 10:00:45 +03:00
|
|
|
env:
|
|
|
|
- azure-osx
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
|
|
|
script:
|
|
|
|
- go run build/ci.go install -dlgo
|
|
|
|
- go run build/ci.go archive -type tar -signer OSX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
|
|
|
|
|
2020-11-12 01:52:50 +03:00
|
|
|
# These builders run the tests
|
|
|
|
- stage: build
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2021-02-23 21:31:09 +03:00
|
|
|
dist: bionic
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.21.x
|
2020-11-12 01:52:50 +03:00
|
|
|
script:
|
2023-08-23 16:49:36 +03:00
|
|
|
- travis_wait 30 go run build/ci.go test $TEST_PACKAGES
|
2020-11-12 01:52:50 +03:00
|
|
|
|
|
|
|
- stage: build
|
|
|
|
if: type = pull_request
|
|
|
|
os: linux
|
|
|
|
arch: arm64
|
2021-02-23 21:31:09 +03:00
|
|
|
dist: bionic
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.20.x
|
2020-11-12 01:52:50 +03:00
|
|
|
script:
|
2023-08-23 16:49:36 +03:00
|
|
|
- travis_wait 30 go run build/ci.go test $TEST_PACKAGES
|
2020-11-12 01:52:50 +03:00
|
|
|
|
|
|
|
- stage: build
|
|
|
|
os: linux
|
2021-02-23 21:31:09 +03:00
|
|
|
dist: bionic
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.20.x
|
2020-11-12 01:52:50 +03:00
|
|
|
script:
|
2023-08-23 16:49:36 +03:00
|
|
|
- travis_wait 30 go run build/ci.go test $TEST_PACKAGES
|
2020-11-12 01:52:50 +03:00
|
|
|
|
2023-03-09 17:44:54 +03:00
|
|
|
# This builder does the Ubuntu PPA nightly uploads
|
|
|
|
- stage: build
|
2023-03-13 16:10:19 +03:00
|
|
|
if: type = cron || (type = push && tag ~= /^v[0-9]/)
|
2023-03-09 17:44:54 +03:00
|
|
|
os: linux
|
|
|
|
dist: bionic
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.21.x
|
2023-03-09 17:44:54 +03:00
|
|
|
env:
|
|
|
|
- ubuntu-ppa
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
packages:
|
|
|
|
- devscripts
|
|
|
|
- debhelper
|
|
|
|
- dput
|
|
|
|
- fakeroot
|
|
|
|
- python-bzrlib
|
|
|
|
- python-paramiko
|
|
|
|
script:
|
|
|
|
- echo '|1|7SiYPr9xl3uctzovOTj4gMwAC1M=|t6ReES75Bo/PxlOPJ6/GsGbTrM0= ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA0aKz5UTUndYgIGG7dQBV+HaeuEZJ2xPHo2DS2iSKvUL4xNMSAY4UguNW+pX56nAQmZKIZZ8MaEvSj6zMEDiq6HFfn5JcTlM80UwlnyKe8B8p7Nk06PPQLrnmQt5fh0HmEcZx+JU9TZsfCHPnX7MNz4ELfZE6cFsclClrKim3BHUIGq//t93DllB+h4O9LHjEUsQ1Sr63irDLSutkLJD6RXchjROXkNirlcNVHH/jwLWR5RcYilNX7S5bIkK8NlWPjsn/8Ua5O7I9/YoE97PpO6i73DTGLh5H9JN/SITwCKBkgSDWUt61uPK3Y11Gty7o2lWsBjhBUm2Y38CBsoGmBw==' >> ~/.ssh/known_hosts
|
|
|
|
- go run build/ci.go debsrc -upload ethereum/ethereum -sftp-user geth-ci -signer "Go Ethereum Linux Builder <geth-ci@ethereum.org>"
|
|
|
|
|
2017-04-06 13:53:33 +03:00
|
|
|
# This builder does the Azure archive purges to avoid accumulating junk
|
2019-07-25 08:51:31 +03:00
|
|
|
- stage: build
|
|
|
|
if: type = cron
|
2018-10-08 17:37:06 +03:00
|
|
|
os: linux
|
2021-02-23 21:31:09 +03:00
|
|
|
dist: bionic
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.21.x
|
2017-04-06 13:53:33 +03:00
|
|
|
env:
|
|
|
|
- azure-purge
|
2017-12-07 17:49:35 +03:00
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
2017-04-06 13:53:33 +03:00
|
|
|
script:
|
|
|
|
- go run build/ci.go purge -store gethstore/builds -days 14
|
2021-10-11 20:37:18 +03:00
|
|
|
|
|
|
|
# This builder executes race tests
|
|
|
|
- stage: build
|
|
|
|
if: type = cron
|
|
|
|
os: linux
|
|
|
|
dist: bionic
|
2023-08-22 11:00:01 +03:00
|
|
|
go: 1.21.x
|
2021-10-11 20:37:18 +03:00
|
|
|
script:
|
2023-08-23 16:49:36 +03:00
|
|
|
- travis_wait 30 go run build/ci.go test -race $TEST_PACKAGES
|
2021-10-11 20:37:18 +03:00
|
|
|
|