Browse Source

Add CI step to verify merged vendor js

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
tags/v12.0.0beta1
Roeland Jago Douma 7 years ago
parent
commit
588f47d498
No account linked to committer's email address
2 changed files with 33 additions and 0 deletions
  1. 8
    0
      .drone.yml
  2. 25
    0
      build/mergejschecker.sh

+ 8
- 0
.drone.yml View File

@@ -19,6 +19,13 @@ pipeline:
when:
matrix:
TESTS: check-autoloader
check-mergejs:
image: nextcloudci/php7.0:php7.0-7
commands:
- bash ./build/mergejschecker.sh
when:
matrix:
TESTS: check-mergejs
app-check-code:
image: nextcloudci/php7.0:php7.0-7
commands:
@@ -493,6 +500,7 @@ matrix:
- TESTS: integration-ldap-features
- TESTS: jsunit
- TESTS: check-autoloader
- TESTS: check-mergejs
- TESTS: app-check-code
- TESTS: syntax-php5.6
- TESTS: syntax-php7.0

+ 25
- 0
build/mergejschecker.sh View File

@@ -0,0 +1,25 @@
#!/usr/bin/env bash

#Regenerate the vendors core.js
echo
echo "Regenerating core/vendor/core.js"

d=`dirname $(readlink -f $0)`

php $d/mergejs.php

files=`git diff --name-only`

for file in $files
do
if [[ $file == core/vendor/core.js ]]
then
echo "The merged vendor file is not up to date"
echo "Please run: php build/mergejs.php"
echo "And commit the result"
break
fi
done

echo "Vendor js merged as expected. Carry on"
exit 0

Loading…
Cancel
Save