-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make evm-subql part of monorepo (#713)
* make evm-subql part of monorepo * fix deps * update docker compose * update subql * update docker compose * fix version * increase retries * fix test * multi-platform * update action * setup docker buildx
- Loading branch information
1 parent
3ac02a1
commit 68cf5c7
Showing
42 changed files
with
5,439 additions
and
11,052 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -4,5 +4,4 @@ bin/ | |
lib/ | ||
dist/ | ||
examples/ | ||
evm-subql/ | ||
scripts/ |
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
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,16 +1,5 @@ | ||
FROM bodhi-runner as builder | ||
FROM onfinality/subql-node:v1.21.2 as subql-node | ||
LABEL maintainer="[email protected]" | ||
|
||
WORKDIR /app | ||
|
||
COPY evm-subql /app/evm-subql | ||
WORKDIR /app/evm-subql | ||
RUN yarn && yarn build | ||
|
||
# ============= | ||
|
||
FROM onfinality/subql-node:v1.17.0 as subql-node | ||
LABEL maintainer="[email protected]" | ||
|
||
WORKDIR /app | ||
COPY --from=builder /app/evm-subql /app | ||
VOLUME ["/app"] | ||
WORKDIR /app/packages/evm-subql |
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
This file was deleted.
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,7 @@ | ||
# =============== yarn install =============== # | ||
FROM bodhi-runner as yarn-install | ||
|
||
VOLUME ["/app"] | ||
WORKDIR /app | ||
|
||
ENTRYPOINT yarn install --immutable; yarn workspace @acala-network/evm-subql build |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.