File tree Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Expand file tree Collapse file tree 4 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 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}" \;
Original file line number Diff line number Diff line change @@ -98,6 +98,8 @@ function add_timestamp() {
9898function 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#
Original file line number Diff line number Diff line change 99 - master
1010 - v*.*.x
1111
12+ variables :
13+ DOCKER_OPT_VOLUMES : -v /hpc/local:/hpc/local
14+
1215resources :
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
Original file line number Diff line number Diff line change 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 }}
You can’t perform that action at this time.
0 commit comments