-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Apply diff patch from issue * Remove artifacts * Add script to check git ignore * Add check to CI * Update CI, update makefile * Fix CI * Fix path in copy-precompiles * Add missing cross dependency * Add missing cargo-cross * Update ci, makefile * Fix clean target on makefile * Fix pairing suggestion * Update solc install step in CI --------- Co-authored-by: Francisco Krause Arnim <fran@MBPdeFrancisco.fibertel.com.ar> Co-authored-by: IAvecilla <ignacio.avecilla@lambdaclass.com>
- Loading branch information
1 parent
bf19db4
commit bc5be81
Showing
13 changed files
with
62 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
era_test_node.log | ||
submodules/era_test_node | ||
tests/gas_reports | ||
src/deps/contracts/EcAdd.yul.zbin | ||
src/deps/contracts/EcAddG2.yul.zbin | ||
src/deps/contracts/EcMul.yul.zbin | ||
src/deps/contracts/EcMulG2.yul.zbin | ||
src/deps/contracts/EcPairing.yul.zbin | ||
src/deps/contracts/ModExp.yul.zbin | ||
src/deps/contracts/P256VERIFY.yul.zbin | ||
src/deps/contracts/secp256k1VERIFY.yul.zbin |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,17 @@ | ||
#!/bin/bash | ||
missing_pattern=0 | ||
for file in $(ls ./precompiles/*.yul); do | ||
# Extract the base name of the file | ||
filename=$(basename "$file") | ||
filename="${filename%.yul}" | ||
# Generate the pattern for .gitignore | ||
gitignore_pattern="src/deps/contracts/${filename}.yul.zbin" | ||
# Check if the pattern exists in .gitignore | ||
if ! grep -qF "$gitignore_pattern" .gitignore; then | ||
echo "File: $filename.yul.zbin should be on the gitignore file" | ||
missing_pattern=1 | ||
fi | ||
done | ||
if [ $missing_pattern -eq 1 ]; then | ||
exit 1 | ||
fi |