Commit f2c70d1d authored by John Red Medrano's avatar John Red Medrano

Update .gitlab-ci.yml

parent 130d4236
Pipeline #277 failed with stages
in 50 seconds
......@@ -7,9 +7,12 @@ stages:
intial_dev:
stage: initial_repo
image: ubuntu
except:
variables:
- $CI_COMMIT_MESSAGE =~ /initial/
rules:
- if: '$CI_COMMIT_MESSAGE =~ /initial/'
when: always
# except:
# variables:
# - $CI_COMMIT_MESSAGE =~ /initial/
before_script:
- echo "Building dev environment for red test ci cd"
- echo "$root_path"
......@@ -43,11 +46,14 @@ intial_dev:
buid_dev:
stage: build
image: ubuntu
only:
refs:
- red-develop
variables:
- $CI_COMMIT_MESSAGE !~ /initial/
rules:
- if: '$CI_COMMIT_MESSAGE !~ /initial/'
when: always
# only:
# refs:
# - red-develop
# variables:
# - $CI_COMMIT_MESSAGE !~ /initial/
before_script:
- echo "rebuilding dev environment for red test ci cd"
- 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y)'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment