Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -361,4 +361,4 @@ MigrationBackup/
.ionide/

# Fody - auto-generated XML schema
FodyWeavers.xsd
FodyWeavers.xsd
8 changes: 0 additions & 8 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,3 @@
@Library('CILibrary@CBP/stable') _

StartPipeline()

@NonCPS
def printParams() {
env.getEnvironment().each { name, value -> println "$name : $value" }
}
println "*******************************************************************"
printParams()
println "*******************************************************************"
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# DSIronPython3

[![Build Status](https://c007.cloudbees-ci.autodesk.com/buildStatus/icon?job=DYNCI%2FDynamo%2FDSIronPython3%2Fmaster)](https://c007.cloudbees-ci.autodesk.com/job/DYNCI/job/Dynamo/job/DSIronPython3/job/master/)
unoffical ironpython3 engine package/extension for dynamo leveraging dynamic python engine loading in Dynamo 2.18+

This dynamo package contains the ironPython3 engine and stdlib.
Expand Down
36 changes: 16 additions & 20 deletions pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
version: 1.6.0
env:
- JENKINS_NODE_WIN: "CDA-VS22-DT"
- SLACK_QUANTUM_BUILD_CHANNEL : "#dynamo-jenkinsbuild"
- SLACK_QUANTUM_BUILD_CREDENTIAL_ID : "slack-notify-token"
- MAIL_QUANTUM_BUILD_RECIPIENT : "dynamo.dev@autodesk.com"
- JENKINS_NODE_WIN: "CDA-VS22-CBCI-DT"
- SLACK_QUANTUM_BUILD_CHANNEL: "#dynamo-jenkinsbuild"
- SLACK_QUANTUM_BUILD_CREDENTIAL_ID: "slack-notify-token"
- MAIL_QUANTUM_BUILD_RECIPIENT: "dynamo.dev@autodesk.com"

check_changelog_updated_on_pr: false
pipeline_os: "Windows"
force_slack_notification : true
force_slack_notification: true
language: csharp

schedule :
cron_schedule : once_a_week
schedule:
cron_schedule: once_a_week

build:
-
scripts:
- scripts:
- dotnet build --configuration Release IronPython3Extension.sln

ci_test:
tests:
-
scripts:
tests:
- scripts:
- dotnet coverage collect "dotnet test --no-build --configuration Release IronPython3Extension.sln --filter \"TestCategory!=Failure\" --logger:junit --logger:trx" -f xml -o "coverage.xml"
test_report_dir: "IronPython3Tests/TestResults"
test_report_pattern:
Expand All @@ -45,15 +43,13 @@ soc2:
- package_output

deployment:
-
type: sign
- type: sign
files_to_sign:
- package_output\DSIronPython3\bin\DSIronPython3Empty.dll
- package_output\DSIronPython3\extra\python3eval.dll
- package_output\DSIronPython3\extra\IronPython3Extension.dll

-
type: artifacts
- package_output\DSIronPython3\bin\DSIronPython3Empty.dll
- package_output\DSIronPython3\extra\python3eval.dll
- package_output\DSIronPython3\extra\IronPython3Extension.dll

- type: artifacts
publish_to_jenkins: true
publish_to_artifactory: false
publish_to_package_manager: true
Expand Down
Loading