From 7421a329ec3850f18f0e5ecb09afbd83fc5a140f Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Sun, 18 Mar 2018 14:51:19 -0400 Subject: switch build stuff to harmony fork --- .circleci/config.yml | 4 +++- Dockerfile | 3 +-- t/docker.t | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 7a2c62e82..44cd514af 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:20180225.1 + image: bugzilla/harmony-slim:20180318.1 user: app mysql_image: &mysql_image @@ -93,6 +93,8 @@ jobs: TAG="$CIRCLE_TAG" elif [[ "$CIRCLE_BRANCH" == "master" ]]; then TAG=latest + elif [[ "$CIRCLE_BRANCH" == "unstable" ]]; then + TAG=unstable fi if [[ -n "$TAG" ]]; then docker tag bmo "$DOCKERHUB_REPO:$TAG" diff --git a/Dockerfile b/Dockerfile index ac101bb94..dd0350cd7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ -FROM mozillabteam/bmo-slim:20180225.1 - +FROM bugzilla/harmony-slim:20180318.1 ARG CI ARG CIRCLE_SHA1 diff --git a/t/docker.t b/t/docker.t index 3c8cd055b..c1f85088c 100644 --- a/t/docker.t +++ b/t/docker.t @@ -28,7 +28,7 @@ while (my $line = readline $dockerfile_fh) { close $dockerfile_fh; my ($image, $version) = split(/:/ms, $base, 2); -is($image, 'mozillabteam/bmo-slim', "base image is mozillabteam/bmo-slim"); +is($image, 'bugzilla/harmony-slim', "base image is bugzilla/harmony-slim"); like($version, qr/\d{4}\d{2}\d{2}\.\d+/ms, "version is YYYYMMDD.x"); my $regex = qr{ @@ -49,4 +49,4 @@ while (my $line = readline $ci_config_fh) { } close $ci_config_fh; -done_testing; \ No newline at end of file +done_testing; -- cgit v1.2.3-24-g4f1b