Derek Wickern

Results 111 comments of Derek Wickern

``` [error] Cloning into '.'... [error] Warning: Permanently added the ECDSA host key for IP address '140.82.114.3' to the list of known hosts. [error] [email protected]: Permission denied (publickey). [error] fatal:...

> The CLA check is failing, would you mind signing the CLA at https://www.lightbend.com/contribute/cla/scala ? 👍 Signed

I don't see a warning on ember-cli 5.6.0 but there are no tests being generated. Running it as a script seems like a better solution anyhow. Add to `package.json`: `"lint:deps":...

I used a [play-scala-seed](https://github.com/playframework/play-scala-seed.g8) as the basis for my scripted test. It's not going to work on sbt 2.x because Play is only published for sbt 1.x. CI calls this...

The error was trying to resolve Play's sbt plugin for sbt 2.0.0-M3, which doesn't exist > [info] Running docker/test-layer-groups-playframework > [info] [info] welcome to sbt 2.0.0-M3 (Eclipse Adoptium Java 11.0.26)...

I've been banging my head against this and I think I finally know what's happening. We run scripted tests by publishing sbt-native-packager version `0.0.0-SNAPSHOT`. Play Framework depends on a version...

It's actually `dockerGroupLayers`. it will be easy to fix... more work to update the tests 😅 https://github.com/sbt/sbt-native-packager/blob/03f8a0e054266ba438e0798c9c990bd3210eb85a/src/main/scala/com/typesafe/sbt/packager/docker/DockerPlugin.scala#L108-L140 #1425 made some improvements before. The layering is pretty good for most applications....

I worked around this by replacing `transition.retry()` with: ``` function * params(transition) { for (const info of transition.handlerInfos) { for (const value of Object.values(info.params)) { yield value; } } }...

@kjhangiani Good catch. Maybe you have a route with more than one dynamic segment like `this.route('my-route', { path: ':first/:second' })` If it works then the code can probably be simplified...

I wish I knew of a better way. Currently the bat script needs to understand how many arguments to consume for every input. For example, this code handles `-J-XX:key=value`: https://github.com/sbt/sbt-native-packager/blob/6b69d6c8e91a65db02660431602dc646103cd260/src/main/resources/com/typesafe/sbt/packager/archetypes/scripts/bat-template#L159-L166...