Skip to content

Commit

Permalink
upload sources as artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
drortirosh committed Oct 9, 2024
1 parent e8b4a67 commit eabfd38
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,13 @@ jobs:
- run: cd bundler-spec-tests; git checkout
name: "re-checkout bundler-spec-tests (on top of cache)"

- name: checked-out source artifacts
uses: actions/upload-artifact@v4
with:
name: sourceTree
path: .
retention-days: 30

#for faster "update-deps" for spec
- run: yarn --cwd bundler-spec-tests/spec remove gatsby || echo "already removed"

Expand Down
2 changes: 1 addition & 1 deletion bundler-spec-tests
Submodule bundler-spec-tests updated 67 files
+112 −20 .circleci/config.yml
+1 −0 .gitignore
+3 −0 .gitmodules
+1 −1 @account-abstraction
+1 −0 @rip7560
+19 −6 README.md
+23 −0 docker/Dockerfile
+822 −661 pdm.lock
+5 −3 pyproject.toml
+13 −0 scripts/clone-helper
+1 −1 spec
+52 −16 tests/conftest.py
+1 −1 tests/contracts/Helper.sol
+3 −1 tests/contracts/ITestAccount.sol
+7 −0 tests/contracts/SimpleWallet.sol
+1 −1 tests/contracts/Stakable.sol
+1 −1 tests/contracts/TestCodeHashFactory.sol
+1 −1 tests/contracts/TestCoin.sol
+4 −0 tests/contracts/TestReputationAccount.sol
+29 −0 tests/contracts/TestReputationAccountFactory.sol
+1 −1 tests/contracts/TestRulesAccount.sol
+1 −1 tests/contracts/TestRulesAccountFactory.sol
+1 −1 tests/contracts/TestRulesAggregator.sol
+1 −1 tests/contracts/TestRulesFactory.sol
+2 −2 tests/contracts/TestRulesPaymaster.sol
+52 −4 tests/contracts/ValidationRules.sol
+26 −0 tests/contracts/rip7560/OpcodesTestAccount.sol
+11 −0 tests/contracts/rip7560/OpcodesTestAccountFactory.sol
+30 −0 tests/contracts/rip7560/OpcodesTestPaymaster.sol
+57 −0 tests/contracts/rip7560/RIP7560Deployer.sol
+29 −0 tests/contracts/rip7560/RIP7560NonceManager.sol
+57 −0 tests/contracts/rip7560/RIP7560Paymaster.sol
+51 −0 tests/contracts/rip7560/RIP7560TestRulesAccount.sol
+27 −0 tests/contracts/rip7560/RIP7560TestRulesAccountDeployer.sol
+20 −0 tests/contracts/rip7560/RIP7560TransactionType4.sol
+70 −0 tests/contracts/rip7560/TestAccount.sol
+12 −0 tests/contracts/rip7560/TestAccountFactory.sol
+10 −0 tests/contracts/rip7560/TestCounter.sol
+27 −0 tests/contracts/rip7560/TestPaymaster.sol
+39 −0 tests/contracts/rip7560/TestPostOpPaymaster.sol
+32 −0 tests/contracts/rip7560/gaswaste/GasWasteAccount.sol
+33 −0 tests/contracts/rip7560/gaswaste/GasWastePaymaster.sol
+138 −0 tests/contracts/rip7560/utils/TestUtils.sol
+1 −0 tests/p2p/test_p2p.py
+0 −0 tests/rip7560/__init__.py
+109 −0 tests/rip7560/conftest.py
+20 −0 tests/rip7560/devnet/test_devnet.py
+139 −0 tests/rip7560/test_env_opcodes.py
+81 −0 tests/rip7560/test_gas_usage.py
+603 −0 tests/rip7560/test_rip7560.py
+55 −0 tests/rip7560/test_rip7712.py
+318 −0 tests/rip7560/test_send_failed.py
+150 −0 tests/rip7560/test_validation_rules.py
+86 −0 tests/rip7560/types.py
+46 −39 tests/single/bundle/test_bundle.py
+8 −5 tests/single/bundle/test_codehash.py
+47 −0 tests/single/bundle/test_paymaster.py
+186 −110 tests/single/bundle/test_storage_rules.py
+43 −1 tests/single/opbanning/test_op_banning.py
+113 −0 tests/single/reputation/test_erep.py
+8 −6 tests/single/reputation/test_reputation.py
+6 −2 tests/single/rpc/conftest.py
+7 −5 tests/single/rpc/test_eth_estimateUserOperationGas.py
+1 −1 tests/single/rpc/test_eth_getUserOperationReceipt.py
+5 −4 tests/single/rpc/test_eth_sendUserOperation.py
+29 −3 tests/types.py
+129 −48 tests/utils.py

0 comments on commit eabfd38

Please sign in to comment.