blob: ad078ef926cf4fce38d2ace9ae42add1e984e274 [file] [log] [blame]
Zsolt Haraszti56700cd2016-06-01 16:02:05 -07001/*
Zsolt Harasztid5fa9ed2016-06-01 16:07:16 -07002 * Copyright 2012 the original author or authors.
Zsolt Haraszti56700cd2016-06-01 16:02:05 -07003 *
Zsolt Harasztid5fa9ed2016-06-01 16:07:16 -07004 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
Zsolt Haraszti56700cd2016-06-01 16:02:05 -070015 */
16
Zsolt Harasztid5fa9ed2016-06-01 16:07:16 -070017ext {
Zsolt Haraszti56700cd2016-06-01 16:02:05 -070018
Zsolt Harasztid5fa9ed2016-06-01 16:07:16 -070019 // Target registry to be used to publish docker images needed for deployment
20 targetReg = project.hasProperty('targetReg') ? project.getProperty('targetReg') : 'localhost:5000'
21
22 // The tag used to tag the docker images push to the target registry
23 targetTag = project.hasProperty('targetTag') ? project.getProperty('targetTag') : 'candidate'
24
ChetanGaonker5979e212016-06-03 09:30:49 -070025 cordTesterPath = project.hasProperty('cordTesterPath') ? project.getProperty('cordTesterPath') : './src/test/setup'
26
27 dockerPath = project.hasProperty('dockerPath') ? project.getProperty('dockerPath') : '/usr/bin'
A R Karthick577520a2016-06-07 14:40:12 -070028
29 cordTesterAptDeps = [ 'python', 'python-dev', 'python-pip', 'python-setuptools' ]
30
31 cordTesterPipDeps = [ 'scapy', 'nose', 'monotonic', 'configObj', 'docker-py', 'pyyaml', 'nsenter', 'pyroute2', 'netaddr', 'scapy-ssl_tls' ]
Zsolt Haraszti56700cd2016-06-01 16:02:05 -070032}
33
Zsolt Harasztid5fa9ed2016-06-01 16:07:16 -070034// ~~~~~~~~~~~~~~~~~~~ Global tasks ~~~~~~~~~~~~~~~~~~~~~~~
Zsolt Haraszti56700cd2016-06-01 16:02:05 -070035
A R Karthick577520a2016-06-07 14:40:12 -070036task aptFetch() {
37 // fetch the dependencies for cord tester
38 cordTesterAptDeps.each {
39 String pkg ->
40 exec {
41 executable 'apt-get'
42 args "install", "-y", pkg
43 }
44 }
45}
46
47task pipFetch() {
48 // fetch the dependencies for cord tester
49 dependsOn aptFetch
50 cordTesterPipDeps.each {
51 String pkg ->
52 exec {
53 executable 'pip'
54 args "install", "-U", pkg
55 }
56 }
57}
58
Zsolt Harasztid5fa9ed2016-06-01 16:07:16 -070059// To be used to fetch upstream binaries, clone repos, etc.
ChetanGaonker5979e212016-06-03 09:30:49 -070060task fetch (type: Exec) {
A R Karthick577520a2016-06-07 14:40:12 -070061 dependsOn pipFetch
ChetanGaonker5979e212016-06-03 09:30:49 -070062 commandLine "$cordTesterPath/onos_pull.sh", 'latest'
Zsolt Haraszti56700cd2016-06-01 16:02:05 -070063}
Zsolt Harasztid5fa9ed2016-06-01 16:07:16 -070064
65// To be used to generate all needed binaries that need to be present on the target
66// as docker images in the local docker runner.
ChetanGaonker5979e212016-06-03 09:30:49 -070067task buildImages (type: Exec) {
Zsolt Harasztid5fa9ed2016-06-01 16:07:16 -070068 // ...
ChetanGaonker5979e212016-06-03 09:30:49 -070069 commandLine "$cordTesterPath/cord-test.py", 'build', 'all'
Zsolt Harasztid5fa9ed2016-06-01 16:07:16 -070070}
71
72// Publish image(s) built during the build step into targetReg registry using the targetTag
73// tag. See maas subproject for examples on how to do this.
74task publish {
75 println "$targetTag"
76}