From 33e6ba5c861943537546b14970c2ac351d719333 Mon Sep 17 00:00:00 2001 From: Benoit Tigeot Date: Wed, 15 Jun 2022 15:27:45 +0200 Subject: [PATCH] Brings back circleci from the previous honestica/gotty --- .circleci/config.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..7663c43 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,22 @@ +version: 2 +jobs: + build: + docker: + - image: circleci/python:3 + steps: + - checkout + - setup_remote_docker: + docker_layer_caching: true + - run: + name: Build Gotty Image + command: | + DOCKER_TAG=$CIRCLE_BRANCH-$CIRCLE_BUILD_NUM + docker login -u $DOCKERHUB_USERNAME -p $DOCKERHUB_PASSWORD + docker build -t honestica/gotty:$DOCKER_TAG . + docker push honestica/gotty:$DOCKER_TAG +workflows: + version: 2 + build: + jobs: + - build: + context: org-global