diff options
author | Dylan William Hardison <dylan@hardison.net> | 2018-04-26 16:25:46 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2018-04-26 16:25:46 +0200 |
commit | a7ff5b98d8aea3b432913772e5d1bf345fbf87e0 (patch) | |
tree | b53b1c158fcaf1532a705727c43b76a3f95189e3 | |
parent | 4ab9b74bbb2c1f35138de017aac100cc499cbd0d (diff) | |
download | bugzilla-a7ff5b98d8aea3b432913772e5d1bf345fbf87e0.tar.gz bugzilla-a7ff5b98d8aea3b432913772e5d1bf345fbf87e0.tar.xz |
fix minor bug in release process
-rw-r--r-- | .circleci/config.yml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 5ca2de73b..5d273e4ba 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -180,7 +180,10 @@ jobs: [[ -f build_info/only_version_changed.txt ]] && exit 0 mv /opt/bmo/local /app/local mkdir artifacts - - run: perl -I/app -I/app/local/lib/perl5 -c -E 'use Bugzilla; BEGIN { Bugzilla->extensions }' + - name: test code + run: | + [[ -f build_info/only_version_changed.txt ]] && exit 0 + perl -I/app -I/app/local/lib/perl5 -c -E 'use Bugzilla; BEGIN { Bugzilla->extensions }' - run: | [[ -f build_info/only_version_changed.txt ]] && exit 0 perl Makefile.PL |