ci: set non-empty neo tag if it is not found

Signed-off-by: Naklicki, Mateusz <mateusz.naklicki@intel.com>
This commit is contained in:
Naklicki, Mateusz
2024-01-26 14:52:08 +00:00
committed by Compute-Runtime-Automation
parent 80aed86c33
commit f797a8371b
2 changed files with 4 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env bash
#
# Copyright (C) 2021-2022 Intel Corporation
# Copyright (C) 2021-2024 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
@@ -17,6 +17,7 @@ get_l0_gpu_driver_version() {
unset __NEO_L0_VERSION_MINOR_TMP
__NEO_TAG_TMP=$(git -C ${REPO_DIR} describe --abbrev=1 --tags | awk -F"." '{ nn=split($NF, nfa, "."); if(nn==2) {printf("%s-%s", nfa[1], nfa[2]);} else {print $NF;} }')
NEO_TAG="${NEO_TAG:-$__NEO_TAG_TMP}"
NEO_TAG="${NEO_TAG:-9999}"
unset __NEO_TAG_TMP
__NEO_L0_VERSION_PATCH_TMP=$(echo $NEO_TAG | awk -F '-' '{ print $1; }' | sed 's/^0*//')
NEO_L0_VERSION_PATCH="${NEO_L0_VERSION_PATCH:-$__NEO_L0_VERSION_PATCH_TMP}"

View File

@@ -1,7 +1,7 @@
#!/usr/bin/env bash
#
# Copyright (C) 2021-2022 Intel Corporation
# Copyright (C) 2021-2024 Intel Corporation
#
# SPDX-License-Identifier: MIT
#
@@ -20,6 +20,7 @@ get_opencl_version() {
unset __NEO_OCL_VERSION_MINOR_TMP
__NEO_TAG_TMP=$(git -C ${REPO_DIR} describe --abbrev=1 --tags | awk -F"." '{ nn=split($NF, nfa, "."); if(nn==2) {printf("%s-%s", nfa[1], nfa[2]);} else {print $NF;} }')
NEO_TAG="${NEO_TAG:-$__NEO_TAG_TMP}"
NEO_TAG="${NEO_TAG:-9999}"
unset __NEO_TAG_TMP
__NEO_OCL_VERSION_BUILD_TMP=$(echo $NEO_TAG | awk -F '-' '{ print $1; }' | sed 's/^0*//')
NEO_OCL_VERSION_BUILD="${NEO_OCL_VERSION_BUILD:-$__NEO_OCL_VERSION_BUILD_TMP}"