We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cd50f1 commit 9466f26Copy full SHA for 9466f26
rakelib/packaging.rake
@@ -25,6 +25,10 @@ def npm_pkg_build_command(pkg)
25
end
26
27
def npm_pkg_rubies_cache_key(pkg)
28
+ # FIXME: Now CrossRubyExtProduct depends on just built baseruby, and exts can be
29
+ # built after restoring the tarball cache. So it can fail to find baseruby when the
30
+ # cache hit. We need to orchestrate the build dependency graph properly.
31
+ return nil if pkg[:name] == "ruby-head-wasm-wasi"
32
build_command = npm_pkg_build_command(pkg)
33
return nil unless build_command
34
require "open3"
0 commit comments