Skip to content

Build: drop js() from skainet-io-iree-params (closes #527)#528

Merged
michalharakal merged 1 commit intodevelopfrom
fix/io-iree-params-drop-js
Apr 19, 2026
Merged

Build: drop js() from skainet-io-iree-params (closes #527)#528
michalharakal merged 1 commit intodevelopfrom
fix/io-iree-params-drop-js

Conversation

@michalharakal
Copy link
Copy Markdown
Contributor

Summary

  • ./gradlew allTests fails on develop with a platform-type variant mismatch: skainet-io-iree-params declares js() but its transitive dep :skainet-compile:skainet-compile-hlo does not publish a JS target.
  • Drop js(). Wasm targets keep working (they use the wasm platform attribute, which the upstream dep does publish).

Background

This fix was originally committed to PR #525's branch (commit fdd378e7) but only the first commit made it into the merge, so develop landed in a broken state. Re-applying as a narrow standalone fix.

Test plan

  • ./gradlew allTests passes — 1056 tasks, 28 executed + 1028 cached, all green.
  • ./gradlew :skainet-io:skainet-io-iree-params:jvmTest still green.

Closes #527.

🤖 Generated with Claude Code

Fixes `./gradlew allTests` configuration failure on develop: the
module declared a `js()` target but depends on :skainet-compile-hlo,
which does not publish one. Gradle resolution fails with a
platform-type variant mismatch (consumer wants `js`, producer only
has `wasm`).

Wasm targets stay — they use a distinct `wasm` platform attribute
that :skainet-compile-hlo does publish.

This fix was originally part of PR #525 (commit fdd378e) but got
dropped during the merge; only the first commit landed. Re-applying
as a standalone, narrow fix.

Closes #527

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
@michalharakal michalharakal merged commit 7dc8e44 into develop Apr 19, 2026
4 checks passed
@michalharakal michalharakal deleted the fix/io-iree-params-drop-js branch April 19, 2026 11:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Build: skainet-io-iree-params declares js() target but depends on skainet-compile-hlo which does not

1 participant