-
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.
Add tests and peripherals into the build.
Having tests and peripherals in the build allows simply downloading the archived build artifact and having everything necessary to run integration tests. Update node.yaml workflow for using only the build artifact. It no longer needs to clone the eos-evm-node repository.
- Loading branch information
1 parent
d2f4a57
commit 224b6e5
Showing
8 changed files
with
40 additions
and
24 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 @@ | ||
add_subdirectory( tx_wrapper ) |
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,4 @@ | ||
configure_file( index.js . COPYONLY ) | ||
configure_file( package-lock.json . COPYONLY ) | ||
configure_file( package.json . COPYONLY ) | ||
configure_file( yarn.lock . COPYONLY ) |
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,5 @@ | ||
add_subdirectory( nodeos_eos_evm_server ) | ||
|
||
configure_file(antelope_name.py . COPYONLY) | ||
configure_file(nodeos_eos_evm_server.py . COPYONLY) | ||
configure_file(nodeos_eos_evm_test.py . COPYONLY) |
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,7 @@ | ||
add_subdirectory( contracts ) | ||
add_subdirectory( scripts ) | ||
|
||
configure_file( extract-logtime-cmd.sh . COPYONLY ) | ||
configure_file( hardhat.config.js . COPYONLY ) | ||
configure_file( package.json . COPYONLY ) | ||
configure_file( yarn.lock . COPYONLY ) |
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,9 @@ | ||
configure_file( BlockNum.sol . COPYONLY ) | ||
configure_file( Blockhash.sol . COPYONLY ) | ||
configure_file( CMakeLists.txt . COPYONLY ) | ||
configure_file( Eventor.sol . COPYONLY ) | ||
configure_file( Lock.sol . COPYONLY ) | ||
configure_file( Recursive.sol . COPYONLY ) | ||
configure_file( Storage.sol . COPYONLY ) | ||
configure_file( Token.sol . COPYONLY ) | ||
configure_file( WEOS.sol . COPYONLY ) |
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,7 @@ | ||
configure_file( deploy-blockhash.js . COPYONLY ) | ||
configure_file( deploy-blocknum.js . COPYONLY ) | ||
configure_file( deploy-eventor.js . COPYONLY ) | ||
configure_file( deploy-recursive.js . COPYONLY ) | ||
configure_file( deploy-token.js . COPYONLY ) | ||
configure_file( deploy-uniswap.js . COPYONLY ) | ||
configure_file( deploy.js . COPYONLY ) |