Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: revert #401 #413

Merged
merged 1 commit into from
Dec 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
fi

# Prebuild the program so that we can run the following script faster
export FNN="$(cargo build --message-format=json-render-diagnostics | jq -js '[.[] | select(.reason == "compiler-artifact") | select(.executable != null)] | last | .executable')"
cargo build
cd tests/deploy/udt-init && cargo build && cd -
if [ ${{ matrix.workflow }} = "router-pay" ]; then
export START_BOOTNODE=y
Expand Down
7 changes: 2 additions & 5 deletions tests/nodes/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,13 @@ echo "Initializing finished, begin to start services ...."
sleep 1

ckb run -C "$deploy_dir/node-data" --indexer &
cargo build

# Start the dev node in the background.
cd "$nodes_dir" || exit 1

start() {
if [ -n "$FNN" ]; then
"$FNN" "$@"
else
cargo run -- "$@"
fi
../../target/debug/fnn "$@"
}

if [ "$#" -ne 1 ]; then
Expand Down
Loading