build / build (push) Failing after 11m35s

This commit is contained in:
2026-08-24 09:54:19 -06:00
parent 1b5c93b030
commit f6bc2947ef
3 changed files with 0 additions and 26 deletions
-16
View File
@@ -1,16 +0,0 @@
package gyehoek:gyehoek@0.1.0;
interface runtime {
resource scm {
make-small-int: static func(n: s32) -> scm;
}
}
interface program {
run: func() -> s32;
}
world gyehoek {
import runtime;
export program;
}
-5
View File
@@ -1,5 +0,0 @@
(module
(func $run (result i32)
(i32.const 123))
(export "gyehoek:gyehoek/program@0.1.0#run"
(func $run)))
-5
View File
@@ -1,5 +0,0 @@
(module
(func $make-small-int (param $n i32) (result i32)
(i32.mul (local.get $n) (i32.const 2)))
(export "gyehoek:gyehoek/runtime@0.1.0[method]scm.make-small-int"
(func $make-small-int)))