mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
Merge pull request #7285 from corda/connelm/merge-snyk-delta-48-49-2022-12-12
INFRA-1904: Merging forward snyk delta from 4.8 to 4.9 (2022-12-12)
This commit is contained in:
commit
71a7b6f25d
27
.ci/dev/pr-code-checks/Jenkinsfile
vendored
27
.ci/dev/pr-code-checks/Jenkinsfile
vendored
@ -11,6 +11,14 @@ pipeline {
|
||||
buildDiscarder(logRotator(daysToKeepStr: '14', artifactDaysToKeepStr: '14'))
|
||||
}
|
||||
|
||||
/*
|
||||
* List environment variables in alphabetical order
|
||||
*/
|
||||
environment {
|
||||
SNYK_API_TOKEN = credentials('c4-os-snyk-api-token-secret')
|
||||
C4_OS_SNYK_ORG_ID = credentials('c4-os-snyk-org-id')
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Detekt check') {
|
||||
steps {
|
||||
@ -25,6 +33,25 @@ pipeline {
|
||||
}
|
||||
}
|
||||
|
||||
stage('Snyk Delta') {
|
||||
agent {
|
||||
docker {
|
||||
image 'build-zulu-openjdk:8'
|
||||
reuseNode true
|
||||
registryUrl 'https://engineering-docker.software.r3.com/'
|
||||
registryCredentialsId 'artifactory-credentials'
|
||||
args '-v /tmp:/host_tmp'
|
||||
}
|
||||
}
|
||||
environment {
|
||||
GRADLE_USER_HOME = "/host_tmp/gradle"
|
||||
}
|
||||
steps {
|
||||
sh 'mkdir -p ${GRADLE_USER_HOME}'
|
||||
snykDeltaScan(env.SNYK_API_TOKEN, env.C4_OS_SNYK_ORG_ID)
|
||||
}
|
||||
}
|
||||
|
||||
stage('No API change check') {
|
||||
steps {
|
||||
sh "./gradlew --no-daemon generateApi"
|
||||
|
Loading…
Reference in New Issue
Block a user