-
Notifications
You must be signed in to change notification settings - Fork 291
Purge package sonic-db-cli which depends on libswsscommon #628
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lguohan
reviewed
Jun 3, 2022
RUN dpkg --purge libsaimetadata | ||
RUN dpkg --purge libsaivs | ||
RUN dpkg --purge syncd-vs | ||
RUN dpkg --purge python-swsscommon python3-swsscommon swss libsairedis sonic-db-cli libswsscommon libsaimetadata libsaivs syncd-vs |
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.
can you install sonic-db-cli?
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.
@liuh-80 Please help install sonic-db-cli in future PR. This PR will focus on fixing build.
lguohan
approved these changes
Jun 4, 2022
6 tasks
lguohan
pushed a commit
to sonic-net/sonic-buildimage
that referenced
this pull request
Jun 14, 2022
2022-06-14 92f5411: [counter] Add counter table (sonic-net/sonic-swss-common#622) (Junhua Zhai) 2022-06-03 38c04dd: Purge package sonic-db-cli which depends on libswsscommon (sonic-net/sonic-swss-common#628) (Qi Luo)
itamar-talmon
pushed a commit
to itamar-talmon/sonic-swss-common
that referenced
this pull request
Jul 19, 2022
) Since sonic-db-cli depends on libswsscommon, we could not simply only purge libswsscommon, so we purge both together. The build error is as below Step 8/19 : RUN dpkg --purge libswsscommon ---> Running in ed8132d457e9 dpkg: dependency problems prevent removal of libswsscommon: sonic-db-cli depends on libswsscommon. dpkg: error processing package libswsscommon (--purge): dependency problems - not removing Errors were encountered while processing: libswsscommon
yxieca
pushed a commit
that referenced
this pull request
Aug 8, 2022
Since sonic-db-cli depends on libswsscommon, we could not simply only purge libswsscommon, so we purge both together. The build error is as below Step 8/19 : RUN dpkg --purge libswsscommon ---> Running in ed8132d457e9 dpkg: dependency problems prevent removal of libswsscommon: sonic-db-cli depends on libswsscommon. dpkg: error processing package libswsscommon (--purge): dependency problems - not removing Errors were encountered while processing: libswsscommon
liushilongbuaa
pushed a commit
to liushilongbuaa/sonic-swss-common
that referenced
this pull request
Dec 30, 2022
) Since sonic-db-cli depends on libswsscommon, we could not simply only purge libswsscommon, so we purge both together. The build error is as below Step 8/19 : RUN dpkg --purge libswsscommon ---> Running in ed8132d457e9 dpkg: dependency problems prevent removal of libswsscommon: sonic-db-cli depends on libswsscommon. dpkg: error processing package libswsscommon (--purge): dependency problems - not removing Errors were encountered while processing: libswsscommon
liushilongbuaa
added a commit
that referenced
this pull request
Jan 3, 2023
* Switch to using stock gcovr 5.2 (#726) * Switch to using stock gcovr 5.2 The custom branch we were using previously has since been deleted. That branch appears to have some fix for searching for the source file (for a gcda file) recursively. I don't know if it's needed or not today, but using the stock gcovr 5.2 (from the official repo) appears to work. Signed-off-by: Saikrishna Arcot <[email protected]> * Fix: missing sonic-db-cli in docker-sonic-vs image (#640) * Purge package sonic-db-cli which depends on libswsscommon (#628) Since sonic-db-cli depends on libswsscommon, we could not simply only purge libswsscommon, so we purge both together. The build error is as below Step 8/19 : RUN dpkg --purge libswsscommon ---> Running in ed8132d457e9 dpkg: dependency problems prevent removal of libswsscommon: sonic-db-cli depends on libswsscommon. dpkg: error processing package libswsscommon (--purge): dependency problems - not removing Errors were encountered while processing: libswsscommon Signed-off-by: Saikrishna Arcot <[email protected]> Co-authored-by: Saikrishna Arcot <[email protected]> Co-authored-by: Qi Luo <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What I did
Purge package sonic-db-cli which depends on libswsscommon
Why I did it
Since sonic-db-cli depends on libswsscommon, we could not simply only purge libswsscommon, so we purge both together.
The build error is as below
How I verified it
Details if related