From bae24fee10515f8538b0cc5bce3dc062759fb04a Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:02:50 +0900 Subject: [PATCH 01/14] ci --- .github/workflows/test.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f923418c..621917ab 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -2,12 +2,12 @@ name: ci on: pull_request: - branches: [dev] + branches: [dev,fix/ci] paths: - '**.sol' - '**.yml' push: - branches: [dev] + branches: [dev,fix/ci] paths: - '**.sol' - '**.yml' @@ -30,6 +30,9 @@ jobs: - name: Install Dependencies run: forge install + + - name: show list + run: ls - name: Run Tests with ${{ matrix.profile }} run: > From 8c639edc3ca9074fcdb2d012d58fe21ed08e95fa Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:03:54 +0900 Subject: [PATCH 02/14] ci --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 621917ab..eee76d38 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -34,6 +34,9 @@ jobs: - name: show list run: ls + - name : pwd + run: pwd + - name: Run Tests with ${{ matrix.profile }} run: > ( [ "${{ matrix.profile }}" = "post-cancun" ] && From ca7ac08b0d739ee07629dd673761fe379968b8f0 Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:04:52 +0900 Subject: [PATCH 03/14] fmt --- src/signer/MultiSignatureSigner.sol | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/signer/MultiSignatureSigner.sol b/src/signer/MultiSignatureSigner.sol index 4e4f3e90..fe21f106 100644 --- a/src/signer/MultiSignatureSigner.sol +++ b/src/signer/MultiSignatureSigner.sol @@ -23,15 +23,17 @@ struct ECDSAValidatorStorage { contract MultiSignatureECDSASigner is SignerBase { mapping(address => uint256) public usedIds; mapping(bytes32 id => mapping(address wallet => address)) public signer; + event SignerRegistered(address indexed kernel, bytes32 indexed id, address indexed owner); + error NoSignerRegistered(); - + function isInitialized(address wallet) external view override returns (bool) { return usedIds[wallet] > 0; } function _signerOninstall(bytes32 id, bytes calldata _data) internal override { - if(signer[id][msg.sender] == address(0)) { + if (signer[id][msg.sender] == address(0)) { usedIds[msg.sender]++; } signer[id][msg.sender] = address(bytes20(_data[0:20])); @@ -39,7 +41,7 @@ contract MultiSignatureECDSASigner is SignerBase { } function _signerOnUninstall(bytes32 id, bytes calldata) internal override { - if(signer[id][msg.sender] == address(0)) { + if (signer[id][msg.sender] == address(0)) { revert NoSignerRegistered(); } delete signer[id][msg.sender]; From 4062745677a2b8d6f1d99812782882dc0a976736 Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:06:24 +0900 Subject: [PATCH 04/14] changed min solc --- .github/workflows/test.yml | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eee76d38..3e828307 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: - profile: [post-cancun,post-cancun-via-ir,solc-past-versions-0,solc-past-versions-1,via-ir,min-solc,min-solc-via-ir,intense] + profile: [post-cancun,post-cancun-via-ir,solc-past-versions-0,via-ir,min-solc,min-solc-via-ir,intense] steps: - uses: actions/checkout@v4 @@ -46,22 +46,6 @@ jobs: forge test --use 0.8.25 --evm-version "cancun" --via-ir ) || ( [ "${{ matrix.profile }}" = "solc-past-versions-0" ] && - forge test --use 0.8.5 --fuzz-runs 16 && - forge test --use 0.8.6 --fuzz-runs 16 && - forge test --use 0.8.7 --fuzz-runs 16 && - forge test --use 0.8.8 --fuzz-runs 16 && - forge test --use 0.8.9 --fuzz-runs 16 && - forge test --use 0.8.10 --fuzz-runs 16 && - forge test --use 0.8.11 --fuzz-runs 16 && - forge test --use 0.8.12 --fuzz-runs 16 - ) || - ( [ "${{ matrix.profile }}" = "solc-past-versions-1" ] && - forge test --use 0.8.13 --fuzz-runs 16 && - forge test --use 0.8.14 --fuzz-runs 16 && - forge test --use 0.8.15 --fuzz-runs 16 && - forge test --use 0.8.16 --fuzz-runs 16 && - forge test --use 0.8.17 --fuzz-runs 16 && - forge test --use 0.8.18 --fuzz-runs 16 && forge test --use 0.8.19 --fuzz-runs 16 && forge test --use 0.8.20 --fuzz-runs 16 && forge test --use 0.8.21 --fuzz-runs 16 && @@ -74,10 +58,10 @@ jobs: ) || ( [ "${{ matrix.profile }}" = "min-solc" ] && forge fmt --check && - forge test --use 0.8.4 + forge test --use 0.8.19 ) || ( [ "${{ matrix.profile }}" = "min-solc-via-ir" ] && - forge test --use 0.8.4 --via-ir + forge test --use 0.8.19 --via-ir ) || ( [ "${{ matrix.profile }}" = "intense" ] && forge test --fuzz-runs 5000 From a58de6552b0d00ceab67324347e7fbe8d5245235 Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:07:43 +0900 Subject: [PATCH 05/14] use 0.8.21 --- .github/workflows/test.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e828307..eca37ed3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,8 +46,6 @@ jobs: forge test --use 0.8.25 --evm-version "cancun" --via-ir ) || ( [ "${{ matrix.profile }}" = "solc-past-versions-0" ] && - forge test --use 0.8.19 --fuzz-runs 16 && - forge test --use 0.8.20 --fuzz-runs 16 && forge test --use 0.8.21 --fuzz-runs 16 && forge test --use 0.8.22 --fuzz-runs 16 && forge test --use 0.8.23 --fuzz-runs 16 && @@ -58,10 +56,10 @@ jobs: ) || ( [ "${{ matrix.profile }}" = "min-solc" ] && forge fmt --check && - forge test --use 0.8.19 + forge test --use 0.8.21 ) || ( [ "${{ matrix.profile }}" = "min-solc-via-ir" ] && - forge test --use 0.8.19 --via-ir + forge test --use 0.8.21 --via-ir ) || ( [ "${{ matrix.profile }}" = "intense" ] && forge test --fuzz-runs 5000 From 38d0062297014a3aaa23906b29b8566a2816ef59 Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:08:25 +0900 Subject: [PATCH 06/14] use 0.8.23 --- .github/workflows/test.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index eca37ed3..4bee8ba3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,8 +46,6 @@ jobs: forge test --use 0.8.25 --evm-version "cancun" --via-ir ) || ( [ "${{ matrix.profile }}" = "solc-past-versions-0" ] && - forge test --use 0.8.21 --fuzz-runs 16 && - forge test --use 0.8.22 --fuzz-runs 16 && forge test --use 0.8.23 --fuzz-runs 16 && forge test --use 0.8.24 --fuzz-runs 16 ) || @@ -56,10 +54,10 @@ jobs: ) || ( [ "${{ matrix.profile }}" = "min-solc" ] && forge fmt --check && - forge test --use 0.8.21 + forge test --use 0.8.23 ) || ( [ "${{ matrix.profile }}" = "min-solc-via-ir" ] && - forge test --use 0.8.21 --via-ir + forge test --use 0.8.23 --via-ir ) || ( [ "${{ matrix.profile }}" = "intense" ] && forge test --fuzz-runs 5000 From 60666617393691120c0f447a0691cb9d59483b3f Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:15:47 +0900 Subject: [PATCH 07/14] path fix...? --- foundry.toml | 2 +- src/sdk/TestBase/KernelTestBase.sol | 22 +++++++++++----------- src/validator/WeightedECDSAValidator.sol | 2 +- test/ECDSAValidator.t.sol | 2 +- 4 files changed, 14 insertions(+), 14 deletions(-) diff --git a/foundry.toml b/foundry.toml index b054a2fa..a3d2d35d 100644 --- a/foundry.toml +++ b/foundry.toml @@ -5,7 +5,7 @@ libs = ["lib"] bytecode_hash = "none" cbor_metadata = false optimize = true -via-ir = true +via-ir = false runs = 1000 [profile.deploy] diff --git a/src/sdk/TestBase/KernelTestBase.sol b/src/sdk/TestBase/KernelTestBase.sol index 6c0d334d..69ec8815 100644 --- a/src/sdk/TestBase/KernelTestBase.sol +++ b/src/sdk/TestBase/KernelTestBase.sol @@ -1,18 +1,18 @@ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; -import "src/Kernel.sol"; -import "src/factory/KernelFactory.sol"; -import "src/factory/FactoryStaker.sol"; +import "../../Kernel.sol"; +import "../../factory/KernelFactory.sol"; +import "../../factory/FactoryStaker.sol"; import "forge-std/Test.sol"; -import "src/mock/MockValidator.sol"; -import "src/mock/MockPolicy.sol"; -import "src/mock/MockSigner.sol"; -import "src/mock/MockAction.sol"; -import "src/mock/MockHook.sol"; -import "src/mock/MockExecutor.sol"; -import "src/mock/MockFallback.sol"; -import "src/core/ValidationManager.sol"; +import "../../mock/MockValidator.sol"; +import "../../mock/MockPolicy.sol"; +import "../../mock/MockSigner.sol"; +import "../../mock/MockAction.sol"; +import "../../mock/MockHook.sol"; +import "../../mock/MockExecutor.sol"; +import "../../mock/MockFallback.sol"; +import "../../core/ValidationManager.sol"; import "./erc4337Util.sol"; contract MockCallee { diff --git a/src/validator/WeightedECDSAValidator.sol b/src/validator/WeightedECDSAValidator.sol index 5189d31d..6927cc38 100644 --- a/src/validator/WeightedECDSAValidator.sol +++ b/src/validator/WeightedECDSAValidator.sol @@ -2,7 +2,7 @@ pragma solidity ^0.8.0; -import "src/types/Types.sol"; +import "../types/Types.sol"; import {ECDSA} from "solady/utils/ECDSA.sol"; import {EIP712} from "solady/utils/EIP712.sol"; import {PackedUserOperation} from "../interfaces/PackedUserOperation.sol"; diff --git a/test/ECDSAValidator.t.sol b/test/ECDSAValidator.t.sol index 6daa83bd..829905df 100644 --- a/test/ECDSAValidator.t.sol +++ b/test/ECDSAValidator.t.sol @@ -3,7 +3,7 @@ pragma solidity ^0.8.0; import {MockCallee, KernelTestBase} from "../src/sdk/testBase/KernelTestBase.sol"; import {ECDSAValidator} from "../src/validator/ECDSAValidator.sol"; import {ECDSA} from "solady/utils/ECDSA.sol"; -import {PackedUserOperation} from "src/interfaces/PackedUserOperation.sol"; +import {PackedUserOperation} from "../src/interfaces/PackedUserOperation.sol"; import {ValidatorLib} from "../src/utils/ValidationTypeLib.sol"; import {ExecLib} from "../src/utils/ExecLib.sol"; import {IHook} from "../src/interfaces/IERC7579Modules.sol"; From e96ca25c3d4aec960b2c6c2dcbe58848bebb6cd9 Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:20:40 +0900 Subject: [PATCH 08/14] plz --- test/ECDSAValidator.t.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ECDSAValidator.t.sol b/test/ECDSAValidator.t.sol index 829905df..4136c299 100644 --- a/test/ECDSAValidator.t.sol +++ b/test/ECDSAValidator.t.sol @@ -1,7 +1,7 @@ pragma solidity ^0.8.0; -import {MockCallee, KernelTestBase} from "../src/sdk/testBase/KernelTestBase.sol"; import {ECDSAValidator} from "../src/validator/ECDSAValidator.sol"; +import {MockCallee, KernelTestBase} from "../src/sdk/testBase/KernelTestBase.sol"; import {ECDSA} from "solady/utils/ECDSA.sol"; import {PackedUserOperation} from "../src/interfaces/PackedUserOperation.sol"; import {ValidatorLib} from "../src/utils/ValidationTypeLib.sol"; From d6fea77dfa0539b565e831e622dbf63e1c8f1ef0 Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:22:47 +0900 Subject: [PATCH 09/14] maybe..? --- src/sdk/{TestBase => }/KernelTestBase.sol | 24 +++++++++++------------ test/ECDSAValidator.t.sol | 2 +- test/Kernel.t.sol | 2 +- 3 files changed, 14 insertions(+), 14 deletions(-) rename src/sdk/{TestBase => }/KernelTestBase.sol (98%) diff --git a/src/sdk/TestBase/KernelTestBase.sol b/src/sdk/KernelTestBase.sol similarity index 98% rename from src/sdk/TestBase/KernelTestBase.sol rename to src/sdk/KernelTestBase.sol index 69ec8815..65d0bbb9 100644 --- a/src/sdk/TestBase/KernelTestBase.sol +++ b/src/sdk/KernelTestBase.sol @@ -1,19 +1,19 @@ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; -import "../../Kernel.sol"; -import "../../factory/KernelFactory.sol"; -import "../../factory/FactoryStaker.sol"; +import "../Kernel.sol"; +import "../factory/KernelFactory.sol"; +import "../factory/FactoryStaker.sol"; import "forge-std/Test.sol"; -import "../../mock/MockValidator.sol"; -import "../../mock/MockPolicy.sol"; -import "../../mock/MockSigner.sol"; -import "../../mock/MockAction.sol"; -import "../../mock/MockHook.sol"; -import "../../mock/MockExecutor.sol"; -import "../../mock/MockFallback.sol"; -import "../../core/ValidationManager.sol"; -import "./erc4337Util.sol"; +import "../mock/MockValidator.sol"; +import "../mock/MockPolicy.sol"; +import "../mock/MockSigner.sol"; +import "../mock/MockAction.sol"; +import "../mock/MockHook.sol"; +import "../mock/MockExecutor.sol"; +import "../mock/MockFallback.sol"; +import "../core/ValidationManager.sol"; +import "./TestBase/erc4337Util.sol"; contract MockCallee { uint256 public value; diff --git a/test/ECDSAValidator.t.sol b/test/ECDSAValidator.t.sol index 4136c299..0cecfb13 100644 --- a/test/ECDSAValidator.t.sol +++ b/test/ECDSAValidator.t.sol @@ -1,7 +1,7 @@ pragma solidity ^0.8.0; import {ECDSAValidator} from "../src/validator/ECDSAValidator.sol"; -import {MockCallee, KernelTestBase} from "../src/sdk/testBase/KernelTestBase.sol"; +import {MockCallee, KernelTestBase} from "../src/sdk/KernelTestBase.sol"; import {ECDSA} from "solady/utils/ECDSA.sol"; import {PackedUserOperation} from "../src/interfaces/PackedUserOperation.sol"; import {ValidatorLib} from "../src/utils/ValidationTypeLib.sol"; diff --git a/test/Kernel.t.sol b/test/Kernel.t.sol index 90c6f660..7a85adc6 100644 --- a/test/Kernel.t.sol +++ b/test/Kernel.t.sol @@ -1,5 +1,5 @@ pragma solidity ^0.8.0; -import {KernelTestBase} from "../src/sdk/testBase/KernelTestBase.sol"; +import {KernelTestBase} from "../src/sdk/KernelTestBase.sol"; contract KernelTest is KernelTestBase {} From 23637dadeaaf06757c25f05ab72d60b3cfd39212 Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:24:07 +0900 Subject: [PATCH 10/14] typo --- src/Kernel.sol | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Kernel.sol b/src/Kernel.sol index cb84314f..a7e582a0 100644 --- a/src/Kernel.sol +++ b/src/Kernel.sol @@ -336,18 +336,18 @@ contract Kernel is IAccount, IAccountExecute, IERC7579Account, ValidationManager _installHook(IHook(address(bytes20(initData[4:24]))), hookData); } else if (moduleType == MODULE_TYPE_HOOK) { // force call onInstall for hook - // NOTE: for hook, kernel does not support independant hook install, + // NOTE: for hook, kernel does not support independent hook install, // hook is expected to be paired with proper validator/executor/selector IHook(module).onInstall(initData); } else if (moduleType == MODULE_TYPE_POLICY) { // force call onInstall for policy - // NOTE: for policy, kernel does not support independant policy install, + // NOTE: for policy, kernel does not support independent policy install, // policy is expected to be paired with proper permissionId // to "ADD" permission, use "installValidations()" function IPolicy(module).onInstall(initData); } else if (moduleType == MODULE_TYPE_SIGNER) { // force call onInstall for signer - // NOTE: for signer, kernel does not support independant signer install, + // NOTE: for signer, kernel does not support independent signer install, // signer is expected to be paired with proper permissionId // to "ADD" permission, use "installValidations()" function ISigner(module).onInstall(initData); @@ -400,7 +400,7 @@ contract Kernel is IAccount, IAccountExecute, IERC7579Account, ValidationManager _validationStorage().validationConfig[vId].hook = IHook(address(1)); } // force call onInstall for hook - // NOTE: for hook, kernel does not support independant hook install, + // NOTE: for hook, kernel does not support independent hook install, // hook is expected to be paired with proper validator/executor/selector ModuleLib.uninstallModule(module, deInitData); } else if (moduleType == 5) { @@ -412,7 +412,7 @@ contract Kernel is IAccount, IAccountExecute, IERC7579Account, ValidationManager } } // force call onInstall for policy - // NOTE: for policy, kernel does not support independant policy install, + // NOTE: for policy, kernel does not support independent policy install, // policy is expected to be paired with proper permissionId // to "REMOVE" permission, use "uninstallValidation()" function ModuleLib.uninstallModule(module, deInitData); @@ -425,7 +425,7 @@ contract Kernel is IAccount, IAccountExecute, IERC7579Account, ValidationManager } } // force call onInstall for signer - // NOTE: for signer, kernel does not support independant signer install, + // NOTE: for signer, kernel does not support independent signer install, // signer is expected to be paired with proper permissionId // to "REMOVE" permission, use "uninstallValidation()" function ModuleLib.uninstallModule(module, deInitData); From e42a1615164f5a19bdb8fcd1235e822c085a3cb0 Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:26:00 +0900 Subject: [PATCH 11/14] typos --- src/interfaces/IERC7579Account.sol | 6 +++--- src/interfaces/IERC7579Modules.sol | 2 +- src/interfaces/IEntryPoint.sol | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/interfaces/IERC7579Account.sol b/src/interfaces/IERC7579Account.sol index 2b409949..00b7f0ca 100644 --- a/src/interfaces/IERC7579Account.sol +++ b/src/interfaces/IERC7579Account.sol @@ -53,7 +53,7 @@ interface IERC7579Account { /** * @dev installs a Module of a certain type on the smart account - * @dev Implement Authorization control of your chosing + * @dev Implement Authorization control of your choosing * @param moduleTypeId the module type ID according the ERC-7579 spec * @param module the module address * @param initData arbitrary data that may be required on the module during `onInstall` @@ -63,7 +63,7 @@ interface IERC7579Account { /** * @dev uninstalls a Module of a certain type on the smart account - * @dev Implement Authorization control of your chosing + * @dev Implement Authorization control of your choosing * @param moduleTypeId the module type ID according the ERC-7579 spec * @param module the module address * @param deInitData arbitrary data that may be required on the module during `onUninstall` @@ -90,7 +90,7 @@ interface IERC7579Account { * thus may be necessary to query multiple module types * @param module the module address * @param additionalContext additional context data that the smart account may interpret to - * identifiy conditions under which the module is installed. + * identify conditions under which the module is installed. * usually this is not necessary, but for some special hooks that * are stored in mappings, this param might be needed */ diff --git a/src/interfaces/IERC7579Modules.sol b/src/interfaces/IERC7579Modules.sol index 58c1fda2..3d778be6 100644 --- a/src/interfaces/IERC7579Modules.sol +++ b/src/interfaces/IERC7579Modules.sol @@ -45,7 +45,7 @@ interface IValidator is IModule { /** * @dev Validates a transaction on behalf of the account. * This function is intended to be called by the MSA during the ERC-4337 validaton phase - * Note: solely relying on bytes32 hash and signature is not suffcient for some + * Note: solely relying on bytes32 hash and signature is not sufficient for some * validation implementations (i.e. SessionKeys often need access to userOp.calldata) * @param userOp The user operation to be validated. The userOp MUST NOT contain any metadata. * The MSA MUST clean up the userOp before sending it to the validator. diff --git a/src/interfaces/IEntryPoint.sol b/src/interfaces/IEntryPoint.sol index ccc5b965..38db33ae 100644 --- a/src/interfaces/IEntryPoint.sol +++ b/src/interfaces/IEntryPoint.sol @@ -95,7 +95,7 @@ interface IEntryPoint is IStakeManager, INonceManager { * A custom revert error of handleOps, to report a revert by account or paymaster. * @param opIndex - Index into the array of ops to the failed one (in simulateValidation, this is always zero). * @param reason - Revert reason. see FailedOp(uint256,string), above - * @param inner - data from inner cought revert reason + * @param inner - data from inner caught revert reason * @dev note that inner is truncated to 2048 bytes */ error FailedOpWithRevert(uint256 opIndex, string reason, bytes inner); From f5f6d5efeb2487c9cc863eece760714e68e66318 Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:26:45 +0900 Subject: [PATCH 12/14] removed intense --- .github/workflows/test.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4bee8ba3..41485c8c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -58,10 +58,7 @@ jobs: ) || ( [ "${{ matrix.profile }}" = "min-solc-via-ir" ] && forge test --use 0.8.23 --via-ir - ) || - ( [ "${{ matrix.profile }}" = "intense" ] && - forge test --fuzz-runs 5000 - ) + ) codespell: runs-on: ${{ matrix.os }} From a996e5e4b4f7d76fc4a639c44b6b5e741f7d800c Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:27:15 +0900 Subject: [PATCH 13/14] removed yarn lock from codespell --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 41485c8c..5a54816a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -76,4 +76,4 @@ jobs: with: check_filenames: true ignore_words_list: usera - skip: ./.git,package-lock.json,ackee-blockchain-solady-report.pdf,EIP712Mock.sol + skip: ./.git,package-lock.json,ackee-blockchain-solady-report.pdf,EIP712Mock.sol,yarn.lock From 5bf7561d56444c2aa057e2c5a1c7334d46d050eb Mon Sep 17 00:00:00 2001 From: leekt Date: Tue, 23 Apr 2024 02:28:07 +0900 Subject: [PATCH 14/14] removed intense completely --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5a54816a..32772d18 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: strategy: matrix: - profile: [post-cancun,post-cancun-via-ir,solc-past-versions-0,via-ir,min-solc,min-solc-via-ir,intense] + profile: [post-cancun,post-cancun-via-ir,solc-past-versions-0,via-ir,min-solc,min-solc-via-ir] steps: - uses: actions/checkout@v4