blob: 28d6940949c958ca0c4d6376efe8a7b75bb82435 [file] [log] [blame]
Devin Lime1346f42018-05-15 15:41:36 -07001#!groovy
Devin Limf5175192018-05-14 19:13:22 -07002// Copyright 2017 Open Networking Foundation (ONF)
3//
4// Please refer questions to either the onos test mailing list at <onos-test@onosproject.org>,
5// the System Testing Plans and Results wiki page at <https://wiki.onosproject.org/x/voMg>,
6// or the System Testing Guide page at <https://wiki.onosproject.org/x/WYQg>
7//
8// TestON is free software: you can redistribute it and/or modify
9// it under the terms of the GNU General Public License as published by
10// the Free Software Foundation, either version 2 of the License, or
11// (at your option) any later version.
12//
13// TestON is distributed in the hope that it will be useful,
14// but WITHOUT ANY WARRANTY; without even the implied warranty of
15// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16// GNU General Public License for more details.
17//
18// You should have received a copy of the GNU General Public License
19// along with TestON. If not, see <http://www.gnu.org/licenses/>.
20
21// This is the Jenkins script for all-pipeline-trigger
22
Devin Limf5175192018-05-14 19:13:22 -070023// read the dependency functions
Devin Limb734ea52018-05-14 14:13:05 -070024funcs = evaluate readTrusted( 'TestON/JenkinsFile/dependencies/JenkinsCommonFuncs.groovy' )
Devin Lim1cb87512018-05-10 14:44:18 -070025
Devin Limf5175192018-05-14 19:13:22 -070026// get current time and send the notification of starting the test.
Devin Lim1cb87512018-05-10 14:44:18 -070027def now = funcs.getCurrentTime()
28print now.toString()
Devin Limf5175192018-05-14 19:13:22 -070029
30// read the passed parameters from the Jenkins.
Devin Lim1cb87512018-05-10 14:44:18 -070031machines = params.machines
32manually_run = params.manual_run
You Wang99e54722019-02-26 19:51:19 -080033// FIXME: for now we disable any other slack notifications excpet alarms
You Wangaa7bc722019-02-21 17:55:39 -080034/*
Jon Hall6af749d2018-05-29 12:59:47 -070035if ( !manually_run ){
36 slackSend( color: '#03CD9F',
37 message: ":sparkles:" * 16 + "\n" +
38 "Starting tests on : " + now.toString() +
39 "\n" + ":sparkles:" * 16 )
Devin Lim1cb87512018-05-10 14:44:18 -070040}
You Wangaa7bc722019-02-21 17:55:39 -080041*/
Devin Lim1cb87512018-05-10 14:44:18 -070042
Devin Limf5175192018-05-14 19:13:22 -070043// store the list of the machines into the dictionary.
Devin Lim1cb87512018-05-10 14:44:18 -070044machineList = machines.tokenize( "\n;, " )
Jon Hall6af749d2018-05-29 12:59:47 -070045machineOn = [ : ]
Devin Lim1cb87512018-05-10 14:44:18 -070046
Devin Limf5175192018-05-14 19:13:22 -070047// save the triggering job function as a dictionary.
Jon Hall6af749d2018-05-29 12:59:47 -070048for ( machine in machineList ){
Devin Limb91bf792018-05-10 15:09:52 -070049 print( machine )
Devin Lim1cb87512018-05-10 14:44:18 -070050 machineOn[ machine ] = triggerJob( machine )
51}
52
Devin Limf5175192018-05-14 19:13:22 -070053// run the triggering jobs concurrently.
Devin Lim1cb87512018-05-10 14:44:18 -070054parallel machineOn
55
Devin Limf5175192018-05-14 19:13:22 -070056// function that will trigger the specific jobs from current pipeline.
Devin Lim2edfcec2018-05-09 17:16:21 -070057def triggerJob( on ){
Jon Hall6af749d2018-05-29 12:59:47 -070058 return {
Devin Limb91bf792018-05-10 15:09:52 -070059 jobToRun = on + "-pipeline-trigger"
60 build job: jobToRun, propagate: false
61 }
Devin Lim61657e42017-10-09 17:24:40 -070062}