blob: 4ec599c157e8ff70ffe2e6defc26049168282e15 [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 Geissler9968f962023-02-02 06:56:00 -070027 ahe50dc
Andrew Geissler5b2f4ab2023-02-01 13:35:09 -070028 bletchley
29 e3c246d4i
Andrew Geissler01370f22021-05-07 13:25:23 -050030 gbs
Patrick Williams22c33752023-11-27 13:22:26 -060031 harma
Patrick Williams04fde222023-11-27 21:08:57 -060032 minerva
Adriana Kobylak17c69ed2021-04-12 15:59:26 +000033 p10bmc
Patrick Williams247ae502021-04-13 08:16:13 -050034 palmetto
Andrew Geissler9968f962023-02-02 06:56:00 -070035 romed8hm3
Patrick Williams247ae502021-04-13 08:16:13 -050036 romulus
Patrick Williams247ae502021-04-13 08:16:13 -050037 witherspoon
Patrick Williams260e85d2023-08-07 07:26:03 -050038 yosemite4
Patrick Williams247ae502021-04-13 08:16:13 -050039 zaius
40)
41
Patrick Williamse000d5d2021-03-15 14:50:49 -050042for m in "${SEED_MACHINES[@]}"; do
43 echo "Seeding $m"
44 export target=$m
Patrick Williams6c420e72021-04-13 08:13:18 -050045 "${WORKSPACE}/openbmc-build-scripts/build-setup.sh" || \
46 echo "Build failed for $m; continuing."
Patrick Williamse000d5d2021-03-15 14:50:49 -050047 rm -rf "${WORKSPACE}/openbmc/build"
Patrick Williams124607f2021-04-13 11:40:11 -050048 rm -rf "${build_dir}"
Patrick Williamse000d5d2021-03-15 14:50:49 -050049done