From 1a300a440e423711569ae28d236d5a1f21f8d9fd Mon Sep 17 00:00:00 2001 From: Alexis Erazo Date: Mon, 20 May 2024 09:27:29 -0500 Subject: [PATCH 1/4] 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 From b8dbf1e432efd6e15b568a9416f9fcbc0824bdcd Mon Sep 17 00:00:00 2001 From: Alexis Erazo Date: Mon, 20 May 2024 10:00:47 -0500 Subject: [PATCH 2/4] Failure filter added. --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index 37b747c..a96e121 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -22,7 +22,7 @@ ci_test: tests: - scripts: - - "dotnet test --no-build --configuration Release IronPython3Extension.sln --logger:junit" + - "dotnet test --no-build --configuration Release IronPython3Extension.sln --filter \"TestCategory!=Failure\" --logger:junit" test_report_dir: "IronPython3Tests/TestResults" test_report_pattern: format: "junit" From 312a2610dec265e665366946cfd93408b67c2447 Mon Sep 17 00:00:00 2001 From: Alexis Erazo Date: Mon, 20 May 2024 10:08:15 -0500 Subject: [PATCH 3/4] Sign change. --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index a96e121..9eb201e 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -42,7 +42,7 @@ deployment: type: sign files_to_sign: - package_output\DSIronPython3\bin\DSIronPythonEmpty.dll - - package_output\DSIronPython3\extra\IronPython.dll + - package_output\DSIronPython3\extra\python3eval.dll - package_output\DSIronPython3\extra\IronPython3Extension.dll - From b8dee36ebc946cd020b68a1580bc5c96a12e8ad7 Mon Sep 17 00:00:00 2001 From: Alexis Erazo Date: Mon, 20 May 2024 10:23:37 -0500 Subject: [PATCH 4/4] New version --- pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline.yml b/pipeline.yml index 9eb201e..5f3e780 100644 --- a/pipeline.yml +++ b/pipeline.yml @@ -1,4 +1,4 @@ -version: 0.1.1 +version: 1.4.0 env: - JENKINS_NODE_WIN: "DynamoWinBuild" - SLACK_QUANTUM_BUILD_CHANNEL : "#dynamo-jenkinsbuild"