blob: b2664f66757bcefdebdd32ffa283438b50e8cbec [file] [log] [blame]
#!/bin/bash
# Copyright 2018 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This is determined by the branch on kokoro.
# TODO(davidriley): This is somewhat misused and can also represent "mesa"
# which would be shared across multiple milestones. This is intended to
# just be temporary while GPU is alpha/beta.
CROS_MILESTONE="$(echo "${KOKORO_JOB_NAME}" | cut -d'/' -f 3 -)"
require_kokoro_artifacts() {
if [ -z "${KOKORO_ARTIFACTS_DIR}" ]; then
echo "This script must be run in kokoro"
exit 1
fi
}
require_cros_milestone() {
if [ -z "${CROS_MILESTONE}" ]; then
echo "CROS_MILESTONE must be set"
exit 1
fi
}
skip_in_presubmit() {
if [ -e "${KOKORO_ARTIFACTS_DIR}"/running_presubmits ]; then
echo "Skipping because this is a presubmit job"
exit 0
fi
}