Skip to content

Commit

Permalink
Merge pull request #2669 from fermyon/fix-ci
Browse files Browse the repository at this point in the history
Fix CI issue in integration tests by updating conformance-test dependency
  • Loading branch information
rylev committed Jul 22, 2024
2 parents ee6a267 + 1193847 commit 44fb8c1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ redis = "0.24"
runtime-tests = { path = "tests/runtime-tests" }
test-components = { path = "tests/test-components" }
test-codegen-macro = { path = "crates/test-codegen-macro" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "2bb3eb83467a9e9595fa0fd11d7a49fa0300b113" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "d2129a3fd73140a76c77f15a030a5273b37cbd11" }

[build-dependencies]
cargo-target-dep = { git = "https://github.com/fermyon/cargo-target-dep", rev = "482f269eceb7b1a7e8fc618bf8c082dd24979cf1" }
Expand Down Expand Up @@ -134,7 +134,9 @@ hyper = { version = "1.0.0", features = ["full"] }
reqwest = { version = "0.12", features = ["stream", "blocking"] }
tracing = { version = "0.1", features = ["log"] }

wasi-common-preview1 = { version = "22.0.0", package = "wasi-common", features = ["tokio"] }
wasi-common-preview1 = { version = "22.0.0", package = "wasi-common", features = [
"tokio",
] }
wasmtime = "22.0.0"
wasmtime-wasi = "22.0.0"
wasmtime-wasi-http = "22.0.0"
Expand Down
4 changes: 2 additions & 2 deletions tests/conformance-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ rust-version.workspace = true
[dependencies]
anyhow = "1.0"
testing-framework = { path = "../testing-framework" }
conformance-tests = { git = "https://github.com/fermyon/conformance-tests", rev = "2bb3eb83467a9e9595fa0fd11d7a49fa0300b113" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "2bb3eb83467a9e9595fa0fd11d7a49fa0300b113" }
conformance-tests = { git = "https://github.com/fermyon/conformance-tests", rev = "d2129a3fd73140a76c77f15a030a5273b37cbd11" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "d2129a3fd73140a76c77f15a030a5273b37cbd11" }

[lints]
workspace = true
2 changes: 1 addition & 1 deletion tests/runtime-tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ anyhow = "1.0"
env_logger = "0.10.0"
log = "0.4"
testing-framework = { path = "../testing-framework" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "2bb3eb83467a9e9595fa0fd11d7a49fa0300b113" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "d2129a3fd73140a76c77f15a030a5273b37cbd11" }
test-components = { path = "../test-components" }
2 changes: 1 addition & 1 deletion tests/testing-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ nix = "0.26.1"
regex = "1.10.2"
reqwest = { workspace = true }
temp-dir = "0.1.11"
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "2bb3eb83467a9e9595fa0fd11d7a49fa0300b113" }
test-environment = { git = "https://github.com/fermyon/conformance-tests", rev = "d2129a3fd73140a76c77f15a030a5273b37cbd11" }
spin-trigger-http = { path = "../../crates/trigger-http" }
spin-http = { path = "../../crates/http" }
spin-trigger = { path = "../../crates/trigger" }
Expand Down

0 comments on commit 44fb8c1

Please sign in to comment.