From 1a300a440e423711569ae28d236d5a1f21f8d9fd Mon Sep 17 00:00:00 2001 From: Alexis Erazo Date: Mon, 20 May 2024 09:27:29 -0500 Subject: [PATCH] Pipeline changes and zip with PS. --- pipeline.yml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index 953db25..37b747c 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -23,12 +23,34 @@ ci_test: - scripts: - "dotnet test --no-build --configuration Release IronPython3Extension.sln --logger:junit" - test_report_dir: "./IronPython3Tests/TestResults" + test_report_dir: "IronPython3Tests/TestResults" + test_report_pattern: + format: "junit" + pattern: "*.xml" soc2: harmony: allow_branches: - master hidden_email_list: dynamo_ws_access + fail_on_audit_failure: false third_party_lib_paths: - package_output + +deployment: + - + type: sign + files_to_sign: + - package_output\DSIronPython3\bin\DSIronPythonEmpty.dll + - package_output\DSIronPython3\extra\IronPython.dll + - package_output\DSIronPython3\extra\IronPython3Extension.dll + + - + type: artifacts + allow_branches: master + publish_to_artifactory: false + publish_to_jenkins: true + scripts: + - "pwsh.exe -ExecutionPolicy ByPass -Command Compress-Archive -Path .\\package_output\\DSIronPython3 -DestinationPath .\\DSIronPython3Package.zip" + outputs: + - "DSIronPython3Package.zip" \ No newline at end of file