diff --git a/grafana/plugins/scylla-plugin/.circleci/config.yml b/grafana/plugins/scylla-plugin/.circleci/config.yml deleted file mode 100644 index a44546562..000000000 --- a/grafana/plugins/scylla-plugin/.circleci/config.yml +++ /dev/null @@ -1,75 +0,0 @@ -version: 2.1 - -parameters: - ssh-fingerprint: - type: string - default: ${GITHUB_SSH_FINGERPRINT} - -aliases: - # Workflow filters - - &filter-only-master - branches: - only: master - - &filter-only-release - branches: - only: /^v[1-9]*[0-9]+\.[1-9]*[0-9]+\.x$/ - -workflows: - plugin_workflow: - jobs: - - build - -executors: - default_exec: # declares a reusable executor - docker: - - image: srclosson/grafana-plugin-ci-alpine:latest - e2e_exec: - docker: - - image: srclosson/grafana-plugin-ci-e2e:latest - -jobs: - build: - executor: default_exec - steps: - - checkout - - restore_cache: - name: restore node_modules - keys: - - build-cache-{{ .Environment.CACHE_VERSION }}-{{ checksum "yarn.lock" }} - - run: - name: Install dependencies - command: | - mkdir ci - [ -f ~/project/node_modules/.bin/grafana-toolkit ] || yarn install --frozen-lockfile - - save_cache: - name: save node_modules - paths: - - ~/project/node_modules - key: build-cache-{{ .Environment.CACHE_VERSION }}-{{ checksum "yarn.lock" }} - - run: - name: Build and test frontend - command: ./node_modules/.bin/grafana-toolkit plugin:ci-build - - run: - name: Build backend - command: mage -v buildAll - - run: - name: Test backend - command: | - mage -v lint - mage -v coverage - - run: - name: Move results to ci folder - command: ./node_modules/.bin/grafana-toolkit plugin:ci-build --finish - - run: - name: Package distribution - command: | - ./node_modules/.bin/grafana-toolkit plugin:ci-package - - persist_to_workspace: - root: . - paths: - - ci/jobs/package - - ci/packages - - ci/dist - - ci/grafana-test-env - - store_artifacts: - path: ci \ No newline at end of file diff --git a/grafana/plugins/scylla-plugin/.editorconfig b/grafana/plugins/scylla-plugin/.editorconfig deleted file mode 100644 index ba4e65a47..000000000 --- a/grafana/plugins/scylla-plugin/.editorconfig +++ /dev/null @@ -1,16 +0,0 @@ -# http://editorconfig.org -root = true - -[*] -indent_style = space -indent_size = 2 -charset = utf-8 -trim_trailing_whitespace = true -insert_final_newline = true -max_line_length = 120 - -[*.{js,ts,tsx,scss}] -quote_type = single - -[*.md] -trim_trailing_whitespace = false diff --git a/grafana/plugins/scylla-plugin/.gitignore b/grafana/plugins/scylla-plugin/.gitignore deleted file mode 100644 index f2e764571..000000000 --- a/grafana/plugins/scylla-plugin/.gitignore +++ /dev/null @@ -1,32 +0,0 @@ -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -jest.config.js - -node_modules/ - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# Compiled binary addons (https://nodejs.org/api/addons.html) -dist/ -artifacts/ -work/ -ci/ -e2e-results/ - -# Editor -.idea -.project diff --git a/grafana/plugins/scylla-plugin/.prettierrc.js b/grafana/plugins/scylla-plugin/.prettierrc.js deleted file mode 100644 index 21cece86f..000000000 --- a/grafana/plugins/scylla-plugin/.prettierrc.js +++ /dev/null @@ -1,3 +0,0 @@ -module.exports = { - ...require("./node_modules/@grafana/toolkit/src/config/prettier.plugin.config.json"), -}; \ No newline at end of file