summaryrefslogtreecommitdiff
path: root/meta-arm/ci/jobs-to-kas
blob: eea6e4635b9d68fafadcc0405e1f677b32b0f8be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#! /bin/bash

# This script is expecting an input of machine name, optionally followed by a
# colon and a list of one or more parameters separated by commas between
# brackets.  For example, the following are acceptable:
# corstone1000-mps3
# fvp-base: [testimage]
# qemuarm64-secureboot: [clang, glibc, testimage]
#
# Turn this list into a series of yml files separated by colons to pass to kas

set -e -u

FILES="ci/$(echo $1 | cut -d ':' -f 1).yml"

for i in $(echo $1 | cut -s -d ':' -f 2 | sed 's/[][,]//g'); do
	# Given that there are no yml files for gcc or glibc, as those are the
	# defaults, we can simply ignore those parameters.  They are necessary
	# to pass in so that matrix can correctly setup all of the permutations
	# of each individual run.
	if [[ $i == 'none' ]]; then
		continue
	fi
	FILES+=":ci/$i.yml"
done

echo $FILES