blob: 9e30a078a12d418f066d443f695310c32e454ac7 [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
25 "${WORKSPACE}/openbmc-build-scripts/build-setup.sh"
26 rm -rf "${WORKSPACE}/openbmc/build"
27done