Skip to content

Commit

Permalink
ci: adjust tests for cli 10.2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
johnalotoski committed Jan 10, 2025
1 parent f7cd919 commit e71a694
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/nix-jobs-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,11 @@ jobs:
rm -rf workbench
for i in ${JOBS[@]}; do
echo "Running nix job .#$i"
nix run ".#$i"
if [ "$UNSTABLE" = "true" ] && [ "$i" = "job-gen-custom-node-config-data" ]; then
ERA_CMD="conway" nix run ".#$i"
else
nix run ".#$i"
fi
done
}
Expand Down

0 comments on commit e71a694

Please sign in to comment.