H​eikki H​okkanen

Results 44 comments of H​eikki H​okkanen

Any updates regarding this issue? We are seeing this randomly in integration tests running on Google Cloud Build.

@kdubb it seems I have hard time finding time to debug this issue. I think the best way to proceed would be to enable some more logging on our GCB,...

So the workaround is adding this to build.sbt: ``` scalacOptions ++= Seq("-Xmax-classfile-name", "254") ``` scala-pickling seems to generate so insanely long filenames that it's almost scary. I think there should...

That workaround does not help on encrypted filesystems like encfs/cryptfs because it limits the plaintext filename length only. The filename encryption can create much longer filenames that hit the maximum...

@strycore would you consider reopening this issue? I think it would be useful to import the Itch client library to Lutris, similar to how it's possible to import Steam games.

I think this approach does not work if you want to include output of steps in other jobs by using environment variables, as variables written in `$GITHUB_ENV` are only available...

On the bright side, the automated update found a case that does not yet have automated tests! Regardless of whether you disable the autoupdate, writing a test case for this...

Are there any workarounds how to ignore particular versions (like `5.0.0.Alpha2` in case of netty), but still update to latest `4.1.xx.Final`? ``` io.netty/netty-transport {:mvn/version "4.1.51.Final"} -> {:mvn/version "5.0.0.Alpha2"} io.netty/netty-transport-native-epoll {:mvn/version...

Is there any way to resolve this apart from 1) using unstable `slf4j-api` or 2) pinning HikariCP to a version prior to this change?

For `deps.edn`, I ended up using the following: ```clojure com.zaxxer/HikariCP {:mvn/version "4.0.3" :exclusions [org.slf4j/slf4j-api] ```