X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=Makefile;h=181b61c4c476c1f3f16b5bfeb39789b9ea090bcd;hb=5a09b5fffd2038a7953197bc38a01060edfd192e;hp=b13d0561318c93296415622f0a2fbb2d03b25d58;hpb=7be2a2d5f4078ba97b3281f2b5c33ae9bd337be5;p=github%2Fshaarli%2FShaarli.git diff --git a/Makefile b/Makefile index b13d0561..181b61c4 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ BIN = vendor/bin -all: static_analysis_summary check_permissions test +all: check_permissions test ## # Docker test adapter @@ -27,10 +27,6 @@ PHPCS := $(BIN)/phpcs code_sniffer: @$(PHPCS) -### - errors filtered by coding standard: PEAR, PSR1, PSR2, Zend... -PHPCS_%: - @$(PHPCS) --report-full --report-width=200 --standard=$* - ### - errors by Git author code_sniffer_blame: @$(PHPCS) --report-gitblame @@ -80,10 +76,15 @@ locale_test_%: --testsuite language-$(firstword $(subst _, ,$*)) all_tests: test locale_test_de_DE locale_test_en_US locale_test_fr_FR - @$(BIN)/phpcov merge --html coverage coverage + @# --The current version is not compatible with PHP 7.2 + @#$(BIN)/phpcov merge --html coverage coverage @# --text doesn't work with phpunit 4.* (v5 requires PHP 5.6) @#$(BIN)/phpcov merge --text coverage/txt coverage +### download 3rd-party PHP libraries, including dev dependencies +composer_dependencies_dev: clean + composer install --prefer-dist + ## # Custom release archive generation # @@ -122,7 +123,8 @@ release_tar: composer_dependencies htmldoc translate build_frontend ### generate a release zip and include 3rd-party dependencies and translations release_zip: composer_dependencies htmldoc translate build_frontend git archive --prefix=$(ARCHIVE_PREFIX) -o $(ARCHIVE_VERSION).zip -9 HEAD - mkdir -p $(ARCHIVE_PREFIX)/{doc,vendor} + mkdir -p $(ARCHIVE_PREFIX)/doc + mkdir -p $(ARCHIVE_PREFIX)/vendor rsync -a doc/html/ $(ARCHIVE_PREFIX)doc/html/ zip -r $(ARCHIVE_VERSION).zip $(ARCHIVE_PREFIX)doc/ rsync -a vendor/ $(ARCHIVE_PREFIX)vendor/ @@ -146,11 +148,6 @@ authors: @git shortlog -sne > AUTHORS @rm .mailmap -### generate Doxygen documentation -doxygen: clean - @rm -rf doxygen - @doxygen Doxyfile - ### generate phpDocumentor documentation phpdoc: clean @docker run --rm -v $(PWD):/data -u `id -u`:`id -g` phpdoc/phpdoc @@ -159,6 +156,7 @@ phpdoc: clean htmldoc: python3 -m venv venv/ bash -c 'source venv/bin/activate; \ + pip install wheel; \ pip install mkdocs; \ mkdocs build --clean' find doc/html/ -type f -exec chmod a-x '{}' \; @@ -173,7 +171,8 @@ translate: eslint: @yarn run eslint -c .dev/.eslintrc.js assets/vintage/js/ @yarn run eslint -c .dev/.eslintrc.js assets/default/js/ + @yarn run eslint -c .dev/.eslintrc.js assets/common/js/ ### Run CSSLint check against Shaarli's SCSS files sasslint: - @yarn run sass-lint -c .dev/.sasslintrc 'assets/default/scss/*.scss' -v -q + @yarn run stylelint --config .dev/.stylelintrc.js 'assets/default/scss/*.scss'