blob: 66fbf9ec05548155ef2549a77309e3b403a2b20d [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 Williams247ae502021-04-13 08:16:13 -050031 gsj
Adriana Kobylak17c69ed2021-04-12 15:59:26 +000032 p10bmc
Patrick Williams247ae502021-04-13 08:16:13 -050033 palmetto
Andrew Geissler9968f962023-02-02 06:56:00 -070034 romed8hm3
Patrick Williams247ae502021-04-13 08:16:13 -050035 romulus
36 tiogapass
37 witherspoon
38 yosemitev2
39 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