description |
---|
Orchestrate your builds and deployment with minimal code/config |
sfpowerscripts:orchestrator is a group of commands (or topic in the CLI parlance) that enables one to work with multiple packages in a mono-repo through the development lifecycle or stages. The current version of the orchestrator features these commands
{% embed url="https://youtu.be/-3_DHysV7os" %}
- prepare (sfp orchestrator:prepare): Prepare command helps you to build a pool of prebuilt scratch orgs which include managed packages as well as packages in your repository. This process allows you to considerably cut down time in re-creating a scratch org during a pull request validation process when a scratch org is used as Just-in-time CI environment. In simple terms, it reduces time taken in building a scratch org to validate your changes in an incoming pull or merge request. This command also have an option to pull artifacts from your artifact repository, so that say you can pre-build your validation orgs, say from validated set of packages.
- validate (sfp orchestrator:validate): This command goes in pair with the prepare command. It fetches a scratch org from the pool already created (by the prepare command) and deploys/unit tests the changed packages. Different validation mode options exist depending on your requirements for individual, fast feedback, thorough, fast feedback release config, and thorough release config, and leveraging release configuration files.
- build (sfp orchestrator:build/quickbuild) : This command builds all the packages in parallel wherever possible by understanding your manifest and dependency tree. Goodbye to the sequential builds, where you fail in the n-1th package and have to wait for the next hour. This command brings massive savings to your build (package creation) time. Also use the quickbuild variant, which builds unlocked package without dependency check in intermittent stages for faster feedback.
- deploy (sfp orchestrator:deploy): So you have built all the packages, now this command takes care of deploying it, by reading the order of installation as you have specified in your sfdx-project.json. Installs it one by one, deciding to trigger tests etc. and provide you with the logs if anything fails
- publish (sfp orchestrator:publish) : Publish lets you publish the built artifacts into an artifact registry during publish stages of your pipeline.
- release (sfp orchestrator:release) : Release commands orchestrate fetching of artifacts from an artifact repository, deploying to an environment including any external dependencies and generating changelog all driven by a release definition file.
Orchestrator utilizes additional properties mentioned along with each package in your sfdx-project.json which can be used to control what the orchestrator should work with each package.
{% embed url="https://youtu.be/c_E8fBIlFPo" %}
Modifier | Type | Description | Stages Applied |
---|---|---|---|
aliasfy | Boolean | Deploy a subfolder in a source package that matches the alias of the org | deploy |
alwaysDeploy | boolean | Deploys package, even if it's installed already in the org. The artifact has to be present in the artifact directory for this particular option to work | deploy, release |
assignPermSetsPreDeployment | array | Apply permsets before deploying a package Click here for sample. | prepare, validate, deploy, |
assignPermSetsPostDeployment | array | Apply permsets after deploying a package Click here for sample. | prepare, validate, deploy, |
buildCollection | array | Utilize this to build packages in unison, it will build all packages in the collection, even if only one of them changes | build |
checkpointForPrepare | boolean | Prevent a scratch org from being added to pool, if this package is not able to be installed during prepare | prepare |
destructiveChangePath | string | Apply destructive changes during deployment | deploy, release |
enableFT | boolean | Enable Feed Tracking deployment | deploy, release |
enableFHT | boolean | Enable Field History Tracking deployment | deploy, release |
isOptimizedDeployment | true | Detects test classes in a source package automatically and utilizes it to deploy the provided package | deploy, release |
ignoreOnStage | array | Ignore this package on a particular stage | prepare, build, validate, deploy, |
postDeploymentScript | string | Run an executable script after deploying a package. User need to provide a path to the script file Read more here | prepare, validate, deploy, |
preDeploymentScript | string | Run an executable script before deploying a package. User need to provide a path to the script file Read more here | prepare, validate, deploy, |
reconcileProfiles | boolean | Reconcile Profiles during a deployment of source packages | prepare, validate, deploy, |
type | string | Denotes the type of the package, accepted values are "source","data" | prepare, validate, deploy, |
skipCoverageValidation | boolean | Skip the coverage validation of a package (unlocked/source) | validate |
skipDeployOnOrgs | array | Skip deployment on a particular org or org(s). Take an array of aliases as the input | prepare, validate, deploy, |
skipTesting | boolean | Skip unit testing during validate or deployment (source packages) | deploy, validate |
testSynchronous | boolean | Validate apex tests of a package by triggering test synchrounously | validate |
Sometimes, due to certain platform errors, some metadata components need to be ignored during quickbuild or validate or any other stages. sfpowerscripts offer you an easy mechanism which allows to switch .forceignore files depending on the stage.
Add this entry to your sfdx-project.json and as in the example below, mention the path to different files that need to be used for different stages
"plugins": {
"sfpowerscripts": {
"ignoreFiles": {
"prepare": ".forceignore",
"validate": ".forceignore",
"quickbuild": "forceignores/.buildignore",
"build": "forceignores/.validationignore"
}
}
Utilize the ignoreOnStage
descriptor to mark which packages should be skipped by the lifecycle commands.
In some situations, you might need to execute a pre/post deployment script to do manipulate the data before or after being deployed to the org. sfpowerscripts allow you to provide a path to a shell script (Mac/Unix) / batch script (on Windows).
The scripts are called with the following parameters. In your script you can refer to the parameters using positional parameters.
Please note scripts are copied into the artifacts and are not executed from version control. sfpowerscripts only copies the script mentioned by this parameter and do not copy any additional files or dependencies. Please ensure pre/post deployment scripts are independent or should be able to download its dependencies
Position | Value |
---|---|
1 | Name of the Package |
2 | Username of the target org where the package is being deployed |
3 | Alias of the target org where the package is being deployed |
4 | Path to the working directory that has the contents of the package |
5 | Path to the package directory. One would need to combine parameter 4 and 5 to find the absolute path to the contents of the package |
# Sample pre/post script
# $1 package name
# $2 org
# $3 alias
# $4 working directory
# $5 package directory
sfdx force:apex:execute -f scripts/datascript.apex -u $2
{
"path": "src/health-cloud",
"package": "health-cloud",
"versionName": "health-cloud-1.0",
"versionNumber": "1.0.0.0",
"assignPermSetsPreDeployment": [
"HealthCloudFoundation",
"HealthCloudSocialDeterminants",
"HealthCloudAppointmentManagement",
"HealthCloudVideoCalls",
"HealthCloudUtilizationManagement",
"HealthCloudMemberServices",
"HealthCloudAdmin",
"HealthCloudApi",
"HealthCloudLimited",
"HealthCloudPermissionSetLicense",
"HealthCloudStandard",
"HealthcareAssociatedInfectionDiseaseGroupAccess"
]
},