summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJessica Wagantall <jwagantall@linuxfoundation.org>2018-03-12 18:36:31 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-12 18:36:31 +0000
commitcba0c3f5323136c6b0c3346e97586b544badde7c (patch)
tree0eafd72c26b7e9f7f980215ace99820df75e2a97
parent920a905e0a36a369e15fcc20950c0b0fbe8b3555 (diff)
parentfd33dba73491195b1b55d8495a5c7fc0dbf03d15 (diff)
Merge "Add jenkins job for sshsm project"
-rw-r--r--jjb/aaf/aaf-sshsm.yaml7
-rw-r--r--jjb/aaf/build-sshsm.sh20
-rw-r--r--jjb/global-templates-c.yaml51
3 files changed, 77 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
diff --git a/jjb/global-templates-c.yaml b/jjb/global-templates-c.yaml
new file mode 100644
index 000000000..caed98fd1
--- /dev/null
+++ b/jjb/global-templates-c.yaml
@@ -0,0 +1,51 @@
+---
+# vim: sw=2 ts=2 sts=2 et :
+
+- job-template:
+ #
+ # job template for build C/C++ project
+ #
+ # Required Variables:
+ # script: build script to execute
+ #
+
+ name: '{project-name}-{stream}-verify-c'
+ project-type: freestyle
+ node: '{build-node}'
+
+ properties:
+ - infra-properties:
+ build-days-to-keep: '{build-days-to-keep}'
+
+ parameters:
+ - infra-parameters:
+ project: '{project}'
+ branch: '{branch}'
+ refspec: 'refs/heads/{branch}'
+ artifacts: '{archive-artifacts}'
+ - maven-exec:
+ maven-version: '{maven-version}'
+
+ scm:
+ - gerrit-trigger-scm:
+ refspec: 'refs/heads/master'
+ choosing-strategy: 'gerrit'
+ submodule-recursive: '{submodule-recursive}'
+
+ wrappers:
+ - infra-wrappers:
+ build-timeout: '{build-timeout}'
+
+ triggers:
+ - gerrit-trigger-patch-submitted:
+ server: '{server-name}'
+ project: '{project}'
+ branch: '{branch}'
+ files: '**'
+
+ builders:
+ - shell: '{script}'
+
+ publishers:
+ - infra-shiplogs:
+ maven-version: '{maven-version}'