-
Notifications
You must be signed in to change notification settings - Fork 473
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
Adding clean target to ci-build target #2948
Adding clean target to ci-build target #2948
Conversation
Codecov Report
@@ Coverage Diff @@
## master #2948 +/- ##
==========================================
+ Coverage 47.43% 47.44% +0.01%
==========================================
Files 369 369
Lines 59494 59494
==========================================
+ Hits 28221 28229 +8
+ Misses 27984 27980 -4
+ Partials 3289 3285 -4
Continue to review full report at Codecov.
|
@@ -4,7 +4,7 @@ PKG_DIR = $(SRCPATH)/tmp/node_pkgs/$(OS_TYPE)/$(ARCH) | |||
|
|||
.PHONY: ci-clean ci-setup ci-build | |||
|
|||
ci-clean: | |||
ci-clean: clean |
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.
What does clean do? Is it like cleanWs()
which cleans the Workspace?
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.
@bricerisingalgorand a little help? I think it deletes temp files created during build command, but i'm not 100% sure.
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.
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.
That tries to delete all build/generated files in the current repo
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.
Good catch.
While building with Brice, we noticed that
make ci-build
doesn't clean automatically, and we probably want that by default. So we decided to add it.Are there any times we don't want clean included?