From c78ab0da7487af03d6618a242c69bbe916303f98 Mon Sep 17 00:00:00 2001
From: Brandon Pfeifer <bpfeifer@influxdata.com>
Date: Mon, 5 May 2025 10:28:40 -0500
Subject: [PATCH] chore: temporarily disable 1.12-data and 1.12-meta until
 release is restored

---
 .circleci/config.yml | 4 ++--
 circle-test.sh       | 5 +++++
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index f52f8da..51bb3fc 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -49,8 +49,8 @@ workflows:
                 - "influxdb/1.10/meta"
                 - "influxdb/1.11/data"
                 - "influxdb/1.11/meta"
-                - "influxdb/1.12/data"
-                - "influxdb/1.12/meta"
+                #- "influxdb/1.12/data"
+                #- "influxdb/1.12/meta"
 
 jobs:
   build:
diff --git a/circle-test.sh b/circle-test.sh
index 878a4d2..218f935 100755
--- a/circle-test.sh
+++ b/circle-test.sh
@@ -34,6 +34,11 @@ tags=()
 # a leading ./ and multiple slashes into a single slash.
 dockerfiles=$(find "$dir" -name Dockerfile -print0 | xargs -0 -I{} dirname {} | grep -v dockerlib | sed 's@^./@@' | sed 's@//*@/@g')
 for path in $dockerfiles; do
+  # TODO(bnpfeife): remove this when v1.12.0 is restored!
+  if [[ "${path}" =~ influxdb[/]1[.]12 ]] ; then
+    continue
+  fi
+
   # Generate a tag by replacing the first slash with a colon and all remaining slashes with a dash.
   tag=$(echo $path | sed 's@/@:@' | sed 's@/@-@g')
   log_msg "Building docker image $tag (from $path)"
-- 
GitLab