blob: 6ea3d5baa056c243872a1b0326c993497252a673 [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}"
Andrew Geisslerd51439f2021-02-22 16:14:27 -060016git clone https://github.com/openbmc/openbmc.git
17
18# Ensure everything is built on same filesystem
Patrick Williamse000d5d2021-03-15 14:50:49 -050019export build_dir="${WORKSPACE}/build"
Andrew Geisslerd51439f2021-02-22 16:14:27 -060020
Patrick Williamse000d5d2021-03-15 14:50:49 -050021SEED_MACHINES=( rainier gsj palmetto romulus witherspoon tiogapass zaius )
22for m in "${SEED_MACHINES[@]}"; do
23 echo "Seeding $m"
24 export target=$m
Patrick Williams6c420e72021-04-13 08:13:18 -050025 "${WORKSPACE}/openbmc-build-scripts/build-setup.sh" || \
26 echo "Build failed for $m; continuing."
Patrick Williamse000d5d2021-03-15 14:50:49 -050027 rm -rf "${WORKSPACE}/openbmc/build"
28done