forked from jenkinsci/packaging
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.mk
More file actions
20 lines (17 loc) · 691 Bytes
/
test.mk
File metadata and controls
20 lines (17 loc) · 691 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# Environment definition for dry-run of the packaging process
#
# where to put binary files
export TESTDIR=$(realpath .)/target
export WARDIR=${TESTDIR}/war${RELEASELINE}
export MSIDIR=${TESTDIR}/windows${RELEASELINE}
export DEBDIR=${TESTDIR}/debian${RELEASELINE}/binary
export RPMDIR=${TESTDIR}/rpm${RELEASELINE}
# where to put repository index and other web contents
export RPM_WEBDIR=${TESTDIR}/rpm${RELEASELINE}
export DEB_WEBDIR=${TESTDIR}/debian${RELEASELINE}
export MSI_WEBDIR=${TESTDIR}/windows${RELEASELINE}
# URL to the aforementioned webdir.
WEBSERVER=https://pkg.jenkins.io
export RPM_URL=${WEBSERVER}/rpm${RELEASELINE}
export DEB_URL=${WEBSERVER}/debian${RELEASELINE}