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
8 changes: 4 additions & 4 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@ jobs:

- name: Format (bazel query)
run: |
bazel query 'deps(//bazel/cargo/...)'
bazelisk query 'deps(//bazel/cargo/...)'
- name: Format (rules_rust)
run: |
bazel run //bazel/cargo/wasmsign:crates_vendor
bazel run //bazel/cargo/wasmtime:crates_vendor
bazelisk run //bazel/cargo/wasmsign:crates_vendor
bazelisk run //bazel/cargo/wasmtime:crates_vendor
git diff --exit-code
clang_format:
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:

- name: Bazel build
run: >
bazel build
bazelisk build
--config=hermetic-llvm
--config clang-tidy
--define engine=multi
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@ jobs:

- name: Bazel build
run: >
bazel build
bazelisk build
--verbose_failures
--test_output=errors
--config=clang
--config=hermetic-llvm
-c opt
$(bazel query 'kind(was.*_rust_binary, //test/test_data/...)')
$(bazel query 'kind(_optimized_wasm_cc_binary, //test/test_data/...)')
$(bazelisk query 'kind(was.*_rust_binary, //test/test_data/...)')
$(bazelisk query 'kind(_optimized_wasm_cc_binary, //test/test_data/...)')

# Currently, in Github Action, "Bazel build step" creates `wasm_canary_check.wasm` directory as a temporal directory.
# Since the name of this directory has "*.wasm" pattern, the step "Mangle build rules to use existing test data" fails.
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
shell: bash
run: >
${{ matrix.run_under }}
bazel ${{ matrix.action }}
bazelisk ${{ matrix.action }}
--verbose_failures
--test_output=errors
--define engine=${{ matrix.engine }}
Expand All @@ -332,7 +332,7 @@ jobs:
if: ${{ matrix.engine != 'null' && !startsWith(matrix.os, 'windows') }}
run: >
${{ matrix.run_under }}
bazel ${{ matrix.action }}
bazelisk ${{ matrix.action }}
--verbose_failures
--test_output=errors
--define engine=${{ matrix.engine }}
Expand Down
Loading