piston icon indicating copy to clipboard operation
piston copied to clipboard

pkg(go-1.20.1): Add Go 1.20.1

Open e-sp opened this issue 2 years ago • 3 comments

user@work ~/s/piston (update-golang)> ./piston run go -l 1.20.1 packages/go/1.20.1/test.*
== Run ==
STDOUT
OK

e-sp avatar Feb 27 '23 22:02 e-sp

Apparently the test failed due to restraints of its environment:

Running packages/go/1.20.1/test.go with runtime=go
== Run ==
STDERR
# math
    runtime: failed to create new OS thread (have 3 already; errno=11)
    runtime: may need to increase max user processes (ulimit -u)
    fatal error: newosproc

Since test.go basically only contains "hello, world", would it make sense to rerun the test? Or do I need to change something?

package main

import "fmt"

func main() {
	fmt.Println("OK")
}

e-sp avatar Feb 28 '23 15:02 e-sp

@HexF anything I can or should do?

e-sp avatar Mar 03 '23 09:03 e-sp

Might need to up the run timeout for tests to pass

HexF avatar Apr 10 '23 13:04 HexF