Skip to content

Commit 9ea7fcf

Browse files
committed
fix: ci
1 parent b530ca1 commit 9ea7fcf

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/foundry.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
8383
env:
8484
FOUNDRY_PROFILE: ${{ matrix.suite == 'Fork' && 'forktest' || 'medium' }}
8585
RPC_MAINNET: ${{ secrets.RPC_MAINNET }}
86+
RPC_HOODI: ${{ secrets.RPC_HOODI }}
8687

8788
# -----------------------------------------------------------------------
8889
# Forge Storage Diff

src/test/integration/IntegrationDeployer.t.sol

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,13 @@ abstract contract IntegrationDeployer is ExistingDeploymentParser {
102102
}
103103

104104
constructor() {
105+
address stETH_Mainnet = 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84;
106+
address OETH_Mainnet = 0x856c4Efb76C1D1AE02e20CEB03A2A6a08b0b8dC3;
107+
address osETH_Mainnet = 0xf1C9acDc66974dFB6dEcB12aA385b9cD01190E38;
108+
tokensNotTested[stETH_Mainnet] = true;
109+
tokensNotTested[OETH_Mainnet] = true;
110+
tokensNotTested[osETH_Mainnet] = true;
111+
105112
// Use current contracts by default. Upgrade tests are only run with mainnet fork tests
106113
// using the `UpgradeTest.t.sol` mixin.
107114
isUpgraded = true;

0 commit comments

Comments
 (0)