Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
555e0fe1
Commit
555e0fe1
authored
May 12, 2017
by
Rafael Ostertag
Browse files
Specify `pip` tmp directory via `PIP_TMP` make variable. Required to
allow concurrent builds.
parent
b00a8366
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
555e0fe1
PHPDOC
?=
support/pear/phpdoc
JSDOC
?=
jsdoc
PKG_VERSION
=
$(
shell
awk
'/version/ { print $$3
}
'
extension/ext_emconf.php |
sed
"s/'//g"
)
NIGHTLY_DATE
=
$(
shell
date
'+%Y%m%d'
)
RELEASE_DATE
=
$(
shell
date
'+%Y%m%d%H%M'
)
GIT_REVISION_SHORT
=
$(
shell
git rev-parse
--short
HEAD
||
true
)
GIT_REVISION_LONG
=
$(
shell
git rev-parse HEAD
||
true
)
EXTENSION_CONTENT
=
Classes Configuration Documentation qfq Resources ext_emconf.php ext_localconf.php ext_tables.php ext_icon.png config.qfq.example.ini RELEASE.txt
DISTDIR
=
dist
# Use by jenkins to separate temp directories used by pip in order to allow concurrent builds
PIP_TMP
?=
/tmp
all
:
archive t3sphinx
doc
:
phpdoc jsdoc plantuml
...
...
@@ -110,9 +118,12 @@ phpdoc: .phpdocinstall
mkdir
-p
doc/plantuml/php
touch
$@
.virtual_env
:
.virtual_env
:
pip-temp-directory
virtualenv .python_virtualenv
.
.python_virtualenv/bin/activate
;
pip
install
--upgrade
sphinx
==
1.5.5
.
.python_virtualenv/bin/activate
;
TMPDIR
=
"
$(PIP_TMP)
"
pip
install
--upgrade
sphinx
==
1.5.5
touch
$@
.PHONY
:
nightly maintainer-clean snapshot release git-revision t3sphinx build-dist make-dist-dir dist-move-doc dist-copy-extension
pip-temp-directory
:
test
-d
"
$(PIP_TMP)
"
||
mkdir
-p
"
$(PIP_TMP)
"
.PHONY
:
nightly maintainer-clean snapshot release git-revision t3sphinx build-dist make-dist-dir dist-move-doc dist-copy-extension pip-temp-directory
Rafael Ostertag
@rafael.ostertag
·
May 12, 2017
Author
Owner
Jenkins please retry a build
Jenkins please retry a build
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment