-
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 pull request #2295 from blockstack/next
Merge `next` into `master`
- Loading branch information
Showing
63 changed files
with
57,245 additions
and
70,061 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,16 @@ | ||
FROM rust:buster | ||
|
||
WORKDIR /src | ||
|
||
COPY . . | ||
|
||
RUN cargo test --no-run --workspace | ||
|
||
RUN cd / && wget https://bitcoin.org/bin/bitcoin-core-0.20.0/bitcoin-0.20.0-x86_64-linux-gnu.tar.gz | ||
RUN cd / && tar -xvzf bitcoin-0.20.0-x86_64-linux-gnu.tar.gz | ||
|
||
RUN ln -s /bitcoin-0.20.0/bin/bitcoind /bin/ | ||
|
||
ENV BITCOIND_TEST 1 | ||
WORKDIR /src/testnet/stacks-node | ||
RUN cargo test -- --test-threads 1 --ignored tests::neon_integrations::atlas_integration_test |
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,27 @@ | ||
name: stacks-bitcoin-integration-tests | ||
|
||
# Only run on PRs | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
# Run sampled genesis tests | ||
sampled-genesis: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: All integration tests with sampled genesis | ||
env: | ||
DOCKER_BUILDKIT: 1 | ||
run: docker build -f ./.github/actions/bitcoin-int-tests/Dockerfile.bitcoin-tests . | ||
atlas-test: | ||
# disable this job/test for now, since we haven't seen this pass | ||
# on github actions in a while | ||
if: ${{ false }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: All integration tests with sampled genesis | ||
env: | ||
DOCKER_BUILDKIT: 1 | ||
run: docker build -f ./.github/actions/bitcoin-int-tests/Dockerfile.atlas-test . |
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.