diff --git a/.drone.yml b/.drone.yml index 04a78dd78b..2e0ccc58c3 100644 --- a/.drone.yml +++ b/.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 diff --git a/Makefile b/Makefile index 46bf306e8e..68aa4df891 100644 --- a/Makefile +++ b/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 \ diff --git a/check-vuejs-builds.sh b/check-vuejs-builds.sh deleted file mode 100755 index e40aede94e..0000000000 --- a/check-vuejs-builds.sh +++ /dev/null @@ -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 )" diff --git a/run-stylelint.sh b/run-stylelint.sh deleted file mode 100755 index 0b4344a34c..0000000000 --- a/run-stylelint.sh +++ /dev/null @@ -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