Skip to content

Commit

Permalink
Pass arguments correctly to nix run
Browse files Browse the repository at this point in the history
  • Loading branch information
noonio committed Sep 13, 2024
1 parent 6786bbf commit 20c212f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/network-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
- name: Setup containers for network testing
run: |
set -exo pipefail
cd demo
./prepare-devnet.sh
docker compose up -d cardano-node
Expand All @@ -74,9 +76,10 @@ jobs:
--node-socket devnet/node.socket \
--cardano-signing-key devnet/credentials/faucet.sk)
echo "HYDRA_SCRIPTS_TX_ID=$HYDRA_SCRIPTS_TX_ID" >> .env
echo "HYDRA_SCRIPTS_TX_ID=$HYDRA_SCRIPTS_TX_ID" > .env
nix run .#cardano-cli query protocol-parameters \
nix run .#cardano-cli -- query protocol-parameters \
--testnet-magic 42 \
--socket-path devnet/node.socket \
--out-file /dev/stdout \
| jq ".txFeeFixed = 0 | .txFeePerByte = 0 | .executionUnitPrices.priceMemory = 0 | .executionUnitPrices.priceSteps = 0" \
Expand Down

0 comments on commit 20c212f

Please sign in to comment.