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:
|
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
|
2024-05-07 22:24:58 +03:00
|
|
|
dist: noble
|
2024-08-20 16:50:07 +03:00
|
|
|
go: 1.23.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
|
2024-05-07 22:24:58 +03:00
|
|
|
dist: noble
|
2024-08-20 16:50:07 +03:00
|
|
|
go: 1.23.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
|
2024-05-07 22:24:58 +03:00
|
|
|
dist: noble
|
2018-03-28 15:35:41 +03:00
|
|
|
sudo: required
|
2024-08-20 16:50:07 +03:00
|
|
|
go: 1.23.x
|
2018-03-28 15:35:41 +03:00
|
|
|
env:
|
|
|
|
- azure-linux
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
|
|
|
script:
|
2024-05-08 12:08:55 +03:00
|
|
|
# build amd64
|
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
|
2024-05-08 12:08:55 +03:00
|
|
|
|
|
|
|
# build 386
|
2024-05-08 12:33:07 +03:00
|
|
|
- sudo -E apt-get -yq --no-install-suggests --no-install-recommends install gcc-multilib
|
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-11-07 14:00:31 +03:00
|
|
|
osx_image: xcode14.2
|
2024-08-20 16:50:07 +03:00
|
|
|
go: 1.23.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
|
2023-11-07 13:35:03 +03: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 10:00:45 +03:00
|
|
|
|
2020-11-12 01:52:50 +03:00
|
|
|
# These builders run the tests
|
|
|
|
- stage: build
|
2024-05-09 17:05:42 +03:00
|
|
|
if: type = push
|
2020-11-12 01:52:50 +03:00
|
|
|
os: linux
|
|
|
|
arch: amd64
|
2024-05-07 22:24:58 +03:00
|
|
|
dist: noble
|
2024-08-20 16:50:07 +03:00
|
|
|
go: 1.23.x
|
2020-11-12 01:52:50 +03:00
|
|
|
script:
|
2024-05-08 21:46:54 +03:00
|
|
|
- travis_wait 45 go run build/ci.go test $TEST_PACKAGES
|
2020-11-12 01:52:50 +03:00
|
|
|
|
|
|
|
- stage: build
|
2024-05-09 17:05:42 +03:00
|
|
|
if: type = push
|
2020-11-12 01:52:50 +03:00
|
|
|
os: linux
|
2024-05-07 22:24:58 +03:00
|
|
|
dist: noble
|
2024-08-20 16:50:07 +03:00
|
|
|
go: 1.22.x
|
2020-11-12 01:52:50 +03:00
|
|
|
script:
|
2024-05-08 21:46:54 +03:00
|
|
|
- travis_wait 45 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
|
2024-05-08 21:46:54 +03:00
|
|
|
if: type = cron || (type = push && tag ~= /^v[0-9]/)
|
2023-03-09 17:44:54 +03:00
|
|
|
os: linux
|
2024-05-07 22:24:58 +03:00
|
|
|
dist: noble
|
2024-08-20 16:50:07 +03:00
|
|
|
go: 1.23.x
|
2023-03-09 17:44:54 +03:00
|
|
|
env:
|
|
|
|
- ubuntu-ppa
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
2024-05-08 15:34:58 +03:00
|
|
|
before_install:
|
2024-05-08 21:28:05 +03:00
|
|
|
- sudo -E apt-get -yq --no-install-suggests --no-install-recommends install devscripts debhelper dput fakeroot
|
2023-03-09 17:44:54 +03: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 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
|
2024-05-07 22:24:58 +03:00
|
|
|
dist: noble
|
2024-08-20 16:50:07 +03:00
|
|
|
go: 1.23.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
|
2024-05-07 22:24:58 +03:00
|
|
|
dist: noble
|
2024-08-20 16:50:07 +03:00
|
|
|
go: 1.23.x
|
2024-05-09 17:05:42 +03:00
|
|
|
env:
|
|
|
|
- racetests
|
2021-10-11 20:37:18 +03:00
|
|
|
script:
|
2024-05-09 17:05:42 +03:00
|
|
|
- travis_wait 60 go run build/ci.go test -race $TEST_PACKAGES
|