-
Notifications
You must be signed in to change notification settings - Fork 1
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
Migrate from Jenkins -> GitHub Actions #71
base: develop
Are you sure you want to change the base?
Conversation
- name: Install requirements from all requirements.txt files | ||
run: | | ||
INSTALL_COMMAND="pip install" | ||
for file in sykle/plugins/**/requirements.txt; do |
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.
👍 nice little bash snippet
.github/workflows/cd.yml
Outdated
@@ -0,0 +1,15 @@ | |||
name: CD |
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.
@emmabh this can actually be removed; originally, when we had most of our projects on jenkins, this would ensure that a push to this repo would automatically update jenkins so that the internal syk
command available on that jenkins instance was up to date. So the sudo make install
command that was previously running on jenkins was just for that instance.
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.
a-ha! that makes total sense, I was wondering why we had a cd that didn't go anywhere but it all makes sense now lol.
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.
CD workflow can be removed/is no longer necessary, otherwise LGTM
NB: had to lock in a version of gitdb2 that was compatible with GitPython