blob: 131285ddc5b35f509ab26dc7f674e8107647241b [file] [log] [blame]
Andrew Geisslerd51439f2021-02-22 16:14:27 -06001#!/bin/bash -xe
2#
3# Purpose:
4# This script is responsible for building all CI machines to get a
5# new CI systems sstate and download caches setup.
6#
7# This script assumes openbmc-build-scripts has been cloned into
8# the WORKSPACE directory.
9#
10# Required Inputs:
11# WORKSPACE: Directory to run the builds out of
12
13export LANG=en_US.UTF8
14
Patrick Williamse000d5d2021-03-15 14:50:49 -050015cd "${WORKSPACE}"
Patrick Williams07759722021-04-13 08:23:01 -050016if [ -d openbmc ]; then
17 git -C openbmc fetch
18 git -C openbmc rebase
19else
20 git clone https://github.com/openbmc/openbmc.git
21fi
Andrew Geisslerd51439f2021-02-22 16:14:27 -060022
23# Ensure everything is built on same filesystem
Patrick Williamse000d5d2021-03-15 14:50:49 -050024export build_dir="${WORKSPACE}/build"
Andrew Geisslerd51439f2021-02-22 16:14:27 -060025
Patrick Williams247ae502021-04-13 08:16:13 -050026SEED_MACHINES=(
Andrew Geissler01370f22021-05-07 13:25:23 -050027 gbs
Patrick Williams247ae502021-04-13 08:16:13 -050028 gsj
Adriana Kobylak17c69ed2021-04-12 15:59:26 +000029 p10bmc
Patrick Williams247ae502021-04-13 08:16:13 -050030 palmetto
Patrick Williams247ae502021-04-13 08:16:13 -050031 romulus
32 tiogapass
33 witherspoon
34 yosemitev2
35 zaius
36)
37
Patrick Williamse000d5d2021-03-15 14:50:49 -050038for m in "${SEED_MACHINES[@]}"; do
39 echo "Seeding $m"
40 export target=$m
Patrick Williams6c420e72021-04-13 08:13:18 -050041 "${WORKSPACE}/openbmc-build-scripts/build-setup.sh" || \
42 echo "Build failed for $m; continuing."
Patrick Williamse000d5d2021-03-15 14:50:49 -050043 rm -rf "${WORKSPACE}/openbmc/build"
Patrick Williams124607f2021-04-13 11:40:11 -050044 rm -rf "${build_dir}"
Patrick Williamse000d5d2021-03-15 14:50:49 -050045done