Skip to content
Merged
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
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pipeline {
stage('Unit Testing') {
agent {
docker {
image 'securityuniversal/jenkins-python-agent:latest'
image 'securityuniversal/jenkins:latest'
}
}
when {
Expand Down Expand Up @@ -99,7 +99,7 @@ pipeline {
stage('Software Composition Analysis') {
agent {
docker {
image 'securityuniversal/jenkins-codetesting-agent:latest'
image 'securityuniversal/jenkins:latest'
}
}
when {
Expand Down Expand Up @@ -127,7 +127,7 @@ pipeline {
stage('Static Application Security Testing') {
agent {
docker {
image 'securityuniversal/jenkins-codetesting-agent:latest'
image 'securityuniversal/jenkins:latest'
}
}
when {
Expand Down
12 changes: 6 additions & 6 deletions pipeline-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ stages:
branches:
- release
unitTesting:
enabled: true
enabled: false
branches: []
secretScanning:
enabled: true
branches:
- release
sca:
enabled: true
enabled: false
branches:
- release
codeLanguages:
- Python
- Javascript
sast:
enabled: true
enabled: false
branches:
- release
codeLanguages:
Expand All @@ -37,19 +37,19 @@ stages:
branches:
- release
containerScan:
enabled: true
enabled: false
branches:
- release
containerName: secusphere
containerTag: latest
releaseToTest:
enabled: true
enabled: false
branches:
- release
serviceName: secusphere
containerTag: latest
testRelease:
enabled: true
enabled: false
branches:
- release
targetUrl: 'http://192.168.0.68:5010'
Expand Down