scolladon / sfdx-BitbucketPipeline

Sample Bitbucket Pipeline for SFDX

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sfdx-BitbucketPipeline

Sample Bitbucket Pipeline for SFDX, adapted from https://github.com/forcedotcom/sfdx-bitbucket-org and https://github.com/forcedotcom/sfdx-bitbucket-package, so that it can be used for CI tasks when using the Git FLow branching model on a Salesforce implementation project with DX sources:

  • By default on each commit:
    • Control the code quality with Apex PMD
    • Deploy and run tests in a new scratch org
    • Check-only deploy and run tests in the CI sandbox
  • When merging into the develop branch, deploy to the INTEG sandbox
  • When merging into a release/ branch, deploy to the UAT sandbox
  • When merging into the master branch, deploy to PROD

The steps bellow describe how to set up a pipeline for this developement and release management process:

overview

Step 0 - Prerequisites:

  • On your local machine, make sure you have the Salesforce CLI installed. Check by running sfdx force --help and confirm you see the command output. If you don't have it installed you can download and install it from https://developer.salesforce.com/tools/sfdxcli

  • We will use a script to generate the certificates to use with JWT-based auth, so make sure you have the ability to execute shell script.

  • Give the right to execute the bootstrap-jwt-auth script

$ chmod u+x bootstrap-jwt-auth-prerequisites.sh

Step 1 - Create connected app to authenticate with JWT-Based Flow:

Step 2 - Create the certificate and the encrypted private key:

  • To generate the certificate and the encrypted private key, execute the script. Make sure to use a strong password (i.e. long, unique, and randomly-generated).
$ ./bootstrap-jwt-auth-prerequisites.sh <password> <env>

Exemple: ./bootstrap-jwt-auth-prerequisites.sh put_here_your_strong_password PROD

  • Set your PROD password in a protected Bitbucket Pipelines environment variable named PROD_KEY_PASSWORD using the Bitbucket Pipelines UI (under Settings > Repository variables).

  • Upload the certificate from ./certificate/<env>.crt. Follow step 7 and 8 from the documentation (https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_auth_connected_app.htm)

  • Clear the terminal history: history -c && clear

  • Set your Consumer Key in a Bitbucket Pipelines environment variable named PROD_CONSUMERKEY using the Bitbucket Pipelines UI (under Settings > Repository variables). Set your Username in a Bitbucket Pipelines environment variable named PROD_USERNAME using the Bitbucket Pipelines UI (use an API only user).

  • Commit the PROD_server.key.enc file from the build folder and store it into a shared document library of your repo. The certificate folder (containing the .crt file you uploaded in Salesforce) can be deleted.

$ git add build/PROD_server.key.enc
$ git commit -m 'add PROD env encrypted server key'
$ git push
  • (Optional) Confirm you can perform a JWT-based auth: sfdx force:auth:jwt:grant --clientid <your_consumer_key> --jwtkeyfile <your_server_key> --username <your_username> --setdefaultdevhubusername

Step 3 - Repeat in each org to connect to from step 1:

  • Repeat from step 1 for each environment you need to connect to!
    • PROD
    • UAT
    • INTEG
    • CI

Step 4 - Configure Apex PMD:

Step 5 - Create and commit the yml file:

About

Sample Bitbucket Pipeline for SFDX

License:MIT License


Languages

Language:Shell 100.0%