-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added ability to build tests from a local js-soroban-client folder path
- Loading branch information
Showing
3 changed files
with
31 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
This is a placeholder file only. | ||
|
||
the system-teset/js-soroban-client directory can be used if you want to build system-test | ||
with a local file path for the js-soroban-client project rather than pulling it from remote | ||
npm or gh ref. | ||
|
||
js-soroban-client$ `yarn build` | ||
|
||
then copy the entire js-soroban-client directory over the top of system-test/js-soroban-client, | ||
or soft link the directories, but be careful in soft link case as you don't want to accidentally delete, etc. | ||
|
||
once you have the system-teset/js-soroban-client ready, then build system-test and trigger it to use with: | ||
|
||
``` | ||
make .... JS_SOROBAN_CLIENT_NPM_VERSION=file:/home/tester/js-soroban-client build | ||
``` | ||
|
||
system-teset/js-soroban-client is copied to the `/home/tester/js-soroban-client` path in the docker image. |