-
Notifications
You must be signed in to change notification settings - Fork 168
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
build: Also output commitmeta.json #226
Conversation
Still testing this! |
LGTM, will let someone else review though too. |
This is generally useful but especially so for the pkglist alone for higher level tools displaying releases/build outputs. Closes: coreos#197
let us know when ready. |
cfff4cf
to
92d4b05
Compare
OK, now tested! |
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.
Not super familiar with the Python bindings, but I pulled the PR and it worked for me.
@jlebon Do you want to make a separate PR for the |
I can do so once the PR is merged. |
LGTM. sorry about being late I did have one question. Is a negative value for timestamp allowed/expected?
|
Positive timestamps are off as well (not in this century). Opposite integer endianness? |
Yeah, that's some GVariant implementation detail. Will tweak! |
Yep. libostree uses BE by default to force this issue (similar rationale as ext4). We need to swap here, which...hm. Maybe it'd be easier to have (Of course there's the "JS numbers are really doubles" problem but that's only going to be an issue a rather long time from now) |
This is generally useful but especially so for the pkglist alone for
higher level tools displaying releases/build outputs.
Closes: #197