blob: 9365eff0f8228f0210816450b7c38f23d3e640a4 [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
Patrick Williams12837fc2024-07-26 12:02:20 -050029 catalina
Andrew Geissler5b2f4ab2023-02-01 13:35:09 -070030 e3c246d4i
Andrew Geissler01370f22021-05-07 13:25:23 -050031 gbs
Patrick Williams22c33752023-11-27 13:22:26 -060032 harma
Patrick Williams04fde222023-11-27 21:08:57 -060033 minerva
Adriana Kobylak17c69ed2021-04-12 15:59:26 +000034 p10bmc
Patrick Williams247ae502021-04-13 08:16:13 -050035 palmetto
Andrew Geissler9968f962023-02-02 06:56:00 -070036 romed8hm3
Patrick Williams247ae502021-04-13 08:16:13 -050037 romulus
Patrick Williams12837fc2024-07-26 12:02:20 -050038 ventura
Patrick Williams247ae502021-04-13 08:16:13 -050039 witherspoon
Patrick Williams260e85d2023-08-07 07:26:03 -050040 yosemite4
Patrick Williams247ae502021-04-13 08:16:13 -050041 zaius
42)
43
Patrick Williamse000d5d2021-03-15 14:50:49 -050044for m in "${SEED_MACHINES[@]}"; do
45 echo "Seeding $m"
46 export target=$m
Patrick Williams6c420e72021-04-13 08:13:18 -050047 "${WORKSPACE}/openbmc-build-scripts/build-setup.sh" || \
48 echo "Build failed for $m; continuing."
Patrick Williamse000d5d2021-03-15 14:50:49 -050049 rm -rf "${WORKSPACE}/openbmc/build"
Patrick Williams124607f2021-04-13 11:40:11 -050050 rm -rf "${build_dir}"
Patrick Williamse000d5d2021-03-15 14:50:49 -050051done