Skip to content
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

Better CircleCI setup #44

Open
1 of 5 tasks
MartinHelmut opened this issue Jul 24, 2021 · 0 comments
Open
1 of 5 tasks

Better CircleCI setup #44

MartinHelmut opened this issue Jul 24, 2021 · 0 comments
Labels
enhancement Improve on an existing feature.
Milestone

Comments

@MartinHelmut
Copy link
Member

MartinHelmut commented Jul 24, 2021

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
@MartinHelmut MartinHelmut added the enhancement Improve on an existing feature. label Jul 24, 2021
@MartinHelmut MartinHelmut modified the milestones: Version 1, MVP Jul 24, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement Improve on an existing feature.
Projects
None yet
Development

No branches or pull requests

1 participant