forked from anoma/namada
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: multicore * test(e2e): transfers * chore: cleanup * test(e2e): transfers * feat: ff multicore support * fix: multicore namada ff and e2e timeouts
- Loading branch information
1 parent
d373c9f
commit 5528a7f
Showing
34 changed files
with
496 additions
and
235 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,20 @@ | ||
const { spawnSync } = require("child_process"); | ||
|
||
const args = process.argv.filter((arg) => arg.match(/--\w+/)); | ||
const strippedArgs = new Set(args.map((arg) => arg.replace("--", ""))); | ||
|
||
const isRelease = strippedArgs.has("release"); | ||
const isMulticore = strippedArgs.has("multicore"); | ||
const taskShared = `wasm:build${!isRelease ? ":dev" : ""}${ | ||
isMulticore ? ":multicore" : "" | ||
}`; | ||
|
||
const taskCrypto = `wasm:build${!isRelease ? ":dev" : ""}`; | ||
|
||
spawnSync("yarn", ["workspace", "@namada/crypto", "run", taskCrypto], { | ||
stdio: "inherit", | ||
}); | ||
|
||
spawnSync("yarn", ["workspace", "@namada/shared", "run", taskShared], { | ||
stdio: "inherit", | ||
}); |
This file was deleted.
Oops, something went wrong.
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
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 @@ | ||
const { spawnSync } = require("child_process"); | ||
|
||
const args = process.argv.filter((arg) => arg.match(/--\w+/)); | ||
const strippedArgs = new Set(args.map((arg) => arg.replace("--", ""))); | ||
|
||
const isRelease = strippedArgs.has("release"); | ||
const isMulticore = strippedArgs.has("multicore"); | ||
const taskShared = `wasm:build${!isRelease ? ":dev" : ""}${ | ||
isMulticore ? ":multicore" : "" | ||
}`; | ||
const taskCrypto = `wasm:build${!isRelease ? ":dev" : ""}`; | ||
|
||
spawnSync("yarn", ["workspace", "@namada/crypto", "run", taskCrypto], { | ||
stdio: "inherit", | ||
}); | ||
|
||
spawnSync("yarn", ["workspace", "@namada/shared", "run", taskShared], { | ||
stdio: "inherit", | ||
}); |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.