Skip to content

Commit 0e6ef8e

Browse files
authored
Merge pull request #8823 from Al3xR01/topic/fix_v1.14_release
AZP/RELEASE: Fixes for v1.14 release
2 parents bf9ee30 + 301bed3 commit 0e6ef8e

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

buildlib/az-distro-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ jobs:
6565
- bash: |
6666
set -eEx
6767
cd pkg-build
68+
echo 10 > debian/compat # https://www.debian.org/doc/manuals/maint-guide/dother.en.html#compat
69+
sed -i 's|./contrib|../contrib|' debian/rules # Hack
6870
dpkg-buildpackage -us -uc
6971
find .. -name '*.deb'
7072
find .. -name '*.deb' -exec cp {} "../${AZ_ARTIFACT_NAME}" \;

buildlib/az-helpers.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ function add_timestamp() {
9898
function az_init_modules() {
9999
. /etc/profile.d/modules.sh
100100
export MODULEPATH="/hpc/local/etc/modulefiles:$MODULEPATH"
101+
# Read module files (W/A if there're some network instabilities lead to autofs issues)
102+
find /hpc/local/etc/modulefiles > /dev/null || true
101103
}
102104

103105
#

buildlib/azure-pipelines-release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,14 @@ pr:
99
- master
1010
- v*.*.x
1111

12+
variables:
13+
DOCKER_OPT_VOLUMES: -v /hpc/local:/hpc/local
14+
1215
resources:
1316
containers:
1417
- container: centos7_cuda11
1518
image: rdmz-harbor.rdmz.labs.mlnx/ucx/centos7-mofed5-cuda11:2
19+
options: $(DOCKER_OPT_VOLUMES)
1620
- container: centos8_cuda11
1721
image: rdmz-harbor.rdmz.labs.mlnx/ucx/centos8-mofed5-cuda11:2
1822
- container: ubuntu16_cuda11

buildlib/jucx/jucx-publish.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,12 @@ jobs:
5656
name: publicKey
5757

5858
- bash: |
59+
source buildlib/az-helpers.sh
60+
az_init_modules
61+
az_module_load dev/mvn
62+
# use the lowest supported Java version for compatibility:
63+
az_module_load dev/jdk-1.8
64+
mvn --version
5965
mkdir ${{ parameters.gpg_dir }}
6066
export GPG_TTY=`tty`
6167
chmod 700 ${{ parameters.gpg_dir }}

0 commit comments

Comments
 (0)