Skip to content

Commit 0cf1e61

Browse files
committed
remove custom tooling
1 parent eeaf18b commit 0cf1e61

File tree

6 files changed

+118
-142
lines changed

6 files changed

+118
-142
lines changed

.bumpversion.cfg

Lines changed: 0 additions & 8 deletions
This file was deleted.

.circleci/config.yml

Lines changed: 113 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,13 +115,126 @@ jobs:
115115
- run:
116116
name: Package Distribution
117117
command: npx grafana-toolkit plugin:ci-package
118+
- persist_to_workspace:
119+
root: .
120+
paths:
121+
- ci/jobs/package
122+
- ci/packages
123+
- ci/dist
124+
- ci/grafana-test-env
125+
test_6_2_5:
126+
docker:
127+
- image: circleci/node:10-browsers
128+
working_directory: ~/plugin
129+
steps:
130+
- checkout
131+
- attach_workspace:
132+
at: .
133+
- restore_cache:
134+
keys:
135+
- yarn-packages-{{ checksum "yarn.lock" }}
136+
- run:
137+
name: Setup Grafana (local install)
138+
command: |
139+
wget https://dl.grafana.com/oss/release/grafana_6.2.5_amd64.deb
140+
sudo apt-get install -y adduser libfontconfig1
141+
sudo dpkg -i grafana_6.2.5_amd64.deb
142+
sudo apt-get install locate
143+
sudo updatedb
144+
sudo locate grafana
145+
sudo cat /etc/grafana/grafana.ini
146+
sudo echo ------------------------
147+
sudo cp ci/grafana-test-env/custom.ini /usr/share/grafana/conf/custom.ini
148+
sudo cp ci/grafana-test-env/custom.ini /etc/grafana/grafana.ini
149+
sudo service grafana-server start
150+
sudo grafana-cli --version
151+
- run:
152+
name: Run e2e tests
153+
command: |
154+
npx grafana-toolkit plugin:ci-test
155+
- persist_to_workspace:
156+
root: .
157+
paths:
158+
- ci/jobs/test_6_2_5
159+
- store_test_results:
160+
path: ci/jobs/test_6_2_5
161+
- store_artifacts:
162+
path: ci/jobs/test_6_2_5
163+
test_6_3_0_beta1:
164+
docker:
165+
- image: circleci/node:10-browsers
166+
working_directory: ~/plugin
167+
steps:
168+
- checkout
169+
- attach_workspace:
170+
at: .
171+
- restore_cache:
172+
keys:
173+
- yarn-packages-{{ checksum "yarn.lock" }}
174+
- run:
175+
name: Setup Grafana (local install)
176+
command: |
177+
wget https://dl.grafana.com/oss/release/grafana_6.3.0-beta1_amd64.deb
178+
sudo apt-get install -y adduser libfontconfig1
179+
sudo dpkg -i grafana_6.3.0-beta1_amd64.deb
180+
sudo apt-get install locate
181+
sudo updatedb
182+
sudo locate grafana
183+
sudo cat /etc/grafana/grafana.ini
184+
sudo echo ------------------------
185+
sudo cp ci/grafana-test-env/custom.ini /usr/share/grafana/conf/custom.ini
186+
sudo cp ci/grafana-test-env/custom.ini /etc/grafana/grafana.ini
187+
sudo service grafana-server start
188+
sudo grafana-cli --version
189+
- run:
190+
name: Run e2e tests
191+
command: |
192+
npx grafana-toolkit plugin:ci-test
193+
- persist_to_workspace:
194+
root: .
195+
paths:
196+
- ci/jobs/test_6_3_0_beta1
197+
- store_test_results:
198+
path: ci/jobs/test_6_3_0_beta1
199+
- store_artifacts:
200+
path: ci/jobs/test_6_3_0_beta1
201+
report:
202+
docker:
203+
- image: circleci/node:10
204+
working_directory: ~/plugin
205+
steps:
206+
- checkout
207+
- attach_workspace:
208+
at: .
209+
- restore_cache:
210+
keys:
211+
- yarn-packages-{{ checksum "yarn.lock" }}
212+
- run:
213+
name: Toolkit Report
214+
command: npx grafana-toolkit plugin:ci-report
118215
- store_artifacts:
119216
path: ci
120217
workflows:
121218
version: 2
122219
plugin_workflow:
123220
jobs:
124221
- build_plugin
222+
- build_osx
223+
- build_win64
224+
- build_docs
125225
- package:
126226
requires:
127227
- build_plugin
228+
- build_osx
229+
- build_win64
230+
- build_docs
231+
- test_6_2_5:
232+
requires:
233+
- package
234+
- test_6_3_0_beta1:
235+
requires:
236+
- package
237+
- report:
238+
requires:
239+
- test_6_2_5
240+
- test_6_3_0_beta1

CHANGELOG.md

Lines changed: 2 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,11 @@
11
# Changelog
22

33

4-
## In progress
5-
- Fix release tooling.
6-
7-
8-
## v0.4.0
9-
- Rename to `grafana-worldmap-panel-ng` to allow side-by-side installation
10-
with upstream *Grafana Worldmap Panel 0.2.0*.
11-
- Remove `/dist` folder from source code repository.
12-
- Add release tooling.
13-
14-
154
## v0.3.0
165

176
- Add new mapping options `table+json` and `table+jsonp` to retrieve
187
location information from JSON endpoint, even for table data.
19-
The lookup key is the value obtained from the database field
8+
The lookup key is the value obtained from the database field
209
designated by `tableQueryOptions.labelLocationKeyField`.
2110
- Add `autoPanLabels` and `autoWidthLabels` to visual option settings.
2211
- Add `zoomControl` and `attributionControl` to visual option settings.
@@ -87,7 +76,7 @@
8776
## v0.1.0
8877

8978
- Configuration option for turning mouse wheel zoom on or off. [#140](https://github.com/grafana/worldmap-panel/issues/140) Thanks [@Perlovka](https://github.com/Perlovka)
90-
- Upgrade to Leaflet JS [#132](https://github.com/grafana/worldmap-panel/pull/132) Thanks [@cbarbier](https://github.com/cbarbier)
79+
- Upgrade to Leaflet JS [#132](https://github.com/grafana/worldmap-panel/pull/132) Thanks [@cbarbier](https://github.com/cbarbier)
9180

9281
## v0.0.21
9382

Makefile

Lines changed: 0 additions & 118 deletions
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "grafana-worldmap-panel-ng",
3-
"version": "0.4.0",
3+
"version": "0.3.0",
44
"description": "Worldmap Panel Plugin for Grafana",
55
"scripts": {
66
"build": "grafana-toolkit plugin:build",

src/plugin.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"type": "panel",
3-
"name": "Worldmap Panel NG",
4-
"id": "grafana-worldmap-ng-panel",
3+
"name": "Worldmap Panel",
4+
"id": "grafana-worldmap-panel",
55

66
"info": {
77
"description": "World Map panel for Grafana. Displays time series data or geohash data on a world map.",

0 commit comments

Comments
 (0)