function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Yaroslav ProYaroslav Pro 

Integration bitbucket pipelines with force dev tool

Hello everyone
Coud somebody help me
I have bitbucket-pipelines.yml


image: atlassian/default-image:2

pipelines:
  default:
     - step:
          script:
          - npm install --global force-dev-tool
          - force-dev-tool remote add mydev user pass --default
          - force-dev-tool login mydev 
     - step:
          name: test
          deployment: test
          script:
           - npm install --global force-dev-tool
           - force-dev-tool deploy --checkOnly sandbox          
     - step:
          name: deploy
          deployment: production
          script:
          - npm install --global force-dev-tool
          - force-dev-tool deploy feature-branch

and mistake ->
+ force-dev-tool deploy --checkOnly sandboxError: Could not determine remote `sandbox`

maybe somebody made the same mistake?
let me know
Thanks
Best Answer chosen by Yaroslav Pro
Watson Marconato 7Watson Marconato 7
Hi, some exemple with git.

The base structure is

force-dev-tool remote add NAME_REMOTE "login_XXX" "passwordtoken" --default
git diff HEAD~1 HEAD --no-renames | force-dev-tool changeset create feature-merge -f
force-dev-tool deploy -c -t -d config/deployments/feature-merge NAME_REMOTE


In the pipeline you can create manual steps

1 - Does nothing
2 - Deploy to Staging ( Or any Sandbox )
3 - After deploy Staging, the button has enable to click and deploy to another org.

image: node:7.5.0
pipelines:
branches:
develop:
- step:
name: Deploy to UAT
deployment: test
script:
- echo Deploy to UAT
- git diff HEAD~1 HEAD --no-renames --name-only
- step:
caches:
- node-global
name: Deploy to staging
deployment: staging
trigger: manual
script:
- npm install --global force-dev-tool
- force-dev-tool remote add staging $STAGING_USERNAME $STAGING_PASSWORD
- echo Deploy to staging
- git diff HEAD~1 HEAD --no-renames | force-dev-tool changeset create feature-merge -f
- force-dev-tool deploy -d config/deployments/feature-merge staging
- step:
caches:
- node-global
name: Deploy to PRODUCTION
deployment: production
trigger: manual
script:
- npm install --global force-dev-tool
- force-dev-tool remote add production $PRODUCTION_USERNAME $PRODUCTION_PASSWORD https://login.salesforce.com
- echo Deploy to production
- git diff HEAD~1 HEAD --no-renames | force-dev-tool changeset create feature-merge -f
- force-dev-tool deploy -c -t -d config/deployments/feature-merge production
definitions:
caches:
node-global: /usr/local/lib/node_modules

All Answers

Watson Marconato 7Watson Marconato 7
Hi, some exemple with git.

The base structure is

force-dev-tool remote add NAME_REMOTE "login_XXX" "passwordtoken" --default
git diff HEAD~1 HEAD --no-renames | force-dev-tool changeset create feature-merge -f
force-dev-tool deploy -c -t -d config/deployments/feature-merge NAME_REMOTE


In the pipeline you can create manual steps

1 - Does nothing
2 - Deploy to Staging ( Or any Sandbox )
3 - After deploy Staging, the button has enable to click and deploy to another org.

image: node:7.5.0
pipelines:
branches:
develop:
- step:
name: Deploy to UAT
deployment: test
script:
- echo Deploy to UAT
- git diff HEAD~1 HEAD --no-renames --name-only
- step:
caches:
- node-global
name: Deploy to staging
deployment: staging
trigger: manual
script:
- npm install --global force-dev-tool
- force-dev-tool remote add staging $STAGING_USERNAME $STAGING_PASSWORD
- echo Deploy to staging
- git diff HEAD~1 HEAD --no-renames | force-dev-tool changeset create feature-merge -f
- force-dev-tool deploy -d config/deployments/feature-merge staging
- step:
caches:
- node-global
name: Deploy to PRODUCTION
deployment: production
trigger: manual
script:
- npm install --global force-dev-tool
- force-dev-tool remote add production $PRODUCTION_USERNAME $PRODUCTION_PASSWORD https://login.salesforce.com
- echo Deploy to production
- git diff HEAD~1 HEAD --no-renames | force-dev-tool changeset create feature-merge -f
- force-dev-tool deploy -c -t -d config/deployments/feature-merge production
definitions:
caches:
node-global: /usr/local/lib/node_modules
This was selected as the best answer
Yaroslav ProYaroslav Pro
Thanks for your reply, I solved this issue early
SFDC GSFDC G
Hi,
Can I know which runners should we choose in gitlab?
I am trying to create gitlab pipeline with force-dev-tool.
Thank you!