File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ jobs:
20
20
with :
21
21
submodules : true
22
22
23
- - name : ❄ Setup Nix/Cachix
23
+ - name : Setup Nix/Cachix
24
24
uses : ./.github/actions/nix-cachix-setup
25
25
with :
26
26
authToken : ' ${{ secrets.CACHIX_CARDANO_SCALING_AUTH_TOKEN }}'
27
27
28
- - name : ❄ Check demo test
28
+ - name : Check demo test
29
29
run : |
30
30
nix develop .#demo -c bash -c "cd demo && ./test.sh"
31
31
Original file line number Diff line number Diff line change @@ -33,6 +33,13 @@ echo "--- Seeding devnet"
33
33
export CARDANO_NODE_SOCKET_PATH=devnet/node.socket
34
34
./seed-devnet.sh $( which cardano-cli) $( which hydra-node) --mainnet-era babbage
35
35
36
+ echo " --- Checking for seed script output"
37
+ if [ ! -f " .env" ] || ! grep -q " HYDRA_SCRIPTS_TX_ID" " .env" ; then
38
+ echo " FAIL: Seed script did not produce a valid .env file"
39
+ exit 1
40
+ fi
41
+ echo " .env file found and seems valid."
42
+
36
43
echo " --- Starting hydra-node"
37
44
source .env
38
45
hydra-node \
You can’t perform that action at this time.
0 commit comments