Skip to content

Commit 5d6cc82

Browse files
committed
dogfooding
1 parent f09a289 commit 5d6cc82

File tree

5 files changed

+7
-8
lines changed

5 files changed

+7
-8
lines changed

Pipfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ pyfakefs = "*"
1717
pytest-cov = "*"
1818
wheel = "*"
1919
continuous-delivery-scripts = {editable = true, path = "."}
20-
mbed-tools-ci-scripts = "*"
2120
pre-commit = "*"
2221

2322
[pipenv]

azure-pipelines/build-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ stages:
121121
- template: steps/install-development-dependencies.yml
122122

123123
- script: |
124-
assert-news -b $(current_branch)
124+
cd-assert-news -b $(current_branch)
125125
displayName: 'Run check'
126126
127127
- stage: DocBuild
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
steps:
22
- bash: |
3-
echo "##vso[task.setvariable variable=temp_docs_path]`get-config --key DOCUMENTATION_PRODUCTION_OUTPUT_PATH`"
3+
echo "##vso[task.setvariable variable=temp_docs_path]`cd-get-config --key DOCUMENTATION_PRODUCTION_OUTPUT_PATH`"
44
displayName: 'Set variable for temporary docs dir'
55
66
- script: |
7-
generate-docs --output_dir $(temp_docs_path)
7+
cd-generate-docs --output_dir $(temp_docs_path)
88
displayName: 'Generate documentation'
99
1010
- script: |
11-
license-files
11+
cd-license-files
1212
displayName: 'Add copyright/licence notice.'

azure-pipelines/steps/generate-spdx-documents.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ steps:
55
66
- bash: |
77
mkdir -p $(temp_spdx_reports_path)
8-
generate-spdx --output-dir $(temp_spdx_reports_path)
8+
cd-generate-spdx --output-dir $(temp_spdx_reports_path)
99
displayName: 'Generate SPDX documents'
1010
1111
- script: |
12-
license-files
12+
cd-license-files
1313
displayName: 'Add copyright/licence notice.'
1414
1515
- publish: $(temp_spdx_reports_path)

azure-pipelines/steps/tag-and-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ parameters:
44
currentBranch: ''
55

66
steps:
7-
- bash: tag-and-release -b ${{ parameters.currentBranch }} --release-type=${{ parameters.releaseType }} -vv
7+
- bash: cd-tag-and-release -b ${{ parameters.currentBranch }} --release-type=${{ parameters.releaseType }} -vv
88
displayName: ${{ parameters.message }}
99
env:
1010
GIT_TOKEN: $(GIT_TOKEN)

0 commit comments

Comments
 (0)