Skip to content

Commit

Permalink
Updating envs in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jamiehewitt15 committed Jun 11, 2024
1 parent 8df7c04 commit d9c366d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,16 +131,18 @@ jobs:
npm run build
npm run start &
env:
PRIVATE_KEY: ${{ secrets.NODE1_PRIVATE_KEY }}
NODE1_PRIVATE_KEY: ${{ secrets.NODE1_PRIVATE_KEY }}
NODE2_PRIVATE_KEY: ${{ secrets.NODE2_PRIVATE_KEY }}
NODE3_PRIVATE_KEY: ${{ secrets.NODE3_PRIVATE_KEY }}
PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }}
IPFS_GATEWAY: http://172.15.0.16:8080/
ARWEAVE_GATEWAY: https://arweave.net/
P2P_ipV4BindTcpPort: 8000
HTTP_API_PORT: 8001
RPCS: '{ "8996": {"rpc": "http://127.0.0.1:8545", "chainId": 8996, "network": "development", "chunkSize": 100} }'
DB_URL: 'http://localhost:8108/?apiKey=xyz'
FEE_TOKENS: '{ "1": "0x967da4048cD07aB37855c090aAF366e4ce1b9F48", "137": "0x282d8efCe846A88B159800bd4130ad77443Fa1A1", "80001": "0xd8992Ed72C445c35Cb4A2be468568Ed1079357c8", "56": "0xDCe07662CA8EbC241316a15B611c89711414Dd1a" }'
FEE_AMOUNT: '{ "amount": 1, "unit": "MB" }'
AUTHORIZED_DECRYPTERS: '["0xe2DD09d719Da89e5a3D0F2549c7E24566e947260"]'
ALLOWED_ADMINS: '["0xe2DD09d719Da89e5a3D0F2549c7E24566e947260"]'
ADDRESS_FILE: "${HOME}/.ocean/ocean-contracts/artifacts/address.json"
- name: Check Ocean Node is running
run: |
for i in $(seq 1 30); do
Expand All @@ -153,5 +155,5 @@ jobs:
echo "Ocean Node did not start in time"
exit 1
- name: Run system tests
run: npm run test
run: npm run test:system

0 comments on commit d9c366d

Please sign in to comment.