-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[GA] run encointer node in docker image in CI + fix integration tests (…
…#104) * [GA] run encointer node in docker image in CI * [node-api/e2e-ksm] fix test name * [node-api/e2e] apply lint * [node-api/e2e] minor registering refactoring and fix ordering of registrations * bump encointer node docker image * [node-api/e2e] give funds to charlie again * [node-api/e2e] update transfer tx to transferKeepAlive
- Loading branch information
Showing
4 changed files
with
37 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
set -euxo pipefail | ||
|
||
DOCKER_TAG=${1:-1.8.3} | ||
|
||
echo "Encointer node docker tag: ${DOCKER_TAG}" | ||
|
||
docker run -p 30333:30333 -p 9944:9944 -p 9933:9933 -p 9615:9615 \ | ||
encointer/encointer-node-notee:${DOCKER_TAG} \ | ||
--dev \ | ||
--enable-offchain-indexing true \ | ||
--rpc-methods unsafe \ | ||
-lencointer=debug,parity_ws=warn \ | ||
--rpc-external \ |