Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch CI to Sepolia #39

Merged
merged 4 commits into from
Mar 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
50c6d966435451b12691611784aa0dd6ad0927fa
1911b2106aada277cb49835f9983e4ba04a1affa
b89fbc32ba93e921df994499f3c29512ab59a71e
94439b00c97d42f2797cbd471fb9aeed58e0a49a
19 changes: 3 additions & 16 deletions .github/workflows/dashboard-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ on:
type: choice
options:
- sepolia
- goerli
default: sepolia

jobs:
Expand Down Expand Up @@ -86,22 +85,10 @@ jobs:
- name: Build
run: yarn build
env:
# Temporarily we hardcode Goerli chain id (we'll need to change this
# to `11155111` when we switch our deployment to Sepolia.
CHAIN_ID: 5
CHAIN_ID: 11155111
PUBLIC_URL: /
ETH_HOSTNAME_HTTP: |
${{ github.event_name == 'push'
|| (github.event_name == 'workflow_dispatch'
&& github.event.inputs.environment == 'sepolia')
&& secrets.SEPOLIA_ETH_HOSTNAME_HTTP
|| secrets.GOERLI_ETH_HOSTNAME_HTTP }}
ETH_HOSTNAME_WS: |
${{ github.event_name == 'push'
|| (github.event_name == 'workflow_dispatch'
&& github.event.inputs.environment == 'sepolia')
&& secrets.SEPOLIA_ETH_HOSTNAME_WS
|| secrets.GOERLI_ETH_HOSTNAME_WS }}
ETH_HOSTNAME_HTTP: ${{ secrets.SEPOLIA_ETH_HOSTNAME_HTTP }}
ETH_HOSTNAME_WS: ${{ secrets.SEPOLIA_ETH_HOSTNAME_WS }}
NODE_OPTIONS: --max_old_space_size=4096
ELECTRUM_PROTOCOL: ${{ secrets.TESTNET_ELECTRUMX_PROTOCOL }}
ELECTRUM_HOST: ${{ secrets.TESTNET_ELECTRUMX_HOST }}
Expand Down
Loading