Skip to content
Open
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
14 changes: 14 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#!/usr/bin/env groovy

@Library('PSL@master')
@Library('CILibrary@CBP/stable') _

StartPipeline()

@NonCPS
def printParams() {
env.getEnvironment().each { name, value -> println "$name : $value" }
}
println "*******************************************************************"
printParams()
println "*******************************************************************"
13 changes: 1 addition & 12 deletions DynaShape/pipeline.yml → pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,12 @@ schedule:

build:
- scripts:
- "dotnet build --configuration Release DynaShape\DynaShape.sln"

ci_test:
tests:
- scripts:
- dotnet coverage collect "dotnet test --no-build --configuration Release DynaShape\DynaShape.sln --filter \"TestCategory!=Failure\" --logger:junit --logger:trx" -f xml -o "coverage.xml"
test_report_dir: "DynaShapeTests/TestResults"
test_report_pattern:
format: "junit"
pattern: "*.xml"
- "msbuild /p:Configuration=Release DynaShape\\DynaShape.sln"

code_analysis:
sonarqube:
useDotnetSonarScanner: true
scanOnAnyBranch: true
coverage_reports:
- coverage.xml

soc2:
harmony:
Expand Down