2021-08-25 18:32:30 +00:00
|
|
|
version: 2.1
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
docker:
|
2021-10-18 19:49:48 +00:00
|
|
|
- image: cimg/go:1.17.2
|
2021-08-25 18:32:30 +00:00
|
|
|
steps:
|
|
|
|
- checkout
|
2021-10-18 19:49:48 +00:00
|
|
|
- run:
|
|
|
|
name: Prep env
|
|
|
|
command: |
|
|
|
|
mkdir -p /home/circleci/go/src
|
|
|
|
mkdir artifacts
|
|
|
|
go mod tidy
|
|
|
|
- run:
|
|
|
|
name: test rpc
|
|
|
|
command: go test ./rpc/
|
|
|
|
- run:
|
|
|
|
name: test eth
|
|
|
|
command: go test ./eth/
|
|
|
|
- run:
|
|
|
|
name: test eth/tracers
|
|
|
|
command: go test ./eth/tracers/
|
|
|
|
- run:
|
|
|
|
name: test core
|
|
|
|
command: go test ./core/
|
|
|
|
- run:
|
|
|
|
name: test core/vm
|
|
|
|
command: go test ./core/vm/
|
|
|
|
- run:
|
|
|
|
name: test core/state
|
|
|
|
command: go test ./core/state/
|
|
|
|
- run:
|
|
|
|
name: test core/rawdb
|
|
|
|
command: go test ./core/rawdb/
|
2021-08-25 18:32:30 +00:00
|
|
|
build_geth_push:
|
|
|
|
docker: # run the steps with Docker
|
2021-10-18 15:37:01 +00:00
|
|
|
- image: cimg/go:1.17.2 # ...with this image as the primary container
|
2021-08-25 18:32:30 +00:00
|
|
|
# this is where all `steps` will run
|
|
|
|
steps:
|
|
|
|
- checkout
|
|
|
|
- setup_remote_docker
|
|
|
|
- run:
|
|
|
|
name: Prep env
|
|
|
|
command: |
|
|
|
|
mkdir -p /home/circleci/go/src
|
2021-10-18 15:37:01 +00:00
|
|
|
mkdir artifacts
|
2021-10-18 19:49:48 +00:00
|
|
|
go mod tidy
|
2021-08-25 18:32:30 +00:00
|
|
|
- run:
|
|
|
|
name: build geth binaries
|
|
|
|
command: |
|
|
|
|
sudo apt update
|
|
|
|
sudo apt install gcc-aarch64-linux-gnu libc6-dev-arm64-cross wget -y
|
2021-10-18 15:37:01 +00:00
|
|
|
PLUGETH_UTILS_VERSION=$(grep "github.com/openrelayxyz/plugeth-utils v" go.mod | cut -d ' ' -f 2)
|
2021-08-25 18:32:30 +00:00
|
|
|
export GOPATH=$HOME/go
|
|
|
|
export GOARCH=amd64
|
2021-10-18 15:37:01 +00:00
|
|
|
export PLUGETH_UTILS_VERSION=$(grep "github.com/openrelayxyz/plugeth-utils v" go.mod | cut -d ' ' -f 2)
|
|
|
|
go build -o ./artifacts/geth-linux-amd64-$PLUGETH_UTILS_VERSION-${CIRCLE_TAG} ./cmd/geth
|
|
|
|
CC=aarch64-linux-gnu-gcc CGO_ENABLED=1 GOARCH=arm64 go build -o ./artifacts/geth-linux-arm64-$PLUGETH_UTILS_VERSION-${CIRCLE_TAG} ./cmd/geth
|
2021-08-25 18:32:30 +00:00
|
|
|
- run:
|
2021-10-18 15:37:01 +00:00
|
|
|
name: "Publish Release on GitHub"
|
2021-08-25 18:32:30 +00:00
|
|
|
command: |
|
2021-10-18 15:37:01 +00:00
|
|
|
go get github.com/tcnksm/ghr
|
|
|
|
PLUGETH_UTILS_VERSION=$(grep "github.com/openrelayxyz/plugeth-utils v" go.mod | cut -d ' ' -f 2)
|
|
|
|
NAME=plugeth-$PLUGETH_UTILS_VERSION-${CIRCLE_TAG}
|
|
|
|
VERSION=${CIRCLE_TAG}
|
|
|
|
ghr -draft -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -c ${CIRCLE_SHA1} -name $NAME -delete ${VERSION} ./artifacts/
|
2021-08-25 18:32:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
workflows:
|
|
|
|
version: 2
|
2021-10-18 19:49:48 +00:00
|
|
|
test:
|
|
|
|
jobs:
|
|
|
|
- test:
|
|
|
|
filters:
|
|
|
|
tags:
|
|
|
|
ignore: /^v.*/
|
2021-08-25 18:32:30 +00:00
|
|
|
build_and_test:
|
|
|
|
jobs:
|
2021-10-18 19:49:48 +00:00
|
|
|
- test:
|
2021-08-25 18:32:30 +00:00
|
|
|
filters:
|
|
|
|
tags:
|
|
|
|
only: /^v.*/
|
|
|
|
branches:
|
|
|
|
ignore: /.*/
|
2021-10-18 19:49:48 +00:00
|
|
|
- build_geth_push:
|
|
|
|
requires:
|
|
|
|
- test
|
2021-10-22 19:37:11 +00:00
|
|
|
filters:
|
|
|
|
tags:
|
|
|
|
only: /^v.*/
|