Skip to content

Commit

Permalink
chore: make sure coordinator/maker are cached
Browse files Browse the repository at this point in the history
  • Loading branch information
bonomat committed Feb 12, 2024
1 parent dc08b97 commit 4a62d47
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,10 @@ jobs:
env:
cache-name: test-cache
with:
path: target/debug/deps
path: |
target/debug/deps
target/debug/coordinator
target/debug/maker
key: test-cache-${{ github.run_id }}-${{ github.run_number }}
- name: Download RUST FFI bindings
uses: actions/download-artifact@v2
Expand Down Expand Up @@ -237,7 +240,10 @@ jobs:
env:
cache-name: test-cache
with:
path: target/debug/deps
path: |
target/debug/deps
target/debug/coordinator
target/debug/maker
key: test-cache-${{ github.run_id }}-${{ github.run_number }}
- uses: extractions/setup-just@v1
- name: Start containers
Expand All @@ -257,6 +263,7 @@ jobs:
just wait-for-electrs-to-be-ready
echo "Starting coordinator"
ls -lah ./target/debug/
./target/debug/coordinator &> $PWD/data/coordinator/regtest.log &
just wait-for-coordinator-to-be-ready
echo "Coordinator successfully started."
Expand Down

0 comments on commit 4a62d47

Please sign in to comment.