Skip to content

Commit

Permalink
CI: Run bash scripts with -x
Browse files Browse the repository at this point in the history
  • Loading branch information
kristapsk committed Jan 8, 2025
1 parent be8f9e9 commit da5603a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Setup joinmarket + virtualenv
if: steps.cache-venv.outputs.cache-hit != 'true'
run: |
./install.sh --develop --with-qt
bash -x ./install.sh --develop --with-qt
./jmvenv/bin/python -m pip install --upgrade pip
- name: Lint with flake8
run: source ./jmvenv/bin/activate && ./test/lint/lint-python.sh
Expand All @@ -48,7 +48,7 @@ jobs:
- name: Install bitcoind
env:
BITCOIND_VERSION: ${{ matrix.bitcoind-version }}
run: ./test/testrunner/install_bitcoind.sh
run: bash -x ./test/testrunner/install_bitcoind.sh
- name: Cache miniircd
uses: actions/cache@v3
env:
Expand All @@ -57,4 +57,4 @@ jobs:
path: miniircd/miniircd
key: ${{ runner.os }}-${{ env.cache-name }}-${{ hashFiles('test/run_tests.sh') }}
- name: Run tests
run: source ./jmvenv/bin/activate && ./test/run_tests.sh
run: source ./jmvenv/bin/activate && bash -x ./test/run_tests.sh

0 comments on commit da5603a

Please sign in to comment.