Skip to content

Commit c78ab0d

Browse files
committed
chore: temporarily disable 1.12-data and 1.12-meta until release is restored
1 parent cc4e58f commit c78ab0d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.circleci/config.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ workflows:
4949
- "influxdb/1.10/meta"
5050
- "influxdb/1.11/data"
5151
- "influxdb/1.11/meta"
52-
- "influxdb/1.12/data"
53-
- "influxdb/1.12/meta"
52+
#- "influxdb/1.12/data"
53+
#- "influxdb/1.12/meta"
5454

5555
jobs:
5656
build:

circle-test.sh

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ tags=()
3434
# a leading ./ and multiple slashes into a single slash.
3535
dockerfiles=$(find "$dir" -name Dockerfile -print0 | xargs -0 -I{} dirname {} | grep -v dockerlib | sed 's@^./@@' | sed 's@//*@/@g')
3636
for path in $dockerfiles; do
37+
# TODO(bnpfeife): remove this when v1.12.0 is restored!
38+
if [[ "${path}" =~ influxdb[/]1[.]12 ]] ; then
39+
continue
40+
fi
41+
3742
# Generate a tag by replacing the first slash with a colon and all remaining slashes with a dash.
3843
tag=$(echo $path | sed 's@/@:@' | sed 's@/@-@g')
3944
log_msg "Building docker image $tag (from $path)"

0 commit comments

Comments
 (0)