File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed
Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -72,13 +72,17 @@ jobs:
7272 uv lock
7373 uv sync --locked -v --all-packages --dev
7474
75+ - name : Download CLN versions
76+ run : |
77+ cd ./libs/cln-version-manager
78+ uv run --extra cli clnvm get-all
79+ echo "CLN Versions Installed"
80+
7581 - name : Run gltestserver in background
7682 shell : bash
7783 run : |
7884 mkdir -p $DATA_DIR
79- cd ./libs/cln-version-manager
80- uv run --extra cli clnvm get-all
81- cd ../gl-testserver
85+ cd ./libs/gl-testserver
8286 nohup uv run gltestserver run --directory $DATA_DIR > "$DATA_DIR"/gltestserver.log 2>&1 &
8387
8488 for i in {1..300}; do
@@ -94,10 +98,14 @@ jobs:
9498 echo "Waiting for metadata.json... ($i)"
9599 sleep 3
96100 done
97- echo "Waiting for 10 more seconds"
98- sleep 10
101+
102+ - name : Run Python getting_started example
103+ run : |
99104 echo "Using scheduler URI for Python snippets: $GL_SCHEDULER_GRPC_URI"
100105 uv run python examples/python/snippets/getting_started.py
106+
107+ - name : Run Rust getting_started example
108+ run : |
101109 echo "Using scheduler URI for Rust snippets: $GL_SCHEDULER_GRPC_URI"
102110 cargo run --manifest-path examples/rust/Cargo.toml --bin getting_started
103111
You can’t perform that action at this time.
0 commit comments