-
Notifications
You must be signed in to change notification settings - Fork 4
/
pipeline.yml
63 lines (55 loc) · 1.66 KB
/
pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
version: 3.1.0
env:
- JENKINS_NODE_WIN: "DynamoWinBuild"
- SLACK_QUANTUM_BUILD_CHANNEL : "#dynamo-jenkinsbuild"
- SLACK_QUANTUM_BUILD_CREDENTIAL_ID : "slack-notify-token"
- MAIL_QUANTUM_BUILD_RECIPIENT : "[email protected]"
check_changelog_updated_on_pr: false
pipeline_os: "Windows"
force_slack_notification : true
language: csharp
schedule :
cron_schedule : once_a_week
build:
-
scripts:
- "dotnet build --configuration Release DSIronPython.sln"
ci_test:
tests:
-
scripts:
- dotnet coverage collect "dotnet test --no-build --configuration Release DSIronPython.sln --filter \"TestCategory!=Failure\" --logger:junit --logger:trx" -f xml -o "coverage.xml"
test_report_dir: "IronPythonTests/TestResults"
test_report_pattern:
format: "junit"
pattern: "*.xml"
code_analysis:
sonarqube:
useDotnetSonarScanner: true
scanOnAnyBranch: true
coverage_reports:
- coverage.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\DSIronPython\bin\DSIronPythonEmpty.dll
- package_output\DSIronPython\extra\DSIronPython.dll
- package_output\DSIronPython\extra\IronPythonExtension.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\\DSIronPython -DestinationPath .\\DSIronPythonPackage.zip"
outputs:
- "DSIronPythonPackage.zip"