-
Notifications
You must be signed in to change notification settings - Fork 22
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 justfile
as a project workflow interface
#180
Add justfile
as a project workflow interface
#180
Conversation
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 personally always maintain a bunch of these scripts and would be very much for having some easier commands.
Would we want to document this?
I'm happy to add an entry to Readme if we can resolve the discussion here: #179 :) |
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.
Just a couple of comments then this would be great to see.
Will give this one a day here for any feedback from @tschneidereit, otherwise will land tomorrow. |
I have been maintaining a
justfile
as a workflow interface for my recent work. This might be helpful for someone else, but feel free to close the PR otherwise.This provide unified interface for most of the common jobs with a single line commands.
E.g
just wpt-server
will make all the steps necessary to spin up the wpt tests server. All the recipies are listed below.The defaults can be overwritten like this:
just builddir=cmake-build-release flavour=release wpt-test # run wpt tests in release
Resolves #179.