mirror of https://github.com/citusdata/citus.git
Merge enterprise branch if it exists (#4181)
* Merge enterprise branch if it exists We should merge the enterprise branch if it exists in the check enterpise merge job, otherwise the following can happen: - there is some change on community that breaks the compilation on enterprise without creating any conflicts - we fix the compilation issue by opening a branch on enterprise - the job doesn't see the enterprise specific fix because it doesn't try to merge enterprise branch if there are no conflicts * Update ci/check_enterprise_merge.sh Co-authored-by: Jelte Fennema <github-tech@jeltef.nl> * Simplify the steps Co-authored-by: Jelte Fennema <github-tech@jeltef.nl>pull/4174/head
parent
bc293d9d5e
commit
dba7e052df
|
@ -55,8 +55,11 @@ git checkout "enterprise/enterprise-master"
|
|||
if git merge --no-commit "origin/$PR_BRANCH"; then
|
||||
echo "INFO: community PR branch could be merged into enterprise-master"
|
||||
# check that we can compile after the merge
|
||||
check_compile
|
||||
if check_compile; then
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "WARN: Failed to compile after community PR branch was merged into enterprise"
|
||||
fi
|
||||
|
||||
# undo partial merge
|
||||
|
|
Loading…
Reference in New Issue