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
When pycicle checks out a new branch to test a PR, it will not get the right SHA when the PR comes from a remote clone of the repo being tested.
The sequence used here assumes that the branch being tested comes from origin and therfore the SHA will not be fetched for PR from a clone
${CTEST_GIT_COMMAND} checkout ${PYCICLE_MASTER}; ${CTEST_GIT_COMMAND} fetch origin; ${CTEST_GIT_COMMAND} reset --hard origin/${PYCICLE_MASTER}; ${CTEST_GIT_COMMAND} branch -D ${GIT_BRANCH}; ${CTEST_GIT_COMMAND} checkout -b ${GIT_BRANCH}; ${CTEST_GIT_COMMAND} fetch origin ${PYCICLE_BRANCH}; ${CTEST_GIT_COMMAND} merge --no-edit FETCH_HEAD; ${CTEST_GIT_COMMAND} checkout ${PYCICLE_MASTER}; ${CTEST_GIT_COMMAND} clean -fd;"
The text was updated successfully, but these errors were encountered:
PDoakORNL
No branches or pull requests
When pycicle checks out a new branch to test a PR, it will not get the right SHA when the PR comes from a remote clone of the repo being tested.
The sequence used here assumes that the branch being tested comes from origin and therfore the SHA will not be fetched for PR from a clone
The text was updated successfully, but these errors were encountered: