summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-05-14 12:31:47 +0200
committerJoas Schilling <coding@schilljs.com>2020-05-14 12:31:47 +0200
commitc83b6b50314e78565e80bbe07b7670ca9f5b1348 (patch)
tree4c632069031b3a648ce511cef576ae87b234bbca
parent312c200a3869866cff53887286825431d0bc4c6d (diff)
Remove compile checker it should be a github action when enabling it ever again
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--.drone.yml19
-rw-r--r--Makefile2
-rwxr-xr-xcheck-vuejs-builds.sh11
-rwxr-xr-xrun-stylelint.sh11
4 files changed, 0 insertions, 43 deletions
diff --git a/.drone.yml b/.drone.yml
index 04a78dd78..2e0ccc58c 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 46bf306e8..68aa4df89 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 e40aede94..000000000
--- 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 0b4344a34..000000000
--- 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