-
Notifications
You must be signed in to change notification settings - Fork 463
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
Add cplint workflow support for minimal lint-only builds #5225
base: main
Are you sure you want to change the base?
Conversation
06d04b7
to
54a7cc7
Compare
As you can see, the step fails. This problem is about minimizing the requirements for running |
No, this is not expected behavior but it is possible that you run out of memory if your system does not have a lot of RAM. |
hey @blackdragoon26! I found out that , you are doing amazing work, I was reading the logs of failed check, it was due to the outdated version setup tools, you should modify the ci workflow with this command -pip install --upgrade setuptools |
Thanks alot, I would look into it @AkarshSahlot |
bcf5123
to
e4a4de0
Compare
…5209) Signed-off-by: Akarsh Sahlot <[email protected]> Signed-off-by: fruffy <[email protected]> Signed-off-by: Akarsh Sahlot <[email protected]> Signed-off-by: Andy Fingerhut <[email protected]> Signed-off-by: Andy Fingerhut <[email protected]> Co-authored-by: Fabian Ruffy <[email protected]> Co-authored-by: Andy Fingerhut <[email protected]> Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: fruffy <[email protected]> Signed-off-by: blackdragoon26 <[email protected]>
…g#5221) Signed-off-by: fruffy <[email protected]> Signed-off-by: blackdragoon26 <[email protected]>
…he-2.0 (p4lang#5191) Signed-off-by: Andy Fingerhut <[email protected]> Signed-off-by: blackdragoon26 <[email protected]>
…ograms (p4lang#5189) Signed-off-by: Andy Fingerhut <[email protected]> Signed-off-by: blackdragoon26 <[email protected]>
…5185) Signed-off-by: fruffy <[email protected]> Signed-off-by: Fabian Ruffy <[email protected]> Co-authored-by: Vladimír Štill <[email protected]> Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: Pitchumani Sivanupandi <[email protected]> Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
This reverts commit 2a14ff8. Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: Chris Dodd <[email protected]> Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
Signed-off-by: blackdragoon26 <[email protected]>
1740f0b
to
2bb9a9b
Compare
@fruffy , kindly review it! |
Working on this issue #4534
I made the tweaks in the lint workflow so that we can run cpplint without needing to build everything.
I ran these following commands
mkdir -p build && cd build
cmake .. -DCMAKE_LINT_ONLY=ON
cmake --build . --target cpplint
I am thinking as next step to further dig in to check for running once isolated docker env.