Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update CI flow to use the new runner
  • Loading branch information
obrok committed Nov 22, 2022
commit bfc563a14a64876de96fcaea69b0b528b5eb163e
4 changes: 3 additions & 1 deletion .github/workflows/e2e-tests-main-devnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,9 @@ jobs:
- name: Build binary and docker image
run: |
cd e2e-tests/
cargo build --release
rm -f target/release/deps/aleph_e2e_client*
cargo test --no-run --release
cp $(find target/release/deps/ -executable | grep aleph_e2e_client | head) target/release/aleph-e2e-client
docker build --tag aleph-e2e-client:latest -f Dockerfile .
docker save -o aleph-e2e-client.tar aleph-e2e-client:latest

Expand Down
2 changes: 2 additions & 0 deletions e2e-tests/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
target
!target/release/aleph-e2e-client
2 changes: 1 addition & 1 deletion e2e-tests/docker_entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ if [[ -n "${UPGRADE_VERSION:-}" && -n "${UPGRADE_SESSION:-}" && -n "${UPGRADE_FI
)
fi

aleph-e2e-client "${ARGS[@]}"
E2E_CONFIG="${ARGS[*]}" aleph-e2e-client $TEST_CASES --nocapture

echo "Done!"