-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add WASM / WASI targets #69
base: main
Are you sure you want to change the base?
Conversation
Thanks! This replaces #68, correct? I'll need to bring |
yep it can replace it |
Any chance we could get this merged? |
@Wavesonics that's definitely the plan, but not before CI is green. |
@Wavesonics is this something you're interested in contributing? We can merge right away once done. This way we don't need to block this update on |
ya I can do that |
This looks like the only way to do it, did you have something else in mind? |
I was unaware of this aproach. :) I was thinking that we could leverage // TODO: Not testing wasmJs until `kotlinx-resources` supports these targets.
tasks.named<Test>("wasmJsTest") {
filter {
excludeTestsMatching("*")
}
}
// TODO: Not testing wasmWasi until `kotlinx-resources` supports these targets.
tasks.named<Test>("wasmWasiTest") {
filter {
excludeTestsMatching("*")
}
} (I didn't run this code; it might have typos or not run as is… I'm just aware of excludeTestsMatching) |
Apply new project hierarchy, remove deprecated targets, add new ones.