Skip to content

Commit

Permalink
add uitest settings.
Browse files Browse the repository at this point in the history
filter develop branch
  • Loading branch information
wasnot committed Oct 14, 2020
1 parent a965a5f commit 9527d40
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,21 @@ jobs:
./gradlew jacocoMerge
bash <(curl -s https://codecov.io/bash)
ui_test:
executor:
name: build
steps:
- checkout
- run:
name: Request Ui Test
command: |
if [ $EXEC_ENV = 'private' ]; then
curl -u ${CIRCLECI_KEY} \
-d build_parameters[CIRCLE_JOB]=e2e-test \
-d build_parameters[RELEASE_BRANCH]=${CIRCLE_BRANCH} \
${UI_TEST_ENDPOINT}
fi
generate_docs:
executor:
name: build
Expand Down Expand Up @@ -102,6 +117,11 @@ workflows:
build_and_deploy:
jobs:
- test
- ui_test:
filters:
branches:
only:
- develop
- generate_docs:
filters:
branches:
Expand Down

0 comments on commit 9527d40

Please sign in to comment.