Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
13 changes: 0 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,19 +228,6 @@ jobs:
arch: x86_64
action: test
cache: true
- name: 'WasmEdge on Linux/x86_64'
engine: 'wasmedge'
repo: 'com_github_wasmedge_wasmedge'
os: ubuntu-24.04-16core
arch: x86_64
action: test
flags: --config=clang
- name: 'WasmEdge on macOS/x86_64'
engine: 'wasmedge'
repo: 'com_github_wasmedge_wasmedge'
os: macos-13
arch: x86_64
action: test
- name: 'Wasmtime on Linux/x86_64'
engine: 'wasmtime'
repo: 'com_github_bytecodealliance_wasmtime'
Expand Down
30 changes: 0 additions & 30 deletions BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ load(
"proxy_wasm_select_engine_null",
"proxy_wasm_select_engine_v8",
"proxy_wasm_select_engine_wamr",
"proxy_wasm_select_engine_wasmedge",
"proxy_wasm_select_engine_wasmtime",
)
load("@rules_cc//cc:defs.bzl", "cc_library")
Expand Down Expand Up @@ -155,33 +154,6 @@ cc_library(
],
)

cc_library(
name = "wasmedge_lib",
srcs = [
"src/common/types.h",
"src/wasmedge/types.h",
"src/wasmedge/wasmedge.cc",
],
hdrs = ["include/proxy-wasm/wasmedge.h"],
defines = [
"PROXY_WASM_HAS_RUNTIME_WASMEDGE",
"PROXY_WASM_HOST_ENGINE_WASMEDGE",
],
linkopts = select({
"@platforms//os:macos": [
"-ldl",
],
"//conditions:default": [
"-lrt",
"-ldl",
],
}),
deps = [
":wasm_vm_headers",
"//external:wasmedge",
],
)

cc_library(
name = "wasmtime_lib",
srcs = [
Expand Down Expand Up @@ -290,8 +262,6 @@ cc_library(
[":v8_lib"],
) + proxy_wasm_select_engine_wamr(
[":wamr_lib"],
) + proxy_wasm_select_engine_wasmedge(
[":wasmedge_lib"],
) + proxy_wasm_select_engine_wasmtime(
[":wasmtime_lib"],
[":prefixed_wasmtime_lib"],
Expand Down
5 changes: 0 additions & 5 deletions bazel/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,6 @@ config_setting(
values = {"define": "engine=wamr-jit"},
)

config_setting(
name = "engine_wasmedge",
values = {"define": "engine=wasmedge"},
)

config_setting(
name = "engine_wasmtime",
values = {"define": "engine=wasmtime"},
Expand Down
41 changes: 0 additions & 41 deletions bazel/external/wasmedge.BUILD

This file was deleted.

16 changes: 0 additions & 16 deletions bazel/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -288,22 +288,6 @@ def proxy_wasm_cpp_host_repositories():
url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-15.0.7/llvm-project-15.0.7.src.tar.xz",
)

# WasmEdge with dependencies.

maybe(
http_archive,
name = "com_github_wasmedge_wasmedge",
build_file = "@proxy_wasm_cpp_host//bazel/external:wasmedge.BUILD",
sha256 = "7ab8a0df37c8d282ecff72d0f0bff8db63fd92df1645d5a014a9dbed4b7f9025",
strip_prefix = "WasmEdge-proxy-wasm-0.13.1",
url = "https://github.com/WasmEdge/WasmEdge/archive/refs/tags/proxy-wasm/0.13.1.tar.gz",
)

native.bind(
name = "wasmedge",
actual = "@com_github_wasmedge_wasmedge//:wasmedge_lib",
)

# Wasmtime with dependencies.

maybe(
Expand Down
7 changes: 0 additions & 7 deletions bazel/select.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,3 @@ def proxy_wasm_select_engine_wasmtime(xs, xp):
"@proxy_wasm_cpp_host//bazel:multiengine": xp,
"//conditions:default": [],
})

def proxy_wasm_select_engine_wasmedge(xs):
return select({
"@proxy_wasm_cpp_host//bazel:engine_wasmedge": xs,
"@proxy_wasm_cpp_host//bazel:multiengine": xs,
"//conditions:default": [],
})
26 changes: 0 additions & 26 deletions include/proxy-wasm/wasmedge.h

This file was deleted.

29 changes: 0 additions & 29 deletions src/wasmedge/types.h

This file was deleted.

Loading
Loading