-
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.
Adjust CircleCI and Github Actions to account for new branch names v4…
…_development and v4_main (#4413)
- Loading branch information
Showing
3 changed files
with
15 additions
and
15 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 |
---|---|---|
|
@@ -111,11 +111,11 @@ jobs: | |
steps: | ||
- checkout | ||
- run: | ||
name: Merge into development virtually | ||
name: Merge into v4_development virtually | ||
command: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CircleCI" | ||
git checkout development | ||
git checkout v4_development | ||
git merge --no-edit --no-ff $CIRCLE_BRANCH | ||
- dependencies_setup | ||
- build_unit_test_steps | ||
|
@@ -126,14 +126,14 @@ jobs: | |
- functional_precondition | ||
- checkout | ||
- run: | ||
name: Virtual merge into development branch | ||
name: Virtual merge into v4_development branch | ||
command: | | ||
if [ "${CIRCLE_BRANCH}" = "development" ]; then | ||
echo "On development branch already, no merge needed" | ||
if [ "${CIRCLE_BRANCH}" = "v4_development" ]; then | ||
echo "On v4_development branch already, no merge needed" | ||
else | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CircleCI" | ||
git checkout development | ||
git checkout v4_development | ||
git merge --no-edit --no-ff $CIRCLE_BRANCH | ||
fi | ||
- dependencies_setup | ||
|
@@ -148,7 +148,7 @@ jobs: | |
command: | ||
node test/functional/runTests.js --selenium=remote --reporters=junit --debug=true --app=remote --browsers=chrome --protocol=https --source=./test/functional/config/smokeVectors.json | ||
- process_test_results | ||
|
||
functional-tests-VOD_LIVE: | ||
executor: dashjs-executor | ||
steps: | ||
|
@@ -202,7 +202,7 @@ workflows: | |
filters: | ||
branches: | ||
ignore: | ||
- development # skiping redundant job if already on development | ||
- v4_development # skiping redundant job if already on development | ||
- functional-tests-smoke: | ||
filters: | ||
branches: | ||
|
@@ -216,7 +216,7 @@ workflows: | |
filters: | ||
branches: | ||
only: | ||
- development | ||
- v4_development | ||
jobs: | ||
- functional-tests-VOD_LIVE | ||
- functional-tests-DRM | ||
|
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
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