diff options
author | Jessica Wagantall <jwagantall@linuxfoundation.org> | 2020-03-25 14:40:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2020-03-25 14:40:35 +0000 |
commit | 7e8859a22e7616a67ef6fb16f4f645c1cbb8cba3 (patch) | |
tree | eda3e18d46a5bc87fc554a94192c5238f7d1c198 /jjb | |
parent | c381d6dd55186ea999e30f4d0bc72daf11a4cd08 (diff) | |
parent | 6c6cd56b6d645d75256f17b655990a772f7d966f (diff) |
Merge "Setup per Golang project build script"
Diffstat (limited to 'jjb')
-rw-r--r-- | jjb/integration/integration.yaml | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/jjb/integration/integration.yaml b/jjb/integration/integration.yaml index 62a0bed76..ef112ea20 100644 --- a/jjb/integration/integration.yaml +++ b/jjb/integration/integration.yaml @@ -49,21 +49,30 @@ golangver: 'golang112' mvn-settings: 'integration-settings' archive-artifacts: '' - build-node: ubuntu1804-docker-8c-8g jobs: - - '{project-name}-{stream}-{subproject}-verify-golang': + - '{project-name}-{stream}-{subproject}-verify-golang' + subproject: + - 'test-security-k8s': + path: 'test/security/k8s' + pattern: '{path}/**' + build-node: ubuntu1804-builder-4c-4g script: | #!/bin/bash set -ex # Fail build if any setup step fails cd $WORKSPACE/{path} make test - subproject: - - 'test-security-k8s': - path: 'test/security/k8s' - pattern: '{path}/**' - 'test-security-sslendpoints': path: 'test/security/sslendpoints' pattern: '{path}/**' + build-node: ubuntu1804-docker-8c-8g + script: | + #!/bin/bash + set -ex # Fail build if any setup step fails + cd $WORKSPACE/{path} + rm -rf $WORKSPACE/{path}/bin + make docker-build + make test + make clean stream: - 'master': branch: 'master' |