Skip to content

Commit

Permalink
docs(core): remove nx-cloud agent count (#29265)
Browse files Browse the repository at this point in the history
Remove references to `NX_CLOUD_DISTRIBUTED_EXECUTION_AGENT_COUNT`
  • Loading branch information
isaacplmann authored Dec 9, 2024
1 parent fdc09fb commit 04151ca
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 7 deletions.
1 change: 0 additions & 1 deletion docs/nx-cloud/enterprise/dte/azure-dte.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ pr:

variables:
CI: 'true'
NX_CLOUD_DISTRIBUTED_EXECUTION_AGENT_COUNT: 3 # expected number of agents
${{ if eq(variables['Build.Reason'], 'PullRequest') }}:
NX_BRANCH: $(System.PullRequest.PullRequestNumber)
TARGET_BRANCH: $[replace(variables['System.PullRequest.TargetBranch'],'refs/heads/','origin/')]
Expand Down
1 change: 0 additions & 1 deletion docs/nx-cloud/enterprise/dte/bitbucket-dte.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ pipelines:
name: CI
script:
- export NX_BRANCH=$BITBUCKET_PR_ID
- export NX_CLOUD_DISTRIBUTED_EXECUTION_AGENT_COUNT=3

- npm ci
- npx nx-cloud start-ci-run --distribute-on="manual" --stop-agents-after="e2e-ci" --agent-count=3
Expand Down
2 changes: 0 additions & 2 deletions docs/nx-cloud/enterprise/dte/circle-ci-dte.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
main:
docker:
- image: cimg/node:lts-browsers
environment:
NX_CLOUD_DISTRIBUTED_EXECUTION_AGENT_COUNT: 3 # expected number of agents
steps:
- checkout
- run: npm ci
Expand Down
1 change: 0 additions & 1 deletion docs/nx-cloud/enterprise/dte/github-dte.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ permissions:

env:
NX_CLOUD_DISTRIBUTED_EXECUTION: true # this enables DTE
NX_CLOUD_DISTRIBUTED_EXECUTION_AGENT_COUNT: 3 # expected number of agents
NX_BRANCH: ${{ github.event.number || github.ref_name }}
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} # this is needed if our pipeline publishes to npm
Expand Down
1 change: 0 additions & 1 deletion docs/nx-cloud/enterprise/dte/gitlab-dte.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ image: node:18
- yarn install --cache-folder .yarn-cache --prefer-offline --frozen-lockfile
- NX_HEAD=$CI_COMMIT_SHA
- NX_BASE=${CI_MERGE_REQUEST_DIFF_BASE_SHA:-$CI_COMMIT_BEFORE_SHA}
- NX_CLOUD_DISTRIBUTED_EXECUTION_AGENT_COUNT=3 # expected number of agents

artifacts:
expire_in: 5 days
Expand Down
1 change: 0 additions & 1 deletion docs/nx-cloud/enterprise/dte/jenkins-dte.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ pipeline {
agent none
environment {
NX_BRANCH = env.BRANCH_NAME.replace('PR-', '')
NX_CLOUD_DISTRIBUTED_EXECUTION_AGENT_COUNT = 3
}
stages {
stage('Pipeline') {
Expand Down

0 comments on commit 04151ca

Please sign in to comment.