-
Notifications
You must be signed in to change notification settings - Fork 27
CI fixes #25
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
CI fixes #25
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,8 @@ | ||
| use std::sync::OnceLock; | ||
|
|
||
| use android_activity::{ | ||
| AndroidApp, InputStatus, MainEvent, OnCreateState, PollEvent, | ||
| input::{InputEvent, KeyAction, KeyEvent, KeyMapChar, MotionAction}, | ||
| ndk, ndk_sys, | ||
| ndk, ndk_sys, AndroidApp, InputStatus, MainEvent, OnCreateState, PollEvent, | ||
| }; | ||
| use jni::{ | ||
|
Comment on lines
3
to
7
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Might conflict with #24 where I ran
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I guess it it came up with the same result then hopefully it's fine?
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. but yeah the purpose of my opening this pr was to help you get a green light with your other prs, so fine with dropping this too
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably fine, let's see. |
||
| objects::{JObject, JString}, | ||
|
|
||
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.
Didn't notice the first time - can we just make this a multiline Yaml array if it formats it across multiple lines anyway?
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.
it does look ugly like this yeah
lets just land this though when if it passes CI, we can tidy this up some time and avoid another restart of the build
if this CI build fails then yeah can split it up
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.
(there's probably lots that could be improved about the ci.yaml workflow, and atm the aim was just intended to be a quick fix to get a greenlight and that just happend to pull in some automatic formatting changes when I added the
-P 26argument for theagdk-cpalbuild)