-
Notifications
You must be signed in to change notification settings - Fork 7
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/Pkg] Rename spec and manifest files #19
Conversation
d4dc21c
to
a85717b
Compare
925ef64
to
4a3c8d6
Compare
4a3c8d6
to
b4f4df3
Compare
4f3e960
to
388e5f6
Compare
%license LICENSE | ||
%attr(0755,root,root) %{test_base_dir}/machine-learning-agent-test | ||
%attr(0755,root,root) %{test_base_dir}/mlops-agent-test |
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 fix 'test_base_dir'
%define test_base_dir %{_bindir}/mlops-agent-test
or
%define test_base_dir %{_bindir}/ml-test
then in file /tests/meson.build
test_base_dir = join_paths(.. , 'mlops-agent-test' or 'ml-test')
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.
I am going to use ml
. Thanks
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.
%define test_base_dir %{_bindir}/ml-agent-test |
%{test_base_dir}/unittests | ||
%{_libdir}/libml-agent-test.a | ||
%{_libdir}/libml-agent-test.so* | ||
%{_libdir}/libmlops-agent-test.a |
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.
should we include libmlops-agent-test library here?
suggestion at line 116 (update require mlops-agent > mlops-agent-test)
%package unittests
....
Requires: mlops-agent = %{version}-%{release} > mlops-agent-test = %{version}-%{release}
388e5f6
to
ae04696
Compare
This patch renames spec and manifest files to mlops-agent.spec and mlops-agent.manifest. It also update the package name with the'mlops-agent'. However, the name of D-Bus service is not changed since this channel is also used as Service API. Signed-off-by: Sangjung Woo <[email protected]>
ae04696
to
ea79f19
Compare
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!
Let's build with NNS/api:)
This patch renames spec and manifest files to
mlops-agent.spec
andmlops-agent.manifest
.Self evaluation:
Submit History
V4
V3
V2
mlops-agent
. It can cause the image creation error but it is more clear.org.tizen.machinelearning.service
since this service also used as Service API.V1