File tree Expand file tree Collapse file tree 5 files changed +7
-8
lines changed Expand file tree Collapse file tree 5 files changed +7
-8
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ pyfakefs = "*"
17
17
pytest-cov = " *"
18
18
wheel = " *"
19
19
continuous-delivery-scripts = {editable = true , path = " ." }
20
- mbed-tools-ci-scripts = " *"
21
20
pre-commit = " *"
22
21
23
22
[pipenv ]
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ stages:
121
121
- template : steps/install-development-dependencies.yml
122
122
123
123
- script : |
124
- assert-news -b $(current_branch)
124
+ cd- assert-news -b $(current_branch)
125
125
displayName: 'Run check'
126
126
127
127
- stage : DocBuild
Original file line number Diff line number Diff line change 1
1
steps :
2
2
- 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`"
4
4
displayName: 'Set variable for temporary docs dir'
5
5
6
6
- script : |
7
- generate-docs --output_dir $(temp_docs_path)
7
+ cd- generate-docs --output_dir $(temp_docs_path)
8
8
displayName: 'Generate documentation'
9
9
10
10
- script : |
11
- license-files
11
+ cd- license-files
12
12
displayName: 'Add copyright/licence notice.'
Original file line number Diff line number Diff line change 5
5
6
6
- bash : |
7
7
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)
9
9
displayName: 'Generate SPDX documents'
10
10
11
11
- script : |
12
- license-files
12
+ cd- license-files
13
13
displayName: 'Add copyright/licence notice.'
14
14
15
15
- publish : $(temp_spdx_reports_path)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ parameters:
4
4
currentBranch : ' '
5
5
6
6
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
8
8
displayName : ${{ parameters.message }}
9
9
env :
10
10
GIT_TOKEN : $(GIT_TOKEN)
You can’t perform that action at this time.
0 commit comments