Skip to content

Commit 4b834df

Browse files
committed
Bump rules_foreign_cc and try all engines on Windows again
Signed-off-by: Keith Mattix II <keithmattix@microsoft.com>
1 parent 45ec154 commit 4b834df

File tree

2 files changed

+19
-5
lines changed

2 files changed

+19
-5
lines changed

.github/workflows/test.yml

+16-2
Original file line numberDiff line numberDiff line change
@@ -260,15 +260,29 @@ jobs:
260260
os: macos-13
261261
arch: x86_64
262262
action: test
263+
- name: 'Wasmtime on Windows/x86_64'
264+
engine: 'wasmtime'
265+
repo: 'com_github_bytecodealliance_wasmtime'
266+
os: windows-2019
267+
arch: x86_64
268+
action: test
269+
targets: -//test/fuzz/...
263270
- name: 'WAVM on Windows/x86_64'
264271
engine: 'wavm'
265272
repo: 'com_github_wavm_wavm'
266273
os: windows-2019
267274
arch: x86_64
268275
action: test
269276
targets: -//test/fuzz/...
270-
- name: 'WAMR on Windows/x86_64'
271-
engine: 'wamr'
277+
- name: 'WAMR JIT on Windows/x86_64'
278+
engine: 'wamr-jit'
279+
repo: 'com_github_bytecodealliance_wasm_micro_runtime'
280+
os: windows-2019
281+
arch: x86_64
282+
action: test
283+
targets: -//test/fuzz/...
284+
- name: 'WAMR Interp on Windows/x86_64'
285+
engine: 'wamr-interp'
272286
repo: 'com_github_bytecodealliance_wasm_micro_runtime'
273287
os: windows-2019
274288
arch: x86_64

bazel/repositories.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ def proxy_wasm_cpp_host_repositories():
6969
maybe(
7070
http_archive,
7171
name = "rules_foreign_cc",
72-
sha256 = "bcd0c5f46a49b85b384906daae41d277b3dc0ff27c7c752cc51e43048a58ec83",
73-
strip_prefix = "rules_foreign_cc-0.7.1",
74-
url = "https://github.com/bazelbuild/rules_foreign_cc/archive/0.7.1.tar.gz",
72+
sha256 = "a2e6fb56e649c1ee79703e99aa0c9d13c6cc53c8d7a0cbb8797ab2888bbc99a3",
73+
strip_prefix = "rules_foreign_cc-0.12.0",
74+
url = "https://github.com/bazelbuild/rules_foreign_cc/archive/0.12.0.tar.gz",
7575
)
7676

7777
maybe(

0 commit comments

Comments
 (0)