2014-11-15 19:36:30 -06:00
|
|
|
language: go
|
2016-05-25 07:07:57 -05:00
|
|
|
go_import_path: github.com/ethereum/go-ethereum
|
|
|
|
sudo: false
|
2019-07-25 00:51:31 -05:00
|
|
|
jobs:
|
2020-03-31 05:09:45 -05:00
|
|
|
allow_failures:
|
|
|
|
- stage: build
|
|
|
|
os: osx
|
|
|
|
env:
|
|
|
|
- azure-osx
|
|
|
|
|
2016-05-25 07:07:57 -05:00
|
|
|
include:
|
2024-09-30 07:39:53 -05:00
|
|
|
# This builder create and push the Docker images for all architectures
|
2021-06-21 05:01:24 -05:00
|
|
|
- stage: build
|
2021-06-18 07:28:30 -05:00
|
|
|
if: type = push
|
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2024-08-20 10:34:03 -05:00
|
|
|
dist: focal
|
2024-08-20 08:50:07 -05:00
|
|
|
go: 1.23.x
|
2021-06-18 07:28:30 -05:00
|
|
|
env:
|
|
|
|
- docker
|
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
2021-06-21 11:43:37 -05:00
|
|
|
before_install:
|
|
|
|
- export DOCKER_CLI_EXPERIMENTAL=enabled
|
2021-06-18 07:28:30 -05:00
|
|
|
script:
|
2024-09-30 07:39:53 -05:00
|
|
|
- go run build/ci.go dockerx -platform "linux/amd64,linux/arm64" -upload ethereum/client-go
|
2021-06-17 02:47:45 -05:00
|
|
|
|
2018-03-28 07:35:41 -05:00
|
|
|
# This builder does the Linux Azure uploads
|
2019-07-25 00:51:31 -05:00
|
|
|
- stage: build
|
|
|
|
if: type = push
|
2018-10-08 09:37:06 -05:00
|
|
|
os: linux
|
2024-08-20 10:34:03 -05:00
|
|
|
dist: focal
|
2018-03-28 07:35:41 -05:00
|
|
|
sudo: required
|
2024-08-20 08:50:07 -05:00
|
|
|
go: 1.23.x
|
2018-03-28 07:35:41 -05:00
|
|
|
env:
|
|
|
|
- azure-linux
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
|
|
|
script:
|
2024-05-08 04:08:55 -05:00
|
|
|
# build amd64
|
2020-11-11 07:34:43 -06:00
|
|
|
- go run build/ci.go install -dlgo
|
2020-12-09 08:43:36 -06:00
|
|
|
- go run build/ci.go archive -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
|
2024-05-08 04:08:55 -05:00
|
|
|
|
|
|
|
# build 386
|
2024-05-08 04:33:07 -05:00
|
|
|
- sudo -E apt-get -yq --no-install-suggests --no-install-recommends install gcc-multilib
|
2024-08-23 09:30:30 -05:00
|
|
|
- git status --porcelain
|
2020-11-11 07:34:43 -06:00
|
|
|
- go run build/ci.go install -dlgo -arch 386
|
2020-12-09 08:43:36 -06:00
|
|
|
- go run build/ci.go archive -arch 386 -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
|
2016-11-02 11:21:05 -05:00
|
|
|
|
2016-11-04 06:48:20 -05: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 07:34:43 -06:00
|
|
|
- GOARM=5 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabi-gcc
|
2020-12-09 08:43:36 -06: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 07:34:43 -06:00
|
|
|
- GOARM=6 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabi-gcc
|
2020-12-09 08:43:36 -06: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 07:34:43 -06:00
|
|
|
- GOARM=7 go run build/ci.go install -dlgo -arch arm -cc arm-linux-gnueabihf-gcc
|
2020-12-09 08:43:36 -06: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 07:34:43 -06:00
|
|
|
- go run build/ci.go install -dlgo -arch arm64 -cc aarch64-linux-gnu-gcc
|
2020-12-09 08:43:36 -06:00
|
|
|
- go run build/ci.go archive -arch arm64 -type tar -signer LINUX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
|
2017-02-20 03:28:55 -06:00
|
|
|
|
2023-02-16 01:00:45 -06:00
|
|
|
# This builder does the OSX Azure uploads
|
|
|
|
- stage: build
|
|
|
|
if: type = push
|
|
|
|
os: osx
|
2023-11-07 05:00:31 -06:00
|
|
|
osx_image: xcode14.2
|
2024-09-20 07:06:12 -05:00
|
|
|
go: 1.23.1 # See https://github.com/ethereum/go-ethereum/pull/30478
|
2023-02-16 01:00:45 -06:00
|
|
|
env:
|
|
|
|
- azure-osx
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
|
|
|
script:
|
2024-09-22 03:12:47 -05:00
|
|
|
- ln -sf /Users/travis/gopath/bin/go1.23.1 /usr/local/bin/go # Work around travis go-setup bug
|
2023-02-16 01:00:45 -06:00
|
|
|
- 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
|
2023-11-07 04:35:03 -06:00
|
|
|
- go run build/ci.go install -dlgo -arch arm64
|
|
|
|
- go run build/ci.go archive -arch arm64 -type tar -signer OSX_SIGNING_KEY -signify SIGNIFY_KEY -upload gethstore/builds
|
2023-02-16 01:00:45 -06:00
|
|
|
|
2020-11-11 16:52:50 -06:00
|
|
|
# These builders run the tests
|
|
|
|
- stage: build
|
2024-05-09 09:05:42 -05:00
|
|
|
if: type = push
|
2020-11-11 16:52:50 -06:00
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2024-08-20 10:34:03 -05:00
|
|
|
dist: focal
|
2024-08-20 08:50:07 -05:00
|
|
|
go: 1.23.x
|
2020-11-11 16:52:50 -06:00
|
|
|
script:
|
2024-05-08 13:46:54 -05:00
|
|
|
- travis_wait 45 go run build/ci.go test $TEST_PACKAGES
|
2020-11-11 16:52:50 -06:00
|
|
|
|
|
|
|
- stage: build
|
2024-05-09 09:05:42 -05:00
|
|
|
if: type = push
|
2020-11-11 16:52:50 -06:00
|
|
|
os: linux
|
2024-08-20 10:34:03 -05:00
|
|
|
dist: focal
|
2024-08-20 08:50:07 -05:00
|
|
|
go: 1.22.x
|
2020-11-11 16:52:50 -06:00
|
|
|
script:
|
2024-05-08 13:46:54 -05:00
|
|
|
- travis_wait 45 go run build/ci.go test $TEST_PACKAGES
|
2020-11-11 16:52:50 -06:00
|
|
|
|
2023-03-09 08:44:54 -06:00
|
|
|
# This builder does the Ubuntu PPA nightly uploads
|
|
|
|
- stage: build
|
2024-05-08 13:46:54 -05:00
|
|
|
if: type = cron || (type = push && tag ~= /^v[0-9]/)
|
2023-03-09 08:44:54 -06:00
|
|
|
os: linux
|
2024-08-20 10:34:03 -05:00
|
|
|
dist: focal
|
2024-08-20 08:50:07 -05:00
|
|
|
go: 1.23.x
|
2023-03-09 08:44:54 -06:00
|
|
|
env:
|
|
|
|
- ubuntu-ppa
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
2024-05-08 07:34:58 -05:00
|
|
|
before_install:
|
2024-05-08 13:28:05 -05:00
|
|
|
- sudo -E apt-get -yq --no-install-suggests --no-install-recommends install devscripts debhelper dput fakeroot
|
2023-03-09 08:44:54 -06:00
|
|
|
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 05:53:33 -05:00
|
|
|
# This builder does the Azure archive purges to avoid accumulating junk
|
2019-07-25 00:51:31 -05:00
|
|
|
- stage: build
|
|
|
|
if: type = cron
|
2018-10-08 09:37:06 -05:00
|
|
|
os: linux
|
2024-08-20 10:34:03 -05:00
|
|
|
dist: focal
|
2024-08-20 08:50:07 -05:00
|
|
|
go: 1.23.x
|
2017-04-06 05:53:33 -05:00
|
|
|
env:
|
|
|
|
- azure-purge
|
2017-12-07 08:49:35 -06:00
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
2017-04-06 05:53:33 -05:00
|
|
|
script:
|
|
|
|
- go run build/ci.go purge -store gethstore/builds -days 14
|
2021-10-11 12:37:18 -05:00
|
|
|
|
|
|
|
# This builder executes race tests
|
|
|
|
- stage: build
|
|
|
|
if: type = cron
|
|
|
|
os: linux
|
2024-08-20 10:34:03 -05:00
|
|
|
dist: focal
|
2024-08-20 08:50:07 -05:00
|
|
|
go: 1.23.x
|
2024-05-09 09:05:42 -05:00
|
|
|
env:
|
|
|
|
- racetests
|
2021-10-11 12:37:18 -05:00
|
|
|
script:
|
2024-05-09 09:05:42 -05:00
|
|
|
- travis_wait 60 go run build/ci.go test -race $TEST_PACKAGES
|