summaryrefslogtreecommitdiffstats
path: root/qemu/roms/u-boot/include/configs/rpi_b.h
diff options
context:
space:
mode:
authorJiang, Yunhong <yunhong.jiang@intel.com>2016-08-19 22:38:30 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2016-08-19 22:38:30 +0000
commit1ec14a31c3ee8df1b8602632e0e3295547e3ea12 (patch)
tree13d77cab75c7aebcfd88988e1c104188472e2e6f /qemu/roms/u-boot/include/configs/rpi_b.h
parentb1c117f1c8414bddbe4370414590f5f0b62ae4d1 (diff)
parent5a56bf69988b7c72e88546eb4659576fb51bfb77 (diff)
Merge "OPNFV KVM4NFV: Documentation"
Diffstat (limited to 'qemu/roms/u-boot/include/configs/rpi_b.h')
0 files changed, 0 insertions, 0 deletions
eral.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#!/bin/bash
#set -o errexit
#set -o nounset
#set -o pipefail

# get the job type
# we only support verify, merge, daily and weekly jobs
if [[ "$JOB_NAME" =~ (verify|merge|daily|weekly) ]]; then
    JOB_TYPE=${BASH_REMATCH[0]}
else
    echo "Unable to determine job type!"
    exit 1
fi

# do stuff differently based on the job type
case "$JOB_TYPE" in
    verify)
        echo "Running as part of verify job"
        ;;
    merge)
        echo "Running as part of merge job"
        ;;
    daily)
        echo "Running as part of daily job"
        ;;
    weekly)
        echo "Running as part of weekly job"
        ;;
    *)
        echo "Job type $JOB_TYPE is not supported!"
        exit 1
esac

# this just shows we can get the patch/commit information
# no matter what job we are executed by
cd $WORKSPACE
echo
echo "Commit Message is"
echo "-------------------------------------"
git log --format=%B -n 1 $(git rev-parse HEAD)
echo "-------------------------------------"
echo
echo "Repo contents"
echo "-------------------------------------"
ls -al
echo "-------------------------------------"
echo
echo "Changed files are"
echo "-------------------------------------"
git diff origin/master --name-only
echo "-------------------------------------"
echo
echo "Change introduced"
echo "-------------------------------------"
git diff origin/master
echo "-------------------------------------"
echo
echo "git show"
echo "-------------------------------------"
git show
echo "-------------------------------------"