mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-17 21:12:20 +01:00
Remove compile checker it should be a github action when enabling it ever again
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
312c200a38
commit
c83b6b5031
4 changed files with 0 additions and 43 deletions
19
.drone.yml
19
.drone.yml
|
|
@ -1,22 +1,3 @@
|
|||
#kind: pipeline
|
||||
#name: check-builds
|
||||
#
|
||||
#steps:
|
||||
# - name: check-vuejs-builds
|
||||
# image: nextcloudci/node:node-7
|
||||
# commands:
|
||||
# - make npm-init
|
||||
# - ./check-vuejs-builds.sh
|
||||
#
|
||||
#trigger:
|
||||
# branch:
|
||||
# - master
|
||||
# - stable*
|
||||
# event:
|
||||
# - pull_request
|
||||
# - push
|
||||
#
|
||||
#---
|
||||
kind: pipeline
|
||||
name: compatibility
|
||||
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -60,7 +60,6 @@ appstore:
|
|||
rsync -a \
|
||||
--exclude=babel.config.js \
|
||||
--exclude=/build \
|
||||
--exclude=check-vuejs-builds.sh \
|
||||
--exclude=composer.json \
|
||||
--exclude=composer.lock \
|
||||
--exclude=docs \
|
||||
|
|
@ -81,7 +80,6 @@ appstore:
|
|||
--exclude=.php_cs.dist \
|
||||
--exclude=.php_cs.cache \
|
||||
--exclude=README.md \
|
||||
--exclude=run-*lint.sh \
|
||||
--exclude=src \
|
||||
--exclude=.stylelintignore \
|
||||
--exclude=stylelint.config.js \
|
||||
|
|
|
|||
|
|
@ -1,11 +0,0 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
# Build the Vue files
|
||||
make build-js-production
|
||||
|
||||
git status
|
||||
|
||||
bash -c "[[ ! \"`git status --porcelain js`\" ]] || ( echo 'Uncommitted changes in built Vue files' && exit 1 )"
|
||||
|
||||
bash -c "[[ ! \"`git status --porcelain package-lock.json`\" ]] || ( git diff package-lock.json && echo 'Uncommitted changes in package-lock.json' && exit 1 )"
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
STYLELINT=$(which stylelint || true)
|
||||
if [ -z "$STYLELINT" ]; then
|
||||
echo "Can't find command \"stylelint\" in $PATH"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo Checking stylesheets with $STYLELINT ...
|
||||
$STYLELINT -f verbose css
|
||||
Loading…
Add table
Reference in a new issue