-
Notifications
You must be signed in to change notification settings - Fork 141
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
fix up vm parameters #676
fix up vm parameters #676
Conversation
with opencontainers/runtime-spec@fc51617 the runtime tools need to change as well to update the type. Do the simplest thing and simply allow multiple instances of the same argument to populate the array. Signed-off-by: Tycho Andersen <[email protected]>
LGTM, @vbatts please merge |
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.
LGTM
I kicked off the tests again |
Hrm, still seems busted? At least some of the errors look unrelated. |
hm. |
There are a few tests that have this version hardcoded and fail if it doesn't exist in various external places like, --- FAIL: TestJSONSchema (2.41s) --- FAIL: TestJSONSchema/1_error_occurred:__*_Version_string_empty_Refer_to:_https://github.com/opencontainers/runtime-spec/blob/v1.0.1/config.md#specification-version (0.00s) Error Trace: validate_test.go:267 Error: Not equal: expected: "1 error occurred:\n\n* Version string empty\nRefer to: https://github.com/opencontainers/runtime-spec/blob/v1.0.1/config.md#specification-version" actual: "1 error occurred:\n\n* Version string empty\nRefer to: https://github.com/opencontainers/runtime-spec/blob/v1.0.1-dev/config.md#specification-version" -- FAIL: TestGenerateValid (0.16s) generate_test.go:79: unexpected MUST error(s): 1 error occurred: * Could not read schema from HTTP, response status is 404 Not Found because it seems to be looking for: https://raw.githubusercontent.com/opencontainers/runtime-spec/v1.0.1-dev/schema/config-schema.json These probably shouldn't be hard coded, but I'll let someone from the project figure out how to solve it :) Signed-off-by: Tycho Andersen <[email protected]>
Ok, I figured this out, basically it's some version hard coding in the tests. It looks like there's not really a way for me to fix this, besides pretending it's not a -dev version that I imported. |
with opencontainers/runtime-spec@fc51617
the runtime tools need to change as well to update the type. Do the
simplest thing and simply allow multiple instances of the same argument to
populate the array.
Signed-off-by: Tycho Andersen [email protected]