We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfd476e commit bdfc1b9Copy full SHA for bdfc1b9
.cds/gridinit-build.pip.yml
@@ -42,7 +42,8 @@ jobs:
42
cat $0
43
set -ex
44
export CC=clang
45
- cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_VERBOSE_MAKEFILE=TRUE -DCMAKE_INSTALL_PREFIX=/usr .
+ API_VERSION=$(git describe --tags)
46
+ cmake -DAPI_VERSION="$API_VERSION" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DCMAKE_VERBOSE_MAKEFILE=TRUE -DCMAKE_INSTALL_PREFIX=/usr .
47
make -j 8
48
make install
49
- name: Test gridinit
debian/rules
@@ -10,6 +10,7 @@ include /usr/share/dpkg/default.mk
10
override_dh_auto_configure:
11
for i in debian/patches/*.patch; do patch -f -p1 < $$i; done
12
dh_auto_configure -- \
13
+ -DAPI_VERSION=$$VERSION \
14
-DPREFIX=/usr \
15
-DLD_LIBDIR=lib \
16
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
0 commit comments