Skip to content

Commit a1563e3

Browse files
authored
Merge pull request #22 from mattip/v0.3.8
fix length of hash if used
2 parents a804491 + 293706e commit a1563e3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

OpenBLAS

travis-ci/build_steps.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function do_build_lib {
114114
&& make DYNAMIC_ARCH=1 USE_OPENMP=0 NUM_THREADS=64 BINARY=$bitness $interface64_flags > /dev/null \
115115
&& make PREFIX=$BUILD_PREFIX $interface64_flags install )
116116
stop_spinner
117-
local version=$(cd OpenBLAS && git describe --tags)
117+
local version=$(cd OpenBLAS && git describe --tags --abbrev=8)
118118
local plat_tag=$(get_distutils_platform_ex $plat)
119119
local suff=""
120120
[ -n "$suffix" ] && suff="-$suffix"
@@ -142,9 +142,9 @@ function upload_to_anaconda {
142142
anaconda -t $OPENBLAS_LIBS_STAGING_UPLOAD_TOKEN upload \
143143
--no-progress --force -u multibuild-wheels-staging \
144144
-t file -p "openblas-libs" \
145-
-v "$(cd OpenBLAS && git describe --tags)" \
145+
-v "$(cd OpenBLAS && git describe --tags --abbrev=8)" \
146146
-d "OpenBLAS for multibuild wheels" \
147147
-s "OpenBLAS for multibuild wheels" \
148148
libs/openblas*.tar.gz
149149
fi
150-
}
150+
}

0 commit comments

Comments
 (0)