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
|
2019-07-25 08:51:31 +03:00
|
|
|
jobs:
|
2016-05-25 15:07:57 +03:00
|
|
|
include:
|
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-08-20 18:34:03 +03:00
|
|
|
dist: focal
|
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:
|
2024-09-20 10:41:04 +03:00
|
|
|
- go version
|
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-08-20 18:34:03 +03:00
|
|
|
dist: focal
|
2024-09-20 14:44:28 +03:00
|
|
|
go: 1.23.1
|
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:
|
2024-09-20 10:41:04 +03:00
|
|
|
- go version
|
2020-11-12 01:52:50 +03:00
|
|
|
|
2024-09-20 14:37:42 +03:00
|
|
|
|
|
|
|
- stage: build
|
|
|
|
if: type = push
|
|
|
|
os: osx
|
|
|
|
osx_image: xcode14.2
|
2024-09-20 14:44:28 +03:00
|
|
|
go: 1.23.1
|
2024-09-20 14:37:42 +03:00
|
|
|
env:
|
|
|
|
- azure-osx
|
|
|
|
git:
|
|
|
|
submodules: false # avoid cloning ethereum/tests
|
|
|
|
script:
|
2024-09-20 16:00:43 +03:00
|
|
|
- rm /Users/travis/gopath/bin/go && ln -s /Users/travis/gopath/bin/go1.23.1 /Users/travis/gopath/bin/go && go version
|
2024-09-20 15:24:14 +03:00
|
|
|
- go1.23.1 version
|
|
|
|
- which go
|
2024-09-20 15:32:08 +03:00
|
|
|
- ls -la `which go`
|
2024-09-20 15:24:14 +03:00
|
|
|
- which go1.23.1
|
2024-09-20 14:37:42 +03:00
|
|
|
- go version
|