Skip to content
Snippets Groups Projects
Commit c78ab0da authored by Brandon Pfeifer's avatar Brandon Pfeifer
Browse files

chore: temporarily disable 1.12-data and 1.12-meta until release is restored

parent cc4e58f7
No related branches found
No related tags found
No related merge requests found
......@@ -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:
......
......@@ -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)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment