summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2022-09-03 15:10:23 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2022-09-03 19:19:55 +0900
commit652a624891eae34c3ba7b60eeb5419f0434f8e5e (patch)
treea31afb2db12645d2f2b3e1caa7e67cb936d7e03c /.github
parentc4f2f2ef2b1ad430deeaca9fd23bf433bc63160b (diff)
miniruby may not be built when cross-compiling
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/wasm.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml
index 713444b741..553347d727 100644
--- a/.github/workflows/wasm.yml
+++ b/.github/workflows/wasm.yml
@@ -92,7 +92,8 @@ jobs:
debugflags="${{ matrix.entry.debugflags }}" \
wasmoptflags="${{ matrix.entry.wasmoptflags }} ${{ matrix.entry.debugflags }}"
- - run: make ruby
+ # miniruby may not be built when cross-compling
+ - run: make mini ruby
- name: Run basictest
run: wasmtime run ./../build/miniruby --mapdir /::./ -- basictest/test.rb
working-directory: src