Skip to content
Snippets Groups Projects
Unverified Commit 3571355e authored by Joas Schilling's avatar Joas Schilling
Browse files

Run the app checker on all apps

parent 1951c88b
No related branches found
No related tags found
No related merge requests found
......@@ -15,18 +15,7 @@ pipeline:
checkers:
image: nextcloudci/php7.0:php7.0-7
commands:
- bash ./build/autoloaderchecker.sh
- bash ./build/mergejschecker.sh
- php ./build/translation-checker.php
- php ./build/htaccess-checker.php
- ./occ app:check-code admin_audit
- ./occ app:check-code comments
- ./occ app:check-code federation
- ./occ app:check-code sharebymail
- ./occ app:check-code systemtags
- ./occ app:check-code theming
- ./occ app:check-code workflowengine
- php ./build/signed-off-checker.php
- ./autotest-checkers.sh
when:
matrix:
TESTS: checkers
......
#!/usr/bin/env bash
#
bash ./build/autoloaderchecker.sh
bash ./build/mergejschecker.sh
php ./build/translation-checker.php
php ./build/htaccess-checker.php
for app in $(find "apps/" -mindepth 1 -maxdepth 1 -type d -printf '%f\n'); do
if
[ "$app" == "dav" ] || \
[ "$app" == "encryption" ] || \
[ "$app" == "federatedfilesharing" ] || \
[ "$app" == "files" ] || \
[ "$app" == "files_external" ] || \
[ "$app" == "files_sharing" ] || \
[ "$app" == "files_trashbin" ] || \
[ "$app" == "files_versions" ] || \
[ "$app" == "lookup_server_connector" ] || \
[ "$app" == "provisioning_api" ] || \
[ "$app" == "testing" ] || \
[ "$app" == "twofactor_backupcodes" ] || \
[ "$app" == "updatenotification" ] || \
[ "$app" == "user_ldap" ]
then
./occ app:check-code -c strong-comparison "$app"
else
./occ app:check-code "$app"
fi
RESULT=$?
done;
php ./build/signed-off-checker.php
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment