Skip to content

Commit

Permalink
Merge pull request #31 from Axway/dev
Browse files Browse the repository at this point in the history
INT - Merging Dev to Master
  • Loading branch information
vivekschauhan authored Jul 17, 2019
2 parents 4494b3e + f7da057 commit c026bf5
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions Jenkinsfile-gosec
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#!groovy
pipeline {
agent {
docker {
image 'ace.swf-artifactory.lab.phx.axway.int/ace/ubuntu-security:latest'
args '-u root --privileged' }
}

stages {
stage('ACE Golang SDK gosec') {
steps {
sh '''
mkdir -p $GOPATH/src/github.com/Axway
cd $GOPATH/src/github.com/Axway
ln -s ${WORKSPACE} ace-golang-sdk
cd $GOPATH/src/github.com/Axway/ace-golang-sdk
dep ensure -v
gosec -severity medium -fmt=json -out=$GOPATH/src/github.com/Axway/ace-golang-sdk/gosec-results.json ./...
'''
}
}
}
}

0 comments on commit c026bf5

Please sign in to comment.