From b2a57348fb58a770519131d3382063073c2317c9 Mon Sep 17 00:00:00 2001 From: cameroncaci Date: Tue, 3 Oct 2023 15:47:02 -0400 Subject: [PATCH] Removed valiate branches step from circleci --- .circleci/config.yml | 35 +---------------------------------- 1 file changed, 1 insertion(+), 34 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9d92f1a..1c1f1bb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,24 +1,5 @@ version: 2 jobs: - # NOTE: This job shouldn't be necessary. Including it for now though to maintain current practices. - test-branch-name: - machine: true - steps: - - checkout - - run: - name: Check for reserved branch names - command: | - important_branches=( $(ls -d * | grep milmove) latest ) - for branch in "${important_branches[@]}" - do - if test "${CIRCLE_BRANCH}" == ${branch} - then - echo "Don't use meaningful tags for a branch name!" - echo "Don't use a branch named ${branch}." - exit 1 - fi - done - build: machine: true steps: @@ -79,18 +60,4 @@ workflows: version: 2 build-containers: jobs: - - test-branch-name - - build: - requires: - - test-branch-name - filters: - branches: - # NOTE: These branches are ignored because we use them when - # building containers for the application and infrastructure. - ignore: - - latest - - milmove-app - - milmove-atlantis - - milmove-cypress - - milmove-infra-tf132 - - milmove-infra-tf112 \ No newline at end of file + - build \ No newline at end of file