Skip to content

Commit

Permalink
Merge branch 'release-v23' into sb-update-canonical-bytecode
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless authored May 7, 2024
2 parents 74ffddb + f9e9d3c commit 9c54bb1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 52 deletions.
File renamed without changes.
50 changes: 0 additions & 50 deletions .github/workflows/buld-release.yaml

This file was deleted.

4 changes: 3 additions & 1 deletion .github/workflows/slither.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,6 @@ jobs:
rm -rf ./l1-contracts/contracts/dev-contracts/test/VerifierRecursiveTest.sol
- name: Run Slither
run: slither --config ./l1-contracts/slither.config.json ./l1-contracts
run: |
cd l1-contracts
slither --config ./slither.config.json .
4 changes: 3 additions & 1 deletion system-contracts/scripts/compile-yul.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,11 @@ export async function compileYul(paths: CompilerPaths, file: string) {
export async function compileYulFolder(path: string) {
const paths = prepareCompilerPaths(path);
const files: string[] = (await fs.promises.readdir(path)).filter((fn) => fn.endsWith(".yul"));
const promises: Promise<void>[] = [];
for (const file of files) {
await compileYul(paths, `${file}`);
promises.push(compileYul(paths, `${file}`));
}
await Promise.all(promises);
}

async function main() {
Expand Down

0 comments on commit 9c54bb1

Please sign in to comment.