blob: 124022cc836cae200ca0e1334f1f9ca76ec3292d [file] [log] [blame]
Andrew Geisslerb0a86db2019-01-04 14:40:47 -06001#!/bin/bash -xe
2#
3# Purpose:
4# This script is responsible for setting up a openbmc/openbmc build
5# environment for a meta-* repository.
6#
7# Required Inputs:
8# WORKSPACE: Directory which contains the extracted meta-*
9# layer test is running against
10# GERRIT_PROJECT: openbmc/meta-* layer under test (i.e. openbmc/meta-phosphor)
Andrew Geisslerbbd84552019-01-17 20:05:21 -060011# GERRIT_BRANCH: Branch under test (default is master)
Andrew Geisslerb0a86db2019-01-04 14:40:47 -060012
13export LANG=en_US.UTF8
14cd $WORKSPACE
15
Andrew Geisslerbbd84552019-01-17 20:05:21 -060016GERRIT_BRANCH=${GERRIT_BRANCH:-"master"}
17
Andrew Geisslerb0a86db2019-01-04 14:40:47 -060018# Grab this for the downstream job
Andrew Geisslerbbd84552019-01-17 20:05:21 -060019# TODO - Need test repo to branch
20# git clone https://github.com/openbmc/openbmc-test-automation.git --branch ${GERRIT_BRANCH} --single-branch
21git clone https://github.com/openbmc/openbmc-test-automation.git --branch master --single-branch
Andrew Geisslerb0a86db2019-01-04 14:40:47 -060022
23export META_REPO=`basename $GERRIT_PROJECT`
24
25# Move the extracted meta layer to a dir based on it's meta-* name
26mv $GERRIT_PROJECT $META_REPO
27
Andrew Geisslerbbd84552019-01-17 20:05:21 -060028# Remove openbmc dir in prep for full repo clone
29rm -rf openbmc
30
Andrew Geisslerb0a86db2019-01-04 14:40:47 -060031# Clone openbmc/openbmc
Andrew Geisslerbbd84552019-01-17 20:05:21 -060032git clone https://github.com/openbmc/openbmc.git --branch ${GERRIT_BRANCH} --single-branch
Andrew Geisslerb0a86db2019-01-04 14:40:47 -060033
34# Make sure meta-* directory is there
35mkdir -p ./openbmc/$META_REPO/
36
37# Clean out the dir to handle delete/rename of files
38rm -rf ./openbmc/$META_REPO/*
39
40# Copy the extracted meta code into it
41cp -Rf $META_REPO/* ./openbmc/$META_REPO/
42
43# Create a dummy commit so code update will pick it up
44cd openbmc
45git add -A && git commit -m "Dummy commit to cause code update"