-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4a8ba8e
commit 6fe7eff
Showing
66 changed files
with
7,284 additions
and
933 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: master | ||
pull_request: | ||
branches: "*" | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- name: Build | ||
run: yarn build | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Lint | ||
run: yarn lint |
223 changes: 223 additions & 0 deletions
223
subgraphs/gauges/.github/workflows/graph-studio-staging.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,223 @@ | ||
name: Deploy Graph Studio to Staging | ||
|
||
on: | ||
push: | ||
branches: [staging] | ||
|
||
jobs: | ||
deploy-mainnet: | ||
runs-on: ubuntu-latest | ||
environment: graph | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- uses: balancer-labs/[email protected] | ||
with: | ||
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | ||
graph_version_label: ${GITHUB_SHA::8} | ||
graph_subgraph_name: "balancer-gauges-beta" | ||
graph_account: "balancer-labs" | ||
graph_config_file: "subgraph.yaml" | ||
graph_deploy_studio: true | ||
deploy-goerli: | ||
runs-on: ubuntu-latest | ||
environment: graph | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- uses: balancer-labs/[email protected] | ||
with: | ||
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | ||
graph_version_label: ${GITHUB_SHA::8} | ||
graph_subgraph_name: "balancer-gauges-goerli-beta" | ||
graph_account: "balancer-labs" | ||
graph_config_file: "subgraph.goerli.yaml" | ||
graph_deploy_studio: true | ||
deploy-arbitrum: | ||
runs-on: ubuntu-latest | ||
environment: graph | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- uses: balancer-labs/[email protected] | ||
with: | ||
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | ||
graph_version_label: ${GITHUB_SHA::8} | ||
graph_subgraph_name: "balancer-gauges-arbitrum-beta" | ||
graph_account: "balancer-labs" | ||
graph_config_file: "subgraph.arbitrum.yaml" | ||
graph_deploy_studio: true | ||
deploy-polygon: | ||
runs-on: ubuntu-latest | ||
environment: graph | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- uses: balancer-labs/[email protected] | ||
with: | ||
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | ||
graph_version_label: ${GITHUB_SHA::8} | ||
graph_subgraph_name: "balancer-gauges-polygon-beta" | ||
graph_account: "balancer-labs" | ||
graph_config_file: "subgraph.polygon.yaml" | ||
graph_deploy_studio: true | ||
deploy-optimism: | ||
runs-on: ubuntu-latest | ||
environment: graph | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- uses: balancer-labs/[email protected] | ||
with: | ||
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | ||
graph_version_label: ${GITHUB_SHA::8} | ||
graph_subgraph_name: "balancer-gauges-optimism-beta" | ||
graph_account: "balancer-labs" | ||
graph_config_file: "subgraph.optimism.yaml" | ||
graph_deploy_studio: true | ||
deploy-gnosis: | ||
runs-on: ubuntu-latest | ||
environment: graph | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- uses: balancer-labs/[email protected] | ||
with: | ||
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | ||
graph_version_label: ${GITHUB_SHA::8} | ||
graph_subgraph_name: "balancer-gauges-gnosis-chain-b" | ||
graph_account: "balancer-labs" | ||
graph_config_file: "subgraph.gnosis.yaml" | ||
graph_deploy_studio: true | ||
deploy-avalanche: | ||
runs-on: ubuntu-latest | ||
environment: graph | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- uses: balancer-labs/[email protected] | ||
with: | ||
graph_deploy_key: ${{secrets.GRAPH_NEW_DEPLOY_KEY}} | ||
graph_version_label: ${GITHUB_SHA::8} | ||
graph_subgraph_name: "balancer-gauges-avalanche-beta" | ||
graph_account: "balancer-labs" | ||
graph_config_file: "subgraph.avalanche.yaml" | ||
graph_deploy_studio: true | ||
deploy-polygon-zkevm: | ||
runs-on: ubuntu-latest | ||
environment: graph | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- name: Build | ||
run: yarn build | ||
- uses: balancer-labs/[email protected] | ||
with: | ||
graph_deploy_key: ${{secrets.GRAPH_DEPLOY_KEY}} | ||
graph_version_label: ${GITHUB_SHA::8} | ||
graph_subgraph_name: "balancer-gauges-polygon-zk-b" | ||
graph_account: "balancer-labs" | ||
graph_config_file: "subgraph.polygon-zkevm.yaml" | ||
graph_deploy_studio: true | ||
deploy-sepolia: | ||
runs-on: ubuntu-latest | ||
environment: graph | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- name: Build | ||
run: yarn build | ||
- uses: balancer-labs/[email protected] | ||
with: | ||
graph_deploy_key: ${{secrets.GRAPH_DEPLOY_KEY}} | ||
graph_version_label: ${GITHUB_SHA::8} | ||
graph_subgraph_name: "balancer-gauges-sepolia-beta" | ||
graph_account: "balancer-labs" | ||
graph_config_file: "subgraph.sepolia.yaml" | ||
graph_deploy_studio: true | ||
deploy-base: | ||
runs-on: ubuntu-latest | ||
environment: graph | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install node | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 16 | ||
- name: Install | ||
run: yarn --frozen-lockfile | ||
- name: Codegen | ||
run: yarn codegen | ||
- name: Build | ||
run: yarn build | ||
- uses: balancer-labs/[email protected] | ||
with: | ||
graph_deploy_key: ${{secrets.GRAPH_DEPLOY_KEY}} | ||
graph_version_label: ${GITHUB_SHA::8} | ||
graph_subgraph_name: "balancer-gauges-base-beta" | ||
graph_account: "balancer-labs" | ||
graph_config_file: "subgraph.base.yaml" | ||
graph_deploy_studio: true |
Oops, something went wrong.