diff options
author | NingSun <ning.sun@intel.com> | 2018-03-08 16:11:39 -0800 |
---|---|---|
committer | NingSun <ning.sun@intel.com> | 2018-03-12 09:44:07 -0700 |
commit | fd33dba73491195b1b55d8495a5c7fc0dbf03d15 (patch) | |
tree | 556c07df6f5a92495c282ee0e851e80228e09413 /jjb/aaf | |
parent | 7c8380e89cfc00cb0002e9c08aec0f9aeaf2ea98 (diff) |
Add jenkins job for sshsm project
Issue-ID: AAF-152
Change-Id: Ic6ab39b4775cf1e874b2f2d1da89a7566bce8359
Signed-off-by: NingSun <ning.sun@intel.com>
Diffstat (limited to 'jjb/aaf')
-rw-r--r-- | jjb/aaf/aaf-sshsm.yaml | 7 | ||||
-rw-r--r-- | jjb/aaf/build-sshsm.sh | 20 |
2 files changed, 26 insertions, 1 deletions
diff --git a/jjb/aaf/aaf-sshsm.yaml b/jjb/aaf/aaf-sshsm.yaml index f48c2cf0e..5908627f6 100644 --- a/jjb/aaf/aaf-sshsm.yaml +++ b/jjb/aaf/aaf-sshsm.yaml @@ -2,12 +2,17 @@ - project: name: aaf-sshsm project-name: 'aaf-sshsm' + build-timeout: 60 + project: 'aaf/sshsm' jobs: - gerrit-maven-clm - project: 'aaf/sshsm' + - '{project-name}-{stream}-verify-c': + script: + !include-raw-escape: 'build-sshsm.sh' stream: - 'master': branch: 'master' + mvn-settings: 'aaf-sshsm-settings' files: '**' archive-artifacts: '' diff --git a/jjb/aaf/build-sshsm.sh b/jjb/aaf/build-sshsm.sh new file mode 100644 index 000000000..e26d44bfd --- /dev/null +++ b/jjb/aaf/build-sshsm.sh @@ -0,0 +1,20 @@ +#!/bin/bash +# + +CURRENTDIR="$(pwd)" +echo $CURRENTDIR + +echo 'Building the SoftHSMv2...' + +cd SoftHSMv2 +sh autogen.sh +./configure +make check +cd .. + +echo 'Building the TPM2-Plugin...' + +cd TPM2-Plugin +./bootstrap +./configure +make |