Bitbucket

Here we are going to cover a creation of a simple Flyway Pipeline for independent of a database system.

In this example we are using the native Bitbucket pipeline runners.

Hence flyway will install on the runner with every run on the pipeline.


Yaml file Toggle source code

  1. pipelines:
  2. default:
  3. - step:
  4. name: Install Flyway
  5. caches:
  6. - flyway
  7. script:
  8. - mkdir -p ~/flyway
  9. - wget -qO- https://download.red-gate.com/maven/release/com/redgate/flyway/flyway-commandline/10.14.0/flyway-commandline-10.14.0-linux-x64.tar.gz | tar -xz -C ~/flyway
  10. - ln -s ~/flyway/flyway-10.14.0/flyway /usr/local/bin/flyway
  11.  
  12. - step:
  13. name: Test Stage
  14. caches:
  15. - flyway
  16. script:
  17. - ~/flyway/flyway-10.14.0/flyway migrate -user=$DATABASE_USER -password=$DATABASE_PASSWORD -url=$TEST_DB -locations="filesystem:./migrations" -licenseKey=$LICENSE_KEY
  18.  
  19. - step:
  20. name: Staging Stage
  21. caches:
  22. - flyway
  23. script:
  24. - ~/flyway/flyway-10.14.0/flyway migrate -user=$DATABASE_USER -password=$DATABASE_PASSWORD -url=$STAGING_DB -locations="filesystem:./migrations" -licenseKey=$LICENSE_KEY
  25.  
  26. definitions:
  27. caches:
  28. flyway: ~/flyway
  29.  
  30.  


Additionaly you need to add the pipeline Variables in Bitbucket for the pipeline to run: 


  1. DATABASE_USER - Username that has access to the dtabase
  2.  DATABASE_PASSWORD - Password for the mentioned user (Do not forget to mark it as secured)
  3.  TEST_DB - jdbc string to connect to the test database.
  4.  STAGING_DB - jdbc string to connect to the staging database.
  5. LICENSE_KEY - Flyway command line license key 

     


Here you can see a postres example Yaml file for Attlasian Bitbucket

Sample pipeline at https://github.com/red-gate/Flyway-Sample-Pipelines/tree/main/Bitbucket.



Didn't find what you were looking for?