Skip to content

Commit

Permalink
ci debug 5
Browse files Browse the repository at this point in the history
  • Loading branch information
YusukeShimizu committed Jun 30, 2024
1 parent c00afba commit 4978149
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 11 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,12 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Install Nix
uses: determinateSystems/nix-installer-action@v12
- uses: DeterminateSystems/magic-nix-cache-action@v7
- uses: DeterminateSystems/flake-checker-action@v8
- run: nix-shell --run "make test-${{matrix.test-vector}}"
if: ${{ matrix.test-vector == 'bitcoin-cln' }}

- name: Run integration tests
run: nix-shell --run "make test-${{matrix.test-vector}}"
24 changes: 14 additions & 10 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@
blockstream-electrs = pkgs2.blockstream-electrs.overrideAttrs (oldAttrs: {
cargoBuildFlags = [ "--features liquid" "--bin electrs" ];
});
# Override priority for bitcoin as /bin/bitcoin_test will
# confilict with /bin/bitcoin_test from elementsd.
bitcoind = pkgs.bitcoind.overrideAttrs (attrs: {
meta = attrs.meta or { } // { priority = 0; };
});
Expand Down

0 comments on commit 4978149

Please sign in to comment.