Skip to content

Commit

Permalink
Adding new namespaces deploy to new cluster (#2281)
Browse files Browse the repository at this point in the history
* Adding new namespaces deploy to new cluster

* Fix network

Signed-off-by: deniallugo <[email protected]>

Co-authored-by: deniallugo <[email protected]>
  • Loading branch information
hatemosphere and Deniallugo committed Sep 2, 2022
1 parent 8142559 commit bd68f4b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/setup.runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ jobs:
"hfEnv": "${{ inputs.environment }}",
"cluster": "stage"
},
"^rinkeby$": { "cluster": "testnet" },
"^ropsten$": { "cluster": "testnet" },
"^goerli$": { "cluster": "testnet-new" },
"^sepolia$": { "cluster": "testnet-new" },
"^mainnet$": { "cluster": "mainnet", "hfEnv": "prod", "namespace": "zksync" }
}
- run: echo "::set-output name=short::$(git rev-parse --short HEAD)"
Expand Down
2 changes: 1 addition & 1 deletion core/tests/ts-tests/tests/tester/tester.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import * as crypto from 'crypto';

const zksyncAbi =
require('../../../../../contracts/artifacts/cache/solpp-generated-contracts/ZkSync.sol/ZkSync.json').abi;
type Network = 'localhost' | 'rinkeby' | 'ropsten';
type Network = 'localhost' | 'goerli' | 'sepolia';

const testConfigPath = path.join(process.env.ZKSYNC_HOME as string, `etc/test_config/constant`);
const ethTestConfig = JSON.parse(fs.readFileSync(`${testConfigPath}/eth.json`, { encoding: 'utf-8' }));
Expand Down

0 comments on commit bd68f4b

Please sign in to comment.