diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-03-01 02:59:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-01 02:59:55 +0100 |
commit | 48f08ef18983729dbdcd1af9468fb4ea1ee25fbe (patch) | |
tree | 68d2b0bd8eb7f340716bbbb69ced6107da76a801 /.circleci | |
parent | c7fd0908bd85bc5761aa28fe9c893f93394bfd4b (diff) | |
download | bugzilla-48f08ef18983729dbdcd1af9468fb4ea1ee25fbe.tar.gz bugzilla-48f08ef18983729dbdcd1af9468fb4ea1ee25fbe.tar.xz |
Bug 1437646 - Refactor entrypoint to use Bugzilla::DaemonControl
Diffstat (limited to '.circleci')
-rw-r--r-- | .circleci/config.yml | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 2241909ba..9c99df18b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -16,7 +16,7 @@ main_filters: &main_filters defaults: bmo_slim_image: &bmo_slim_image - image: mozillabteam/bmo-slim:20171228.1 + image: mozillabteam/bmo-slim:20180225.1 user: app mysql_image: &mysql_image @@ -24,6 +24,7 @@ defaults: bmo_env: &bmo_env PORT: 8000 + LOGGING_PORT: 5880 LOCALCONFIG_ENV: 1 BMO_db_user: bugs BMO_db_host: 127.0.0.1 @@ -129,8 +130,6 @@ jobs: /app/scripts/entrypoint.pl test_webservices | tee artifacts/$CIRCLE_JOB.txt - store_artifacts: path: /app/artifacts - - store_artifacts: - path: /app/logs test_selenium: parallelism: 1 @@ -146,8 +145,6 @@ jobs: /app/scripts/entrypoint.pl test_selenium | tee artifacts/$CIRCLE_JOB.txt - store_artifacts: path: /app/artifacts - - store_artifacts: - path: /app/logs test_bmo: parallelism: 1 @@ -172,8 +169,6 @@ jobs: /app/scripts/entrypoint.pl load_test_data mkdir artifacts - run: /app/scripts/entrypoint.pl test_bmo -q -f t/bmo/*.t - - store_artifacts: - path: /app/logs workflows: version: 2 |