Skip to content

Commit ac3643a

Browse files
committed
full up
1 parent cf35adc commit ac3643a

File tree

1 file changed

+8
-9
lines changed

1 file changed

+8
-9
lines changed

.github/workflows/localnet-test.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,9 @@ jobs:
6767
run: sudo nerdctl image load --input $TMP_DIR/nyxd
6868

6969
- name: Check out repository code
70-
uses: actions/checkout@v4
70+
uses: actions/checkout@v6
7171
with:
72+
path: 'nym'
7273
repository: nymtech/nym
7374
ref: ${{ inputs.ref }}
7475

@@ -80,19 +81,17 @@ jobs:
8081
override: true
8182
components: rustfmt, clippy
8283

84+
8385
- name: Build localnet orchestrator binary
84-
uses: actions-rs/cargo@v1
85-
with:
86-
command: build
87-
# for current test don't waste time with release build
88-
# args: --release --bin localnet-orchestrator
89-
args: --bin localnet-orchestrator
86+
working-directory: nym
87+
# for current test don't waste time with release build
88+
run: cargo build --bin localnet-orchestrator
9089

9190
- name: Run basic prerequisites check
92-
run: sudo ./target/debug/localnet-orchestrator check-prerequisites
91+
run: sudo ./nym/target/debug/localnet-orchestrator check-prerequisites
9392

9493
- name: Test nyxd
95-
run: sudo RUST_LOG=debug ./target/debug/localnet-orchestrator initialise-nyxd
94+
run: sudo RUST_LOG=debug ./nym/target/debug/localnet-orchestrator up --monorepo-root nym
9695
env:
9796
RUST_LOG: debug
9897

0 commit comments

Comments
 (0)