mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-09 14:43:19 +00:00
Implementation spec of Double Signing Risk Reduction [ADR-51](https://github.com/tendermint/tendermint/blob/master/docs/architecture/adr-051-double-signing-risk-reduction.md) by B-Harvest - Add `DoubleSignCheckHeight` config variable to ConsensusConfig for "How many blocks looks back to check existence of the node's consensus votes when before joining consensus" - Add `consensus.double_sign_check_height` to `config.toml` and `tendermint node` as flag for set `DoubleSignCheckHeight` - Set default `consensus.double_sign_check_height` to `0` ( it could be adjustable in this PR, disable when 0 ) Refs - [ADR-51](https://github.com/tendermint/tendermint/blob/master/docs/architecture/adr-051-double-signing-risk-reduction.md) - [https://github.com/tendermint/tendermint/issues/4059](https://github.com/tendermint/tendermint/issues/4059) - [https://github.com/tendermint/tendermint/pull/4262](https://github.com/tendermint/tendermint/pull/4262)
139 lines
4.0 KiB
YAML
139 lines
4.0 KiB
YAML
name: Test Coverage
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- release/**
|
|
|
|
jobs:
|
|
split-test-files:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Create a file with all the pkgs
|
|
run: go list ./... > pkgs.txt
|
|
- name: Split pkgs into 4 files
|
|
run: split -n l/4 --additional-suffix=.txt ./pkgs.txt
|
|
# cache multiple
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: "${{ github.sha }}-aa"
|
|
path: ./xaa.txt
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: "${{ github.sha }}-ab"
|
|
path: ./xab.txt
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: "${{ github.sha }}-ac"
|
|
path: ./xac.txt
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: "${{ github.sha }}-ad"
|
|
path: ./xad.txt
|
|
|
|
test-coverage-part-1:
|
|
runs-on: ubuntu-latest
|
|
needs: split-test-files
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: technote-space/get-diff-action@v3
|
|
with:
|
|
SUFFIX_FILTER: |
|
|
.go
|
|
.mod
|
|
.sum
|
|
SET_ENV_NAME_INSERTIONS: 1
|
|
SET_ENV_NAME_LINES: 1
|
|
- uses: actions/download-artifact@v2
|
|
with:
|
|
name: "${{ github.sha }}-aa"
|
|
if: "env.GIT_DIFF != ''"
|
|
- name: test & coverage report creation
|
|
run: |
|
|
cat xaa.txt | xargs go test -mod=readonly -timeout 8m -race -coverprofile=coverage.txt -covermode=atomic
|
|
if: "env.GIT_DIFF != ''"
|
|
- uses: codecov/codecov-action@v1.0.13
|
|
with:
|
|
file: ./coverage.txt
|
|
if: "env.GIT_DIFF != ''"
|
|
|
|
test-coverage-part-2:
|
|
runs-on: ubuntu-latest
|
|
needs: split-test-files
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: technote-space/get-diff-action@v3
|
|
with:
|
|
SUFFIX_FILTER: |
|
|
.go
|
|
.mod
|
|
.sum
|
|
SET_ENV_NAME_INSERTIONS: 1
|
|
SET_ENV_NAME_LINES: 1
|
|
- uses: actions/download-artifact@v2
|
|
with:
|
|
name: "${{ github.sha }}-ab"
|
|
if: "env.GIT_DIFF != ''"
|
|
- name: test & coverage report creation
|
|
run: |
|
|
cat xab.txt | xargs go test -mod=readonly -timeout 5m -race -coverprofile=coverage.txt -covermode=atomic
|
|
if: "env.GIT_DIFF != ''"
|
|
- uses: codecov/codecov-action@v1.0.13
|
|
with:
|
|
file: ./coverage.txt
|
|
if: "env.GIT_DIFF != ''"
|
|
|
|
test-coverage-part-3:
|
|
runs-on: ubuntu-latest
|
|
needs: split-test-files
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: technote-space/get-diff-action@v3
|
|
with:
|
|
SUFFIX_FILTER: |
|
|
.go
|
|
.mod
|
|
.sum
|
|
SET_ENV_NAME_INSERTIONS: 1
|
|
SET_ENV_NAME_LINES: 1
|
|
- uses: actions/download-artifact@v2
|
|
with:
|
|
name: "${{ github.sha }}-ac"
|
|
if: "env.GIT_DIFF != ''"
|
|
- name: test & coverage report creation
|
|
run: |
|
|
cat xac.txt | xargs go test -mod=readonly -timeout 10m -race -coverprofile=coverage.txt -covermode=atomic
|
|
if: "env.GIT_DIFF != ''"
|
|
- uses: codecov/codecov-action@v1.0.13
|
|
with:
|
|
file: ./coverage.txt
|
|
if: "env.GIT_DIFF != ''"
|
|
|
|
test-coverage-part-4:
|
|
runs-on: ubuntu-latest
|
|
needs: split-test-files
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: technote-space/get-diff-action@v3
|
|
with:
|
|
SUFFIX_FILTER: |
|
|
.go
|
|
.mod
|
|
.sum
|
|
SET_ENV_NAME_INSERTIONS: 1
|
|
SET_ENV_NAME_LINES: 1
|
|
- uses: actions/download-artifact@v2
|
|
with:
|
|
name: "${{ github.sha }}-ad"
|
|
if: "env.GIT_DIFF != ''"
|
|
- name: test & coverage report creation
|
|
run: |
|
|
cat xad.txt | xargs go test -mod=readonly -timeout 5m -race -coverprofile=coverage.txt -covermode=atomic
|
|
if: "env.GIT_DIFF != ''"
|
|
- uses: codecov/codecov-action@v1.0.13
|
|
with:
|
|
file: ./coverage.txt
|
|
if: "env.GIT_DIFF != ''"
|