Skip to content

Fix sample cli and bitcoin rpc provider #1529

Fix sample cli and bitcoin rpc provider

Fix sample cli and bitcoin rpc provider #1529

Workflow file for this run

on:
push:
branches:
- master
- 'testci/**'
pull_request:
name: Continuous integration
jobs:
# lint:
# name: lint
# runs-on: ubuntu-latest
# timeout-minutes: 30
# steps:
# - uses: actions/checkout@v4
# - name: install clippy
# run: rustup component add clippy
# - name: Run clippy
# run: cargo clippy -- -D warnings
# no-std:
# name: no-std lint
# runs-on: ubuntu-latest
# timeout-minutes: 30
# steps:
# - uses: actions/checkout@v4
# - name: install clippy
# run: rustup component add clippy
# - name: Run clippy dlc
# run: cargo clippy --no-default-features --features no-std -p dlc -- -D warnings
# - name: Run clippy dlc-messages
# run: cargo clippy --no-default-features --features no-std -p dlc-messages -- -D warnings
# - name: Run clippy dlc-trie
# run: cargo clippy --no-default-features --features no-std -p dlc-trie -- -D warnings
# unit-tests:
# name: unit-tests
# runs-on: ubuntu-latest
# timeout-minutes: 30
# steps:
# - uses: actions/checkout@v4
# - name: Build
# run: cargo build --verbose
# - name: Test
# run: cargo test --verbose --all-features
#
# integration_tests_prepare:
# runs-on: ubuntu-latest
# timeout-minutes: 30
# outputs:
# matrix: ${{ steps.set-matrix.outputs.matrix }}
# steps:
# - uses: actions/cache@v3
# env:
# cache-name: test-cache
# with:
# path: target/debug/deps
# key: test-cache-${{ github.run_id }}-${{ github.run_number }}
# - uses: actions/checkout@v4
# - id: set-matrix
# run: cargo test --no-run && echo "::set-output name=matrix::$(scripts/get_test_list.sh execution manager channel_execution)"
# integration_tests:
# name: integration-tests
# needs: integration_tests_prepare
# runs-on: ubuntu-latest
# timeout-minutes: 30
# strategy:
# matrix:
# tests: ${{ fromJson(needs.integration_tests_prepare.outputs.matrix) }}
# steps:
# - uses: actions/checkout@v4
# - uses: actions/cache@v3
# env:
# cache-name: test-cache
# with:
# path: target/debug/deps
# key: test-cache-${{ github.run_id }}-${{ github.run_number }}
# - name: Start bitcoin node
# run: docker compose up -d
# - name: Wait for container to run
# run: ./scripts/wait_for_container.sh bitcoin-node
# - name: Wait for electrs to be ready
# run: ./scripts/wait_for_electrs.sh
# - name: Run test
# run: RUST_BACKTRACE=1 ${{ matrix.tests }} --ignored
# - name: Stop bitcoin node
# run: ./scripts/stop_node.sh
sample_test:
name: sample-test
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Start environment
run: docker compose --profile oracle up -d
- name: Wait for container to run
run: ./scripts/wait_for_container.sh oracle-server
- name: Wait for electrs to be ready
run: ./scripts/wait_for_electrs.sh
- name: Run test
run: |
if ! cargo test -- --ignored sample; then
ls
ls sample/
cat sample/dlc_sample_alice/.dlc/logs/logs.txt
cat sample/dlc_sample_bob/.dlc/logs/logs.txt
fi