-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update Workflows #55
Update Workflows #55
Conversation
run: | | ||
# remove the remote declarations from the DESCRIPTION so that we | ||
# test the released version | ||
sed -i -e '/ hubverse-org/d' DESCRIPTION |
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.
For my own understanding: if there's a hotfix/release for this package (hubEvals
), why do we need to remove the remote references for dependencies like hubUtils
?
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.
This is because these packages are in the Remotes:
field, which will pull the development versions of the packages when standing up the infrastructure for testing (see https://r-pkgs.org/dependencies-in-practice.html#depending-on-the-development-version-of-a-package).
By removing these from the DESCRIPTION, we force the workflow to pull the released versions of the dependent packages.
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.
approve subject to readme link update
Co-authored-by: Evan Ray <[email protected]>
update workflows for universe release (to be merged after release)