Engineer:
Port & refactor documentation / issues / discussions from old repo:
-- build --
- enhance error handling and checks for deploy script referenced in build_all.sh
- shift to local cache for external deps to avoid breakage
-- contest future work --
Update from discussions with OCP community
Question: will contest comply in future to the OCP spec which is currently under dev?
Answer(s):
contest has support for some stuff already - they're under the exec plugin:
https://github.com/linuxboot/contest/tree/main/plugins/teststeps/exec
The plugin was written to run external binaries of any sort, locally or remote thru ssh (see transport), and there's an ocp_output flag for it to look for that output on stdout; otherwise it just says started event , ended event
and result is based on exit code (still in the ocp_output=false case) with ocp_output=true, it looks for result in testRunEnd (or whatever the name of that message was), and creates additional events for stuff that happens inside the test (doesn't have measurements iirc) is it correct to assume that eventually contest will also comply
Summary: after OCP publish v1 of spec, maintainers will probably add the rest of the messages parsing
Engineer:
Port & refactor documentation / issues / discussions from old repo:
-- build --
-- contest future work --
Update from discussions with OCP community
Question: will contest comply in future to the OCP spec which is currently under dev?
Answer(s):
contest has support for some stuff already - they're under the exec plugin:
https://github.com/linuxboot/contest/tree/main/plugins/teststeps/exec
The plugin was written to run external binaries of any sort, locally or remote thru ssh (see transport), and there's an ocp_output flag for it to look for that output on stdout; otherwise it just says started event , ended event
and result is based on exit code (still in the ocp_output=false case) with ocp_output=true, it looks for result in testRunEnd (or whatever the name of that message was), and creates additional events for stuff that happens inside the test (doesn't have measurements iirc) is it correct to assume that eventually contest will also comply
Summary: after OCP publish v1 of spec, maintainers will probably add the rest of the messages parsing