Server IP : 85.214.239.14 / Your IP : 3.133.126.241 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/netapp_eseries/santricity/ |
Upload File : |
// Copyright 2022 NetApp, Inc. All Rights Reserved. // Licensed under the BSD-3-Clause. // Set up build parameters so any branch can be manually rebuilt with different values. properties([ parameters([ string(name: 'hubProjectVersion', defaultValue: '', description: 'Set this to force a BlackDuck scan and ' + 'manually tag it to a particular BlackDuck version (e.g. 1.0.1).') ]) ]) hubProjectName = 'esg-ansible-santricity-collection' hubProjectVersion = 'master' if (params.hubProjectVersion != '') { // Tag the manually selected version if the hubProjectVersion build parameter is set. hubProjectVersion = params.hubProjectVersion } pipeline { agent any options { timestamps() timeout(time: 3, unit: 'HOURS') buildDiscarder(logRotator(artifactNumToKeepStr: '15')) } stages { stage("BlackDuck Scan") { options { timeout(time: 60, unit: 'MINUTES') } steps { echo "Performing BlackDuck scanning..." synopsys_detect detectProperties: """ --detect.project.name=${hubProjectName} \ --detect.project.version.name=${hubProjectVersion} \ --detect.cleanup=false \ --detect.project.code.location.unmap=true \ --detect.detector.search.depth=50 \ --detect.code.location.name=${hubProjectName}_${hubProjectVersion}_code \ --detect.bom.aggregate.name=${hubProjectName}_${hubProjectVersion}_bom \ --detect.excluded.directories=blackduck/ \ --detect.output.path=blackduck """ } post { success { archiveArtifacts(artifacts: 'blackduck/runs/**') } } } } }