diff --git a/env/azure.mk b/env/azure.mk new file mode 100644 index 00000000..98939e7a --- /dev/null +++ b/env/azure.mk @@ -0,0 +1,26 @@ +# +# Environment definition for dry-run of the packaging process +# +# the host to publish bits to +# Temporary real pkgserver +export PKGSERVER=mirrorbrain@20.186.155.37 +export SSH_OPTS=-p 22 +export SCP_OPTS=-P 22 + +# where to put binary files +export WARDIR=/srv/releases/jenkins/war${RELEASELINE} +export MSIDIR=/srv/releases/jenkins/windows${RELEASELINE} +export DEBDIR=/srv/releases/jenkins/debian${RELEASELINE}/binary +export RPMDIR=/srv/releases/jenkins/redhat${RELEASELINE} +export SUSEDIR=/srv/releases/jenkins/opensuse${RELEASELINE} + +# where to put repository index and other web contents +export RPM_WEBDIR=${TESTDIR}/redhat${RELEASELINE} +export SUSE_WEBDIR=${TESTDIR}/opensuse${RELEASELINE} +export DEB_WEBDIR=${TESTDIR}/debian${RELEASELINE} + +# URL to the aforementioned webdir. +WEBSERVER=pkg.jenkins.io +export RPM_URL=https://${WEBSERVER}/redhat${RELEASELINE} +export SUSE_URL=https://${WEBSERVER}/opensuse${RELEASELINE} +export DEB_URL=https://${WEBSERVER}/debian${RELEASELINE}