File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,8 @@ workflows:
49
49
- " influxdb/1.10/meta"
50
50
- " influxdb/1.11/data"
51
51
- " influxdb/1.11/meta"
52
- - " influxdb/1.12/data"
53
- - " influxdb/1.12/meta"
52
+ # - "influxdb/1.12/data"
53
+ # - "influxdb/1.12/meta"
54
54
55
55
jobs :
56
56
build :
Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ tags=()
34
34
# a leading ./ and multiple slashes into a single slash.
35
35
dockerfiles=$( find " $dir " -name Dockerfile -print0 | xargs -0 -I{} dirname {} | grep -v dockerlib | sed ' s@^./@@' | sed ' s@//*@/@g' )
36
36
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
+
37
42
# Generate a tag by replacing the first slash with a colon and all remaining slashes with a dash.
38
43
tag=$( echo $path | sed ' s@/@:@' | sed ' s@/@-@g' )
39
44
log_msg " Building docker image $tag (from $path )"
You can’t perform that action at this time.
0 commit comments