Skip to content
Snippets Groups Projects
Unverified Commit 6741aad6 authored by Brandon Pfeifer's avatar Brandon Pfeifer Committed by GitHub
Browse files

Merge pull request #797 from influxdata/BNP_disable-data-meta-workflows

Disable 1.12-data and 1.12-meta until release is restored.
parents cc4e58f7 c78ab0da
No related branches found
No related tags found
No related merge requests found
...@@ -49,8 +49,8 @@ workflows: ...@@ -49,8 +49,8 @@ workflows:
- "influxdb/1.10/meta" - "influxdb/1.10/meta"
- "influxdb/1.11/data" - "influxdb/1.11/data"
- "influxdb/1.11/meta" - "influxdb/1.11/meta"
- "influxdb/1.12/data" #- "influxdb/1.12/data"
- "influxdb/1.12/meta" #- "influxdb/1.12/meta"
jobs: jobs:
build: build:
......
...@@ -34,6 +34,11 @@ tags=() ...@@ -34,6 +34,11 @@ tags=()
# a leading ./ and multiple slashes into a single slash. # 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') dockerfiles=$(find "$dir" -name Dockerfile -print0 | xargs -0 -I{} dirname {} | grep -v dockerlib | sed 's@^./@@' | sed 's@//*@/@g')
for path in $dockerfiles; do 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. # 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') tag=$(echo $path | sed 's@/@:@' | sed 's@/@-@g')
log_msg "Building docker image $tag (from $path)" 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