mirror of
https://github.com/QuilibriumNetwork/ceremonyclient.git
synced 2026-03-01 22:37:27 +08:00
* v2.1.0 [omit consensus and adjacent] - this commit will be amended with the full release after the file copy is complete * 2.1.0 main node rollup
18 lines
807 B
YAML
18 lines
807 B
YAML
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: increase the UDP receive buffer size # see https://github.com/lucas-clemente/quic-go/wiki/UDP-Receive-Buffer-Size
|
|
shell: bash
|
|
run: sysctl -w net.core.rmem_max=2500000
|
|
if: ${{ matrix.os == 'ubuntu' }}
|
|
- name: Run nocover tests. These are tests that require the coverage analysis to be off # See https://github.com/protocol/.github/issues/460
|
|
shell: bash
|
|
# This matches only tests with "NoCover" in their test name to avoid running all tests again.
|
|
run: go test -tags nocover -run NoCover -v ./...
|
|
- name: Install testing tools
|
|
shell: bash
|
|
run: cd scripts/test_analysis && go install ./cmd/gotest2sql
|
|
- name: Install test_analysis
|
|
shell: bash
|
|
run: cd scripts/test_analysis && go install .
|