-
Notifications
You must be signed in to change notification settings - Fork 681
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into feat/rpc-endpoints-to-fetch-data-from-key
- Loading branch information
Showing
273 changed files
with
37,680 additions
and
23,067 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
name: Signer Bug | ||
about: Create a report to help us improve the signer | ||
title: "[SIGNER BUG]" | ||
labels: signer | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**Steps To Reproduce** | ||
Please provide detailed instructions (e.g. command line invocation with parameters) to reproduce the behavior. | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Environment (please complete the following information):** | ||
- OS: [e.g. Ubuntu / Debian] | ||
- Rust version | ||
- Version of the appropriate binary / software packages | ||
- Signer public key | ||
- Relevant log messages | ||
- Tx ID of any transaction you were trying to execute | ||
- Tx ID of `aggregation-commit-indexed` call in registered cycle (if applicable) | ||
|
||
|
||
**Additional context** | ||
Please include any relevant stack traces, error messages and logs. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
## Github workflow to run p2p tests | ||
|
||
name: Tests::P2P | ||
|
||
on: | ||
workflow_call: | ||
|
||
## env vars are transferred to composite action steps | ||
env: | ||
BITCOIND_TEST: 0 | ||
RUST_BACKTRACE: full | ||
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 15 | ||
TEST_TIMEOUT: 30 | ||
|
||
concurrency: | ||
group: stackslib-tests-${{ github.head_ref || github.ref || github.run_id}} | ||
## Only cancel in progress if this is for a PR | ||
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | ||
|
||
jobs: | ||
# p2p integration tests with code coverage | ||
integration-tests: | ||
name: Integration Tests | ||
runs-on: ubuntu-latest | ||
strategy: | ||
## Continue with the test matrix even if we've had a failure | ||
fail-fast: false | ||
## Run a maximum of 32 concurrent tests from the test matrix | ||
max-parallel: 32 | ||
matrix: | ||
test-name: | ||
- net::tests::convergence::test_walk_ring_allow_15 | ||
- net::tests::convergence::test_walk_ring_15_plain | ||
- net::tests::convergence::test_walk_ring_15_pingback | ||
- net::tests::convergence::test_walk_ring_15_org_biased | ||
- net::tests::convergence::test_walk_line_allowed_15 | ||
- net::tests::convergence::test_walk_line_15_plain | ||
- net::tests::convergence::test_walk_line_15_org_biased | ||
- net::tests::convergence::test_walk_line_15_pingback | ||
- net::tests::convergence::test_walk_star_allowed_15 | ||
- net::tests::convergence::test_walk_star_15_plain | ||
- net::tests::convergence::test_walk_star_15_pingback | ||
- net::tests::convergence::test_walk_star_15_org_biased | ||
- net::tests::convergence::test_walk_inbound_line_15 | ||
steps: | ||
## Setup test environment | ||
- name: Setup Test Environment | ||
id: setup_tests | ||
uses: stacks-network/actions/stacks-core/testenv@main | ||
with: | ||
btc-version: "25.0" | ||
|
||
## Increase open file descriptors limit | ||
- name: Increase Open File Descriptors | ||
run: | | ||
sudo prlimit --nofile=4096:4096 | ||
## Run test matrix using restored cache of archive file | ||
## - Test will timeout after env.TEST_TIMEOUT minutes | ||
- name: Run Tests | ||
id: run_tests | ||
timeout-minutes: ${{ fromJSON(env.TEST_TIMEOUT) }} | ||
uses: stacks-network/actions/stacks-core/run-tests@main | ||
with: | ||
test-name: ${{ matrix.test-name }} | ||
threads: 1 | ||
|
||
## Create and upload code coverage file | ||
- name: Code Coverage | ||
id: codecov | ||
uses: stacks-network/actions/codecov@main | ||
with: | ||
test-name: ${{ matrix.test-name }} | ||
|
||
check-tests: | ||
name: Check Tests | ||
runs-on: ubuntu-latest | ||
if: always() | ||
needs: | ||
- integration-tests | ||
steps: | ||
- name: Check Tests Status | ||
id: check_tests_status | ||
uses: stacks-network/actions/check-jobs-status@main | ||
with: | ||
jobs: ${{ toJson(needs) }} | ||
summary_print: "true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.