don't go ham on removing fmt useful data

This commit is contained in:
soypat
2026-09-04 06:27:05 -07:00
parent 88bd43bdd3
commit 3d15e0ff7b
6 changed files with 54 additions and 7 deletions
+6
View File
@@ -143,6 +143,12 @@ jobs:
- uses: actions/setup-go@v6
with:
go-version: "1.26"
# Needed because a build command in memci.json names tinygo. Keep the two
# versions in step: TinyGo 0.42 builds with Go 1.25 through 1.27 and
# refuses to run outside that window, in either direction.
- uses: acifani/setup-tinygo@v2
with:
tinygo-version: "0.42.0"
- uses: soypat/memci@main
with:
args: -kind package
+1 -1
View File
@@ -6,7 +6,7 @@ name: memci comment
on:
workflow_run:
workflows: [memci]
workflows: [CI]
types: [completed]
permissions: read-all
+7 -1
View File
@@ -3,5 +3,11 @@
"name":"Stack MWE",
"build":"go build -o=mwe.elf -tags=noslog ./examples/min-working-example",
"elf":"mwe.elf"
},
{
"name":"Stack MWE pico",
"build":"tinygo build -o=mwe-pico.elf -target=pico -tags=noslog -panic=trap ./examples/min-working-example",
"elf":"mwe-pico.elf",
"mem":true
}
]
]