Skip to content

Commit

Permalink
[#41] added tags to indicate on-prem for CI/CD
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondng76 committed Jan 17, 2022
1 parent 64d053d commit 475098c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ run_slow_unit_tests:

generate_demo_api_yaml:
stage: pre
tags:
- on-prem
image: alpine:latest
script:
- apk add -U jsonnet
Expand All @@ -55,6 +57,8 @@ generate_demo_api_yaml:

generate_dev_demo_api_yaml:
stage: pre
tags:
- on-prem
image: alpine:latest
script:
- apk add -U jsonnet
Expand All @@ -66,6 +70,8 @@ generate_dev_demo_api_yaml:

build_and_push_demo_api:
stage: build
tags:
- on-prem
allow_failure: true
needs:
- generate_demo_api_yaml
Expand All @@ -76,6 +82,8 @@ build_and_push_demo_api:

build_and_push_dev_demo_api:
stage: build
tags:
- on-prem
allow_failure: true
needs:
- generate_dev_demo_api_yaml
Expand Down

0 comments on commit 475098c

Please sign in to comment.