Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
influxdata-docker
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
influxdata
influxdata-docker
Commits
c78ab0da
Commit
c78ab0da
authored
2 months ago
by
Brandon Pfeifer
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.circleci/config.yml
+2
-2
2 additions, 2 deletions
.circleci/config.yml
circle-test.sh
+5
-0
5 additions, 0 deletions
circle-test.sh
with
7 additions
and
2 deletions
.circleci/config.yml
+
2
−
2
View file @
c78ab0da
...
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
circle-test.sh
+
5
−
0
View file @
c78ab0da
...
...
@@ -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
)"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment