Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Testing #208

Merged
merged 23 commits into from
Dec 16, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove bridge stuff
alexkeating committed Nov 20, 2024
commit fcadbe9ece709652d0fb1597803f370c9bb9857b
32 changes: 16 additions & 16 deletions Tiltfile
Original file line number Diff line number Diff line change
@@ -7,21 +7,21 @@ git_checkout('https://github.com/wormhole-foundation/wormhole.git#main', '.wormh
load(".wormhole/Tiltfile", "namespace", "k8s_yaml_with_ns")

# Copied from .wormhole/Tiltfile, as this setup will extend the `solana-contract` image in order to inject the .so at startup
docker_build(
ref = "bridge-client",
context = ".wormhole/",
only = ["./proto", "./solana", "./clients"],
dockerfile = ".wormhole/solana/Dockerfile.client",
# Ignore target folders from local (non-container) development.
ignore = [".wormhole/solana/*/target"],
)
docker_build(
ref = "solana-contract",
context = ".wormhole/solana",
dockerfile = ".wormhole/solana/Dockerfile",
target = "builder",
build_args = {"BRIDGE_ADDRESS": "Bridge1p5gheXUvJ6jGWGeCsgPKgnE3YgdGKRVCMY9o"}
)
# docker_build(
# ref = "bridge-client",
# context = ".wormhole/",
# only = ["./proto", "./solana", "./clients"],
# dockerfile = ".wormhole/solana/Dockerfile.client",
# # Ignore target folders from local (non-container) development.
# ignore = [".wormhole/solana/*/target"],
# )
# docker_build(
# ref = "solana-contract",
# context = ".wormhole/solana",
# dockerfile = ".wormhole/solana/Dockerfile",
# target = "builder",
# build_args = {"BRIDGE_ADDRESS": "Bridge1p5gheXUvJ6jGWGeCsgPKgnE3YgdGKRVCMY9o"}
# )

# EVM build
docker_build(
@@ -40,5 +40,5 @@ k8s_yaml_with_ns("./integration-tests/ci.yaml")
k8s_resource(
"multi-gov-tests",
labels = ["multi-gov"],
resource_deps = ["eth-devnet", "eth-devnet2", "guardian", "relayer-engine", "wormchain"],
resource_deps = ["eth-devnet", "eth-devnet2", "solana-devnet", "guardian", "relayer-engine", "wormchain"],
)