Skip to content

Commit

Permalink
Bump rules_foreign_cc and try all engines on Windows again
Browse files Browse the repository at this point in the history
Signed-off-by: Keith Mattix II <keithmattix@microsoft.com>
  • Loading branch information
keithmattix committed Aug 24, 2024
1 parent 45ec154 commit 4b834df
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,15 +260,29 @@ jobs:
os: macos-13
arch: x86_64
action: test
- name: 'Wasmtime on Windows/x86_64'
engine: 'wasmtime'
repo: 'com_github_bytecodealliance_wasmtime'
os: windows-2019
arch: x86_64
action: test
targets: -//test/fuzz/...
- name: 'WAVM on Windows/x86_64'
engine: 'wavm'
repo: 'com_github_wavm_wavm'
os: windows-2019
arch: x86_64
action: test
targets: -//test/fuzz/...
- name: 'WAMR on Windows/x86_64'
engine: 'wamr'
- name: 'WAMR JIT on Windows/x86_64'
engine: 'wamr-jit'
repo: 'com_github_bytecodealliance_wasm_micro_runtime'
os: windows-2019
arch: x86_64
action: test
targets: -//test/fuzz/...
- name: 'WAMR Interp on Windows/x86_64'
engine: 'wamr-interp'
repo: 'com_github_bytecodealliance_wasm_micro_runtime'
os: windows-2019
arch: x86_64
Expand Down
6 changes: 3 additions & 3 deletions bazel/repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ def proxy_wasm_cpp_host_repositories():
maybe(
http_archive,
name = "rules_foreign_cc",
sha256 = "bcd0c5f46a49b85b384906daae41d277b3dc0ff27c7c752cc51e43048a58ec83",
strip_prefix = "rules_foreign_cc-0.7.1",
url = "https://github.com/bazelbuild/rules_foreign_cc/archive/0.7.1.tar.gz",
sha256 = "a2e6fb56e649c1ee79703e99aa0c9d13c6cc53c8d7a0cbb8797ab2888bbc99a3",
strip_prefix = "rules_foreign_cc-0.12.0",
url = "https://github.com/bazelbuild/rules_foreign_cc/archive/0.12.0.tar.gz",
)

maybe(
Expand Down

0 comments on commit 4b834df

Please sign in to comment.