Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
geosphere-deploy
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cspp_geo
geosphere
geosphere-deploy
Commits
b7ad403c
Verified
Commit
b7ad403c
authored
4 years ago
by
David Hoese
Browse files
Options
Downloads
Patches
Plain Diff
Fix regex usage in ci rules
parent
10d89b64
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ci_geosphere-test/gitlab-ci.yaml
+3
-3
3 additions, 3 deletions
ci_geosphere-test/gitlab-ci.yaml
ci_geosphere/gitlab-ci.yaml
+13
-13
13 additions, 13 deletions
ci_geosphere/gitlab-ci.yaml
with
16 additions
and
16 deletions
ci_geosphere-test/gitlab-ci.yaml
+
3
−
3
View file @
b7ad403c
...
...
@@ -43,7 +43,7 @@ gstest deploy rabbit:
# this job doesn't actually need any artifacts from previous jobs
dependencies
:
[]
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TEST_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TEST_TAG_REGEX
/
when
:
never
# no need to build if another project triggered us
-
if
:
$CI_PIPELINE_SOURCE == "pipeline"
...
...
@@ -122,7 +122,7 @@ gstest deploy mapcache:
VALUES_DIR
:
"
ci_geosphere-test"
extends
:
.deploy_mapcache
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TEST_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TEST_TAG_REGEX
/
when
:
never
-
when
:
on_success
...
...
@@ -147,7 +147,7 @@ gstest deploy client:
dependencies
:
-
get_chart_client_test
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TEST_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TEST_TAG_REGEX
/
when
:
never
-
when
:
on_success
This diff is collapsed.
Click to expand it.
ci_geosphere/gitlab-ci.yaml
+
13
−
13
View file @
b7ad403c
...
...
@@ -19,7 +19,7 @@ gs create geotiff storage:
# this job doesn't actually need any artifacts from previous jobs
dependencies
:
[]
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
-
if
:
$CREATE_STORAGE
...
...
@@ -35,7 +35,7 @@ gs create shapefile storage:
# this job doesn't actually need any artifacts from previous jobs
dependencies
:
[]
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
# this will always be true for tags
-
changes
:
...
...
@@ -57,7 +57,7 @@ gs deploy rabbit:
# this job doesn't actually need any artifacts from previous jobs
dependencies
:
[]
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
# no need to build if another project triggered us
-
if
:
$CI_PIPELINE_SOURCE == "pipeline"
...
...
@@ -87,7 +87,7 @@ gs deploy g16 grb:
dependencies
:
-
get_chart_grb
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
-
when
:
on_success
...
...
@@ -97,7 +97,7 @@ gs deploy geo2grid g16 radf:
VALUES_DIR
:
"
ci_geosphere"
DEPLOY_SUFFIX
:
"
-g16-radf"
rules
:
-
if
:
'
$CI_COMMIT_TAG
!~
/$GEOSPHERE_TAG_REGEX/
'
-
if
:
$CI_COMMIT_TAG !~ /$GEOSPHERE_TAG_REGEX/
when
:
never
-
when
:
on_success
...
...
@@ -107,7 +107,7 @@ gs deploy geo2grid g16 radc:
VALUES_DIR
:
"
ci_geosphere"
DEPLOY_SUFFIX
:
"
-g16-radc"
rules
:
-
if
:
'
$CI_COMMIT_TAG
!~
$GEOSPHERE_TAG_REGEX
'
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
-
when
:
on_success
...
...
@@ -137,7 +137,7 @@ gs deploy tile gen g16 radf:
VALUES_DIR
:
"
ci_geosphere"
DEPLOY_SUFFIX
:
"
-g16-radf"
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
-
when
:
on_success
...
...
@@ -147,7 +147,7 @@ gs deploy tile gen g16 radc:
VALUES_DIR
:
"
ci_geosphere"
DEPLOY_SUFFIX
:
"
-g16-radc"
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
-
when
:
on_success
...
...
@@ -157,7 +157,7 @@ gs deploy_tile_gen_g16_radm1:
VALUES_DIR
:
"
ci_geosphere"
DEPLOY_SUFFIX
:
"
-g16-radm1"
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
-
when
:
on_success
...
...
@@ -167,7 +167,7 @@ gs deploy_tile_gen_g16_radm2:
VALUES_DIR
:
"
ci_geosphere"
DEPLOY_SUFFIX
:
"
-g16-radm2"
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
-
when
:
on_success
...
...
@@ -179,7 +179,7 @@ gs deploy mapserver:
VALUES_DIR
:
"
ci_geosphere"
extends
:
.deploy_mapserver
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
-
when
:
on_success
...
...
@@ -191,7 +191,7 @@ gs deploy mapcache:
VALUES_DIR
:
"
ci_geosphere"
extends
:
.deploy_mapcache
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
-
when
:
on_success
...
...
@@ -216,6 +216,6 @@ gs deploy client:
dependencies
:
-
get_chart_client
rules
:
-
if
:
$CI_COMMIT_TAG !~ $GEOSPHERE_TAG_REGEX
-
if
:
$CI_COMMIT_TAG !~
/
$GEOSPHERE_TAG_REGEX
/
when
:
never
-
when
:
on_success
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