-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move verification tests into this repo #123
Conversation
af8a40e
to
4b5410f
Compare
@@ -39,6 +39,11 @@ allprojects { | |||
} | |||
} | |||
|
|||
buildscript { | |||
// required for m1 mac | |||
configurations { classpath { resolutionStrategy { force("net.java.dev.jna:jna:5.7.0") } } } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tillrohrmann can you double check this? I don't remember you ever needed this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Need this fix in 5.7.0 java-native-access/jna#1238
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's quite an old bug, i wonder which dep is bringing this in
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
its this thing which is unmaintained https://github.com/JetBrains/intellij-deps-trove4j
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| +--- org.jetbrains.kotlin:kotlin-compiler-embeddable:1.8.10
| | +--- org.jetbrains.kotlin:kotlin-daemon-embeddable:1.8.10
| | +--- org.jetbrains.intellij.deps:trove4j:1.0.20200330
| | \--- net.java.dev.jna:jna:5.6.0 -> 5.7.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Uh ok i'll try to see if this goes away when bumping kotlin
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, perhaps can you run once again npm run format
before merging and fix the node lint issues?
# Use a new stage so that the build-arg GH_PACKAGE_READ_ACCESS_TOKEN isn't leaked into the final image history | ||
COPY --from=prod /usr/src/app/ /usr/src/app/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for fixing this!
Fixes #122