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 daed501 commit 5eda64bCopy full SHA for 5eda64b
images/extension-builders/tinygo/commands.sh
@@ -24,4 +24,6 @@ extension_test() {
24
25
extension_clean() {
26
rm /source/main.wasm || true
27
+ go clean -modcache
28
+ rm -rf "${GOCACHE}" "${XDG_CACHE_HOME}" || true
29
}
test/e2e/util/data.go
@@ -35,6 +35,9 @@ func (t CategoryLanguageTuple) String() string {
35
func GetCategoryLanguageCombinations() []CategoryLanguageTuple {
36
tuples := make([]CategoryLanguageTuple, 0)
37
for _, lang := range cmdinit.SupportedLanguages {
38
+ if lang.Value != "tinygo" {
39
+ continue
40
+ }
41
for _, category := range cmdinit.SupportedCategories[lang.Value] {
42
tuples = append(tuples, CategoryLanguageTuple{category.Value, lang.Value})
43
0 commit comments