oakestra / oakestra-net

Networking component of Oakestra
Apache License 2.0
6 stars 8 forks source link

v0.4.2 go unsafe panic issue #56

Closed giobart closed 1 year ago

giobart commented 1 year ago

Short

running the release 0.4.2 we get the following error:

panic: Something in this program imports go4.org/unsafe/assume-no-moving-gc to declare that it assumes a non-moving garbage collector, but your version of go4.org/unsafe/assume-no-moving-gc hasn't been updated to assert that it's safe against the go1.19 runtime. If you want to risk it, run with environment variable ASSUME_NO_MOVING_GC_UNSAFE_RISK_IT_WITH=go1.19 set. Notably, if go1.19 adds a moving garbage collector, this program is unsafe to use.

Solution

To solve this, we simply need to create the release artefacts with a proper version of GO from the GitHub runners.

Status

Solving it

Checklist

giobart commented 1 year ago

solved with #57