-
Notifications
You must be signed in to change notification settings - Fork 23
/
pipeline.yml
67 lines (60 loc) · 1.56 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
64
65
66
67
version: 0.1.1
env:
- SLACK_QUANTUM_BUILD_CHANNEL : "#dynamo-jenkinsbuild"
- SLACK_QUANTUM_BUILD_CREDENTIAL_ID : "slack-notify-token"
- MAIL_QUANTUM_BUILD_RECIPIENT : "dynamo.dev@autodesk.com"
- NUGET_API_ID : "dynamovisualprogramming_nuget_api_key"
- HARMONY_REPO : "DynamoDS/librarie.js"
check_changelog_updated_on_pr: false
pipeline_os: "linux"
force_slack_notification : true
language: typescript
jenkins_creds:
-
type: secretText
credentialsId: dynamovisualprogramming_nuget_api_key
secretText: API_KEY
build:
-
customized_builder_image:
registry: artifactory
url: artifactory.dev.adskengineer.net/dynamo/dynamolibrariejs:dotnetcore3_node16_v2
scripts:
- "mv -f /home/ctr-user/.npmrc $WORKSPACE"
- "npm ci"
- "npm run build"
ci_test:
tests:
-
customized_builder_image:
registry: artifactory
url: artifactory.dev.adskengineer.net/dynamo/dynamolibrariejs:dotnetcore3_node16_v2
scripts:
- "npm run test"
- "npm run utiltest"
test_report_dir: TestResults
test_report_pattern:
format: "junit"
pattern: "*.xml"
soc2:
run_on_any_branch : true
harmony:
product_name: Dynamo
exclude:
- "harmony"
- ".tools"
hidden_email_list: dynamo_ws_access
repository: env.HARMONY_REPO
timeout: 3000
schedule:
cron_schedule: "once_a_week"
code_analysis:
sonarqube:
useCommonSonar: true
project_name: librarie.js
organization: Dynamo
src: "."
exclusions:
- __tests__/**/*
- node_modules/**/*
- dist/**/*