-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix CircleCI config, move away from v5.0.0 branch (#4412)
- Loading branch information
Showing
1 changed file
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,11 +130,11 @@ jobs: | |
steps: | ||
- checkout | ||
- run: | ||
name: Merge into v5.0.0 virtually | ||
name: Merge into development virtually | ||
command: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CircleCI" | ||
git checkout v5.0.0 | ||
git checkout development | ||
git merge --no-edit --no-ff $CIRCLE_BRANCH | ||
- dependencies_setup | ||
- build_unit_test_steps | ||
|
@@ -145,14 +145,14 @@ jobs: | |
- functional_precondition | ||
- checkout | ||
- run: | ||
name: Virtual merge into v5.0.0 branch | ||
name: Virtual merge into development branch | ||
command: | | ||
if [ "${CIRCLE_BRANCH}" = "v5.0.0" ]; then | ||
echo "On v5.0.0 branch already, no merge needed" | ||
if [ "${CIRCLE_BRANCH}" = "development" ]; then | ||
echo "On development branch already, no merge needed" | ||
else | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CircleCI" | ||
git checkout v5.0.0 | ||
git checkout development | ||
git merge --no-edit --no-ff $CIRCLE_BRANCH | ||
fi | ||
- dependencies_setup | ||
|