We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Current CircleCI setup is very basic (just made it work). Needs more love, at least the following:
For "Only run on code change", this could be done via a checksum, example script for this is e.g.:
#!/bin/bash last_checksum=3ff06124af86b3a8ee43325f93769da9 checksum=`find src -type f -exec md5 {} \; | sort -k 2 | md5` if [ "$last_checksum" = "$checksum" ] then echo "nothing" else echo "change" fi
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current CircleCI setup is very basic (just made it work). Needs more love, at least the following:
For "Only run on code change", this could be done via a checksum, example script for this is e.g.:
The text was updated successfully, but these errors were encountered: