Skip to content

Commit

Permalink
Merge branch 'master' into saihaj/579
Browse files Browse the repository at this point in the history
  • Loading branch information
saihaj committed Sep 20, 2022
2 parents f6b5b8b + 7356e0b commit ee988ac
Show file tree
Hide file tree
Showing 54 changed files with 2,352 additions and 741 deletions.
166 changes: 113 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion chain/arweave/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ graph = { path = "../../graph" }
prost = "0.10.1"
prost-types = "0.10.1"
serde = "1.0"
sha2 = "0.10.2"
sha2 = "0.10.5"

graph-runtime-wasm = { path = "../../runtime/wasm" }
graph-runtime-derive = { path = "../../runtime/derive" }
Expand Down
1 change: 1 addition & 0 deletions chain/ethereum/examples/firehose.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ async fn main() -> Result<(), Error> {
"https://api.streamingfast.io:443",
token,
false,
false,
1,
));

Expand Down
1 change: 1 addition & 0 deletions chain/substreams/examples/substreams.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ async fn main() -> Result<(), Error> {
&endpoint,
token,
false,
false,
1,
));

Expand Down
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ graph-mock = { path = "../mock" }
test-store = { path = "../store/test-store" }
hex = "0.4.3"
graphql-parser = "0.4.0"
pretty_assertions = "1.2.1"
pretty_assertions = "1.3.0"
anyhow = "1.0"
16 changes: 8 additions & 8 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@ RUN cd /graph-node \
&& echo "CARGO_VERSION='$(cargo --version)'" >> /etc/image-info \
&& echo "RUST_VERSION='$(rustc --version)'" >> /etc/image-info

# Debug image to access core dumps
FROM graph-node-build as graph-node-debug
RUN apt-get update \
&& apt-get install -y curl gdb postgresql-client

COPY docker/Dockerfile /Dockerfile
COPY docker/bin/* /usr/local/bin/

# The graph-node runtime image with only the executable
FROM debian:buster-slim as graph-node
ENV RUST_LOG ""
Expand Down Expand Up @@ -82,11 +90,3 @@ COPY --from=graph-node-build /usr/local/cargo/bin/graph-node /usr/local/cargo/bi
COPY --from=graph-node-build /etc/image-info /etc/image-info
COPY docker/Dockerfile /Dockerfile
CMD start

# Debug image to access core dumps
FROM graph-node-build as graph-node-debug
RUN apt-get update \
&& apt-get install -y curl gdb postgresql-client

COPY docker/Dockerfile /Dockerfile
COPY docker/bin/* /usr/local/bin/
Loading

0 comments on commit ee988ac

Please sign in to comment.