Skip to content

Commit

Permalink
rm from CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RensR committed Feb 26, 2025
1 parent 9604a51 commit bbac2a1
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ core/scripts/gateway @smartcontractkit/dev-services
/core/gethwrappers/ccip @smartcontractkit/ccip-onchain
/core/gethwrappers/functions @smartcontractkit/dev-services
/core/gethwrappers/keystone @smartcontractkit/keystone
/core/gethwrappers/liquiditymanager @smartcontractkit/ccip-onchain
/core/gethwrappers/llo-feeds @smartcontractkit/data-streams-engineers
/core/gethwrappers/operatorforwarder @smartcontractkit/data-feeds-engineers
/core/gethwrappers/data-feeds @smartcontractkit/data-feeds-engineers
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/solidity-foundry-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ on:
- "functions"
- "keystone"
- "l2ep"
- "liquiditymanager"
- "llo-feeds"
- "operatorforwarder"
- "shared"
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/solidity-foundry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ jobs:
{ "name": "functions", "setup": { "run-coverage": false, "min-coverage": 98.5, "run-gas-snapshot": true, "run-forge-fmt": false }},
{ "name": "keystone", "setup": { "run-coverage": true, "min-coverage": 72.8, "run-gas-snapshot": false, "run-forge-fmt": false }},
{ "name": "l2ep", "setup": { "run-coverage": true, "min-coverage": 65.0, "run-gas-snapshot": true, "run-forge-fmt": false }},
{ "name": "liquiditymanager", "setup": { "run-coverage": true, "min-coverage": 40, "run-gas-snapshot": true, "run-forge-fmt": false }},
{ "name": "llo-feeds", "setup": { "run-coverage": true, "min-coverage": 49.3, "run-gas-snapshot": true, "run-forge-fmt": false }},
{ "name": "operatorforwarder", "setup": { "run-coverage": true, "min-coverage": 55.7, "run-gas-snapshot": true, "run-forge-fmt": false }},
{ "name": "shared", "setup": { "run-coverage": true, "extra-coverage-params": "--no-match-path='*CallWithExactGas*' --ir-minimum", "min-coverage": 32.6, "run-gas-snapshot": true, "run-forge-fmt": false }},
Expand Down Expand Up @@ -96,8 +95,6 @@ jobs:
- 'contracts/src/v0.8/keystone/**/*.sol'
l2ep:
- 'contracts/src/v0.8/l2ep/**/*.sol'
liquiditymanager:
- 'contracts/src/v0.8/liquiditymanager/**/*.sol'
llo-feeds:
- 'contracts/src/v0.8/llo-feeds/**/*.sol'
operatorforwarder:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/solidity-hardhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
filters: |
src:
- 'contracts/src/!(v0.8/(ccip|functions|keystone|l2ep|liquiditymanager|llo-feeds|vrf|workflow)/**)/**/*'
- 'contracts/src/!(v0.8/(ccip|functions|keystone|l2ep|llo-feeds|vrf|workflow)/**)/**/*'
- 'contracts/test/**/*'
- 'contracts/package.json'
- 'contracts/pnpm-lock.yaml'
Expand Down
8 changes: 6 additions & 2 deletions contracts/src/v0.8/ccip/interfaces/ILiquidityContainer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@ interface ILiquidityContainer {

/// @notice Provide additional liquidity to the container.
/// @dev Should emit LiquidityAdded
function provideLiquidity(uint256 amount) external;
function provideLiquidity(
uint256 amount
) external;

/// @notice Withdraws liquidity from the container to the msg sender
/// @dev Should emit LiquidityRemoved
function withdrawLiquidity(uint256 amount) external;
function withdrawLiquidity(
uint256 amount
) external;
}

0 comments on commit bbac2a1

Please sign in to comment.