diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index dc20f994c..000000000 --- a/Jenkinsfile +++ /dev/null @@ -1,46 +0,0 @@ -pipeline{ - agent { - label 'docker-amt' - } - options { - buildDiscarder(logRotator(numToKeepStr: '5', daysToKeepStr: '30')) - timestamps() - timeout(unit: 'HOURS', time: 2) - } - stages{ - stage('Scan'){ - environment { - PROJECT_NAME = 'OpenAMT - MPS' - SCANNERS = 'protex,checkmarx,snyk' - - // publishArtifacts details - PUBLISH_TO_ARTIFACTORY = true - - SNYK_MANIFEST_FILE = 'package-lock.json' - SNYK_PROJECT_NAME = 'openamt-mps' - } - when { - anyOf { - branch 'main'; - } - } - steps { - script{ - scmCheckout { - clean = true - } - } - rbheStaticCodeScan() - } - } - } - post{ - failure { - script{ - slackBuildNotify { - slackFailureChannel = '#open-amt-cloud-toolkit-build' - } - } - } - } -}