Skip to content

Commit 03d8d2a

Browse files
authored
ci: fix endpoints for token distribution repo and split ci per package (#1066)
1 parent b96bf5b commit 03d8d2a

File tree

9 files changed

+32
-8
lines changed

9 files changed

+32
-8
lines changed

.github/actions/setup/action.yml

-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,3 @@ runs:
1515
- name: Install dependencies
1616
shell: bash
1717
run: yarn --immutable
18-
- name: Build
19-
shell: bash
20-
run: yarn build || yarn build

.github/workflows/build.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Build
22

33
env:
44
CI: true
5+
STUDIO_API_KEY: ${{ secrets.STUDIO_API_KEY }}
56

67
on:
78
push:
@@ -17,4 +18,6 @@ jobs:
1718
- name: Checkout
1819
uses: actions/checkout@v4
1920
- name: Set up environment
20-
uses: ./.github/actions/setup
21+
uses: ./.github/actions/setup
22+
- name: Build
23+
run: yarn build || yarn build

.github/workflows/ci-contracts.yml

+4
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ jobs:
2222
uses: actions/checkout@v4
2323
- name: Set up environment
2424
uses: ./.github/actions/setup
25+
- name: Build
26+
run: |
27+
pushd packages/contracts
28+
yarn build || yarn build
2529
- name: Run tests
2630
run: |
2731
pushd packages/contracts

.github/workflows/ci-data-edge.yml

+4
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,9 @@ jobs:
2222
uses: actions/checkout@v4
2323
- name: Set up environment
2424
uses: ./.github/actions/setup
25+
- name: Build
26+
run: |
27+
pushd packages/data-edge
28+
yarn build
2529
- name: Run tests
2630
run: yarn test

.github/workflows/ci-token-dist.yml

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: CI - packages/token-distribution
22

33
env:
44
CI: true
5+
STUDIO_API_KEY: ${{ secrets.STUDIO_API_KEY }}
56

67
on:
78
push:
@@ -22,5 +23,9 @@ jobs:
2223
uses: actions/checkout@v4
2324
- name: Set up environment
2425
uses: ./.github/actions/setup
26+
- name: Build
27+
run: |
28+
pushd packages/token-distribution
29+
yarn build
2530
- name: Run tests
2631
run: yarn test

.github/workflows/e2e-contracts.yml

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@ jobs:
3232
uses: actions/checkout@v4
3333
- name: Set up environment
3434
uses: ./.github/actions/setup
35+
- name: Build
36+
run: |
37+
pushd packages/contracts
38+
yarn build || yarn build
3539
- name: Run e2e tests
3640
run: |
3741
git clone https://github.com/OffchainLabs/nitro-testnode/

.github/workflows/verifydeployed.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ jobs:
2828
- name: Set up environment
2929
uses: ./.github/actions/setup
3030

31-
- name: Compile contracts
32-
run: yarn build
31+
- name: Build
32+
run: |
33+
pushd packages/contracts
34+
yarn build || yarn build
3335
3436
- name: Save build artifacts
3537
uses: actions/upload-artifact@v3
@@ -48,6 +50,10 @@ jobs:
4850
uses: actions/checkout@v3
4951
- name: Set up environment
5052
uses: ./.github/actions/setup
53+
- name: Build
54+
run: |
55+
pushd packages/contracts
56+
yarn build || yarn build
5157
- name: Get build artifacts
5258
uses: actions/download-artifact@v3
5359
with:
+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
MNEMONIC=
22
ETHERSCAN_API_KEY=
33
INFURA_KEY=
4+
STUDIO_API_KEY=

packages/token-distribution/.graphclientrc.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ sources:
22
- name: graph-network
33
handler:
44
graphql:
5-
endpoint: https://api.thegraph.com/subgraphs/name/graphprotocol/graph-network-mainnet
5+
endpoint: https://gateway.thegraph.com/api/${STUDIO_API_KEY}/subgraphs/id/9Co7EQe5PgW3ugCUJrJgRv4u9zdEuDJf8NvMWftNsBH8
66
retry: 5
77

88
- name: token-distribution
99
handler:
1010
graphql:
11-
endpoint: https://api.thegraph.com/subgraphs/name/graphprotocol/token-distribution
11+
endpoint: https://gateway.thegraph.com/api/${STUDIO_API_KEY}/subgraphs/id/ChfAJn6jQEBjVqtdUiThfG6sWy2Sr5XQPNucE9DkgXSN
1212
retry: 5
1313
transforms:
1414
- autoPagination:

0 commit comments

Comments
 (0)