Redgate Change Automation 4

GitLab

GitLab uses a YAML style configuration for defining a CI/CD pipeline, and so using RCA is relatively straight forward. Simply create a `.gitlab-ci.yml` file in the root of your GitLab repository. You can base your own off the example described below.

As described in the documentation, RCA relies on three stages in order to validate, create, and perform a release of a new project version to a target database. These stages are described above as BuildPrepare, and Release:*Test is an optional stage depending on your database technology choice and the availability of unit tests in your project or database.

In our example, we are performing a release to two downstream environments, QA, and Production. Our team can vet any changes made during the release via manual testing of the QA database, before then manually approving a deployment to the Production database, finishing the release.

The sample configuration that defines the pipeline above can be found below. This example uses custom variables to mask database passwords, which you can learn more about in the GitLab documentation.

.gitlab-ci.yml Toggle source code

  1. image: docker:latest
  2.  
  3. # Passwords are supplied via protected variables. See https://gitlab.com/help/ci/variables/README#mask-a-custom-variable
  4. # You will need to supply them as the following extra variables in this way, to ensure they're masked in the logs:
  5. # * CI_DB_PASS
  6. # * QA_DB_PASS
  7. # * PROD_DB_PASS
  8.  
  9. variables:
  10. CI_DB_JDBC_URL: "[YOUR JDBC URL HERE]"
  11. QA_DB_JDBC_URL: "[YOUR JDBC URL HERE]"
  12. PROD_DB_JDBC_URL: "[YOUR JDBC URL HERE]"
  13.  
  14. # You may want to set the RCA docker version if you don't want to constantly pull the latest changes.
  15. RCA_VERSION: latest
  16.  
  17. # We rely on the GitLab CI/CD service docker:dind in order to run the RCA docker container inside the GitLab runner.
  18. services:
  19. - docker:dind
  20.  
  21. # Release is split into two stages, since we want to progress to release:prod only once we've manually verified release:qa.
  22. stages:
  23. - build
  24. - test
  25. - prepare
  26. - release:qa
  27. - release:prod
  28.  
  29. # The build step builds the project against a clean CI database, and create the build artifacts necessary to prepare a release.
  30. build:
  31. stage: build
  32. script: docker run --rm -v $CI_PROJECT_DIR:/project/ redgate/change-automation:$RCA_VERSION build -v -P /project/demo-project/demo-project.conf -t $CI_DB_JDBC_URL -o /project/build-$CI_COMMIT_SHORT_SHA.zip -u system -p $CI_DB_PASS --IAgreeToTheEula --clean
  33. artifacts:
  34. paths:
  35. - ./build-$CI_COMMIT_SHORT_SHA.zip
  36. expire_in: 1 day
  37.  
  38. # This test is left empty, however can be used for running utPLSQL tests for Oracle databases.
  39. # Learn more here https://documentation.red-gate.com/dso/redgate-change-automation/command-line-verbs#CommandLineVerbs-test
  40. test:
  41. stage: test
  42. script: echo This demo does not define a utPLSQL test schema.
  43.  
  44. # The prepare stage prepares a release for both QA and Production.
  45. # We can't reuse a prepared release for both, since they may be at different project versions.
  46. # (e.g., if you've applied several releases to QA, but haven't yet released any of them to Production.)
  47. prepare:qa:
  48. stage: prepare
  49. script: docker run --rm -v $CI_PROJECT_DIR:/project/ redgate/change-automation:$RCA_VERSION release prepare -v -b /project/build-$CI_COMMIT_SHORT_SHA.zip -t $QA_DB_JDBC_URL -o /project/release-qa-$CI_COMMIT_SHORT_SHA.zip -u system -p $QA_DB_PASS --IAgreeToTheEula
  50. dependencies:
  51. - build
  52. artifacts:
  53. paths:
  54. - ./release-qa-$CI_COMMIT_SHORT_SHA.zip
  55. expire_in: 1 week
  56.  
  57. prepare:prod:
  58. stage: prepare
  59. script: docker run --rm -v $CI_PROJECT_DIR:/project/ redgate/change-automation:$RCA_VERSION release prepare -v -b /project/build-$CI_COMMIT_SHORT_SHA.zip -t $PROD_DB_JDBC_URL -o /project/release-prod-$CI_COMMIT_SHORT_SHA.zip -u system -p $PROD_DB_PASS --IAgreeToTheEula
  60. dependencies:
  61. - build
  62. artifacts:
  63. paths:
  64. - ./release-prod-$CI_COMMIT_SHORT_SHA.zip
  65. expire_in: 1 week
  66.  
  67. # The release stage consumes the release artifacts generated in the prepare stage,
  68. # and performs the actual release against the downstream databases.
  69. release:qa:
  70. stage: release:qa
  71. script: docker run --rm -v $CI_PROJECT_DIR:/project/ redgate/change-automation:$RCA_VERSION release perform -v -r /project/release-qa-$CI_COMMIT_SHORT_SHA.zip -t $QA_DB_JDBC_URL -u system -p $QA_DB_PASS --IAgreeToTheEula
  72. dependencies:
  73. - prepare:qa
  74.  
  75. # The release to production has an additional manual step so we can block the pipeline
  76. # until the user is ready to deploy.
  77. release:prod:
  78. stage: release:prod
  79. script: docker run --rm -v $CI_PROJECT_DIR:/project/ redgate/change-automation:$RCA_VERSION release perform -v -r /project/release-prod-$CI_COMMIT_SHORT_SHA.zip -t $PROD_DB_JDBC_URL -u system -p $PROD_DB_PASS --IAgreeToTheEula
  80. when: manual
  81. dependencies:
  82. - prepare:prod
  83.  




Didn't find what you were looking for?