Commit b905f868 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

fix: declare all TBC stages

parent 28250019
Loading
Loading
Loading
Loading
+0 −12
Original line number Diff line number Diff line
@@ -409,12 +409,6 @@ variables:
  CF_PROD_ENVIRONMENT_URL: "https://frontend.myproject.acme.com" # internet route
  CF_PROD_DEPLOY_STRATEGY: "auto"

# Pipeline steps
stages:
  - build
  - deploy
  - production

build:
  stage: build
  script:
@@ -464,12 +458,6 @@ variables:
  # CF_xxx_DOMAIN not defined: use CF default domain for review and staging; routes are declared explicitly for production
  CF_PROD_ENVIRONMENT_URL: "https://backend.myproject.acme.com" # internet route

# Pipeline steps
stages:
  - build
  - deploy
  - production

build:
  stage: build
  script:
+8 −0
Original line number Diff line number Diff line
@@ -81,7 +81,15 @@ variables:
  INTEG_REF: '/^develop$/'

stages:
  - build
  - test
  - package-build
  - package-test
  - infra
  - deploy
  - acceptance
  - publish
  - infra-prod
  - production

.cf-scripts: &cf-scripts |