Skip to content

Commit

Permalink
chore: attempt docker fix
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstone committed Nov 5, 2024
1 parent 07cf3b1 commit 9437099
Show file tree
Hide file tree
Showing 6 changed files with 82 additions and 175 deletions.
11 changes: 3 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:

integration-test-eigenlayer:
timeout-minutes: 90
runs-on: macos-latest
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v2
Expand All @@ -142,14 +142,9 @@ jobs:
- name: Forge build
run: forge update && cd blueprints/incredible-squaring-eigenlayer && forge build --root ./contracts && cd ../../

- name: Start Docker Desktop
uses: ./.github/workflows/docker-desktop
with:
docker-desktop-build-url: "https://desktop.docker.com/mac/main/arm64/122432/Docker.dmg"
username: "runner"
env: "{}"
- name: Set up Docker
uses: crazy-max/ghaction-setup-docker@v3

# Rest of the steps remain the same
- name: Run anvil in background
run: anvil --version && anvil &

Expand Down
158 changes: 0 additions & 158 deletions .github/workflows/docker-desktop/action.yml

This file was deleted.

66 changes: 61 additions & 5 deletions Cargo.lock

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

17 changes: 17 additions & 0 deletions blueprints/examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,24 @@ color-eyre = { workspace = true }
reqwest = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }
uuid = { workspace = true }

alloy-primitives = "0.7.2"
alloy-json-abi = "0.7.2"
alloy-sol-types = "0.7.2"
alloy-rpc-client = "0.4.2"
alloy-rpc-types = { version = "0.1" }
alloy-rpc-types-eth = { version = "0.1" }
alloy-provider = { version = "0.1", default-features = false, features = ["reqwest", "ws"] }
alloy-pubsub = { version = "0.1" }
alloy-signer = { version = "0.1" }
alloy-signer-local = { version = "0.1" }
alloy-network = { version = "0.1" }
alloy-node-bindings = "0.4.2"
alloy-contract = { version = "0.1" }
alloy-consensus = { version = "0.1" }
alloy-transport = { version = "0.1" }
alloy-transport-http = { version = "0.1" }
[build-dependencies]
blueprint-metadata = { workspace = true }

Expand Down
3 changes: 0 additions & 3 deletions blueprints/examples/src/examples/sequential_event_listener.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
use crate::event_listener::EventListener;
use crate::store::LocalDatabase;
use crate::{error, Error};
use alloy_contract::ContractInstance;
use alloy_contract::Event;
use alloy_provider::Provider;
Expand Down
2 changes: 1 addition & 1 deletion blueprints/examples/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use blueprint::examples::*;
use example_blueprint as blueprint;
use blueprint_examples as blueprint;
use gadget_sdk::info;
use gadget_sdk::runners::{tangle::TangleConfig, BlueprintRunner};

Expand Down

0 comments on commit 9437099

Please sign in to comment.