For a fully guided walkthrough of setting up and configuring continuous integration using scratch orgs and Salesforce CLI, see the Continuous Integration Using Salesforce DX Trailhead module.
This repository shows one way you can successfully use scratch orgs to create new package versions with GitLab CI/CD. We make a few assumptions in this README. Continue only if you have completed these critical configuration prerequisites.
- You know how to set up your GitLab repository with GitLab CI/CD. (Need help? See the GitLab Getting Started guide.)
- You have properly set up the JWT-based authorization flow (headless). We recommended using these steps for generating your self-signed SSL certificate.
-
Make sure that you have Salesforce CLI installed. Run
sfdx force --helpand confirm you see the command output. If you don't have it installed, you can download and install it from here. -
Mirror this repo in to your GitLab account.
-
Clone your mirrored repo locally:
git clone https://gitlab.com/<gitlab_username>/sfdx-gitlab-package.git -
Set up a JWT-based auth flow for the target orgs that you want to deploy to. This step creates a
server.keyfile that is used in subsequent steps. (https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_auth_jwt_flow.htm) -
Confirm that you can perform a JWT-based auth:
sfdx force:auth:jwt:grant --clientid <your_consumer_key> --jwtkeyfile server.key --username <your_username> --setdefaultdevhubusernameNote: For more info on setting up JWT-based auth, see Authorize an Org Using the JWT-Based Flow in the Salesforce DX Developer Guide.
-
From your JWT-based connected app on Salesforce, retrieve the generated
Consumer Key. -
Set up GitLab CI/CD environment variables for your Salesforce
Consumer KeyandUsername. Note that this username is the username that you use to access your Salesforce org.Create an environment variable named
HUB_CONSUMER_KEYand set it as protected.Create an environment variable named
HUB_USER_NAMEand set it as protected.Note: Setting the variables as protected requires that you set the branch to protected as well.
-
Encrypt and store your
server.keyusing the instructions below.
IMPORTANT! - For security reasons, don't store theserver.keywithin the project.-
First, generate a
keyand an initializtion vector (iv) to encrypt yourserver.keyfile locally (CircleCI will use the them to decrypt yourserver.keyin the build environment).$ openssl enc -aes-256-cbc -k <passphrase here> -P -md sha1 -nosalt
-
Make note of the
keyandivvalues output to the screen. You'll use them to encrypt yourserver.keyin the next step. -
Encrypt the
server.keyusing the newly generatedkeyandivvalues. Use thekeyandivvalues only once, and don't use them to encrypt more than theserver.key. While you can re-use this pair to encrypt other things, it's considered a security violation to do so. Every time you run the command above, a newkeyandivvalue is generated. You can't regenerate the same pair, so if you lose these values you'll need to generate new ones and encrypt again.$ openssl enc -nosalt -aes-256-cbc -in server.key -out assets/server.key.enc -base64 -K <key> -iv <iv>
This command replaces the existing
server.key.encwith your encrypted version.
-
-
Set up GitLab CI/CD environment variable The
keyandivused to encrypt yourserver.keyfile.Create an environment variable named
DECRYPTION_KEYand set it as protected.Create an environment variable named
DECRYPTION_IVand set it as protected.Note: Setting the variables as protected requires that you set the branch to protected as well.
-
Copy all the contents of
package-sfdx-project.jsonintosfdx-project.jsonand save. -
Create the sample package.
sfdx force:package:create --path force-app/main/default/ --name "GitLab CI" --description "GitLab CI Package Example" --packagetype Unlocked -
Create the first package version.
sfdx force:package:version:create --package "GitLab CI" --installationkeybypass --wait 10 --json --targetdevhubusername HubOrg -
In the
.gitlab-ci.ymlfile, update the value in thePACKAGENAMEvariable to be Package ID in yoursfdx-project.jsonfile. This ID starts with0Ho. -
Commit the updated
sfdx-project.jsonand.gitlab-ci.ymlfiles.
Now you're ready to go! When you commit and push a change, your change kicks off a GitLab CI build.
Enjoy!
If you find any issues or opportunities for improving this repository, fix them! Feel free to contribute to this project by forking this repository and making changes to the content. Once you've made your changes, share them back with the community by sending a pull request. Please see How to send pull requests for more information about contributing to GitHub projects.
If you find any issues with this demo that you can't fix, feel free to report them in the issues section of this repository.
