mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2024-11-20 10:13:26 +01:00
495ab62104
* Tor packaged for testkit * Add CI row * Small fixes * More fixes * Keep tor running * Skip tor test for old version of bitcoind * Respond to review * Fix with master * Bump tor start time to same as app config * Use cached tor for DLCNodeTest * Disable parallel execution for dlc node test with tor * Fix DLCNodeTest for tor and clearnet * Fix name of CI rows
34 lines
802 B
YAML
34 lines
802 B
YAML
name: Tor Tests
|
|
env:
|
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
|
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 60
|
|
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
|
env:
|
|
TOR: "1"
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Setup Scala
|
|
uses: olafurpg/setup-scala@v10
|
|
with:
|
|
java-version: zulu@1.11
|
|
- name: Cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
~/.ivy2/cache
|
|
~/.sbt
|
|
~/.bitcoin-s/binaries
|
|
key: ${{ runner.os }}-cache
|
|
- name: run tests
|
|
run: sbt ++2.13.6 downloadBitcoind torTest/test nodeTest/test dlcNodeTest/test
|