Skip to content

Commit 895e629

Browse files
authored
chore: Use PublishPipelineArtifact in place of PublishBuildArtifacts to reduce CI fragility (#1213)
## Summary by Sourcery CI: - Replace `PublishBuildArtifacts` with `PublishPipelineArtifact` in the CI pipeline to enhance stability. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Chores** - Updated Azure Pipelines configuration for improved artifact handling. - Introduced parameters for test path and cache directory. - Set Python version to 3.11 and architecture to x64 for consistency in builds. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
1 parent 6d348fc commit 895e629

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.azure-pipelines/pyinstaller.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ steps:
1919
python build_utils/create_and_pack_executable.py --no-simple-zip
2020
displayName: build
2121
22-
- task: PublishBuildArtifacts@1
22+
- task: PublishPipelineArtifact@1
2323
inputs:
24-
pathToPublish: dist2
25-
artifactName: execs
24+
targetPath: dist2
25+
publishLocation: pipeline
2626
- script: ${{ parameters.test_path }}
2727
displayName: TestBuild

0 commit comments

Comments
 (0)