Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
d0621b60
Unverified
Commit
d0621b60
authored
Aug 19, 2020
by
Arve Knudsen
Committed by
GitHub
Aug 19, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drone: Fix order of steps (#27076)
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
parent
66051008
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
36 deletions
+36
-36
.drone.yml
+32
-32
scripts/lib.star
+4
-4
No files found.
.drone.yml
View file @
d0621b60
...
@@ -62,43 +62,43 @@ steps:
...
@@ -62,43 +62,43 @@ steps:
depends_on
:
depends_on
:
-
initialize
-
initialize
-
name
:
build
-backend
-
name
:
test
-backend
image
:
grafana/build-container:1.2.24
image
:
grafana/build-container:1.2.24
commands
:
commands
:
-
./bin/grabpl build-backend --jobs 8 --edition oss --build-id $DRONE_BUILD_NUMBER --variants linux-x64,linux-x64-musl,osx64,win64 --no-pull-enterprise
-
./bin/grabpl test-backend
-
./bin/grabpl integration-tests
depends_on
:
depends_on
:
-
initialize
-
initialize
-
lint-backend
-
lint-backend
-
test-backend
-
name
:
build
-frontend
-
name
:
test
-frontend
image
:
grafana/build-container:1.2.24
image
:
grafana/build-container:1.2.24
commands
:
commands
:
-
./bin/grabpl build-frontend --jobs 8 --no-install-deps --edition oss --build-id $DRONE_BUILD_NUMBER --no-pull-enterprise
-
yarn run prettier:check
-
yarn run packages:typecheck
-
yarn run typecheck
-
yarn run test
environment
:
TEST_MAX_WORKERS
:
50%
depends_on
:
depends_on
:
-
initialize
-
initialize
-
test-frontend
-
name
:
test
-backend
-
name
:
build
-backend
image
:
grafana/build-container:1.2.24
image
:
grafana/build-container:1.2.24
commands
:
commands
:
-
./bin/grabpl test-backend
-
./bin/grabpl build-backend --jobs 8 --edition oss --build-id $DRONE_BUILD_NUMBER --variants linux-x64,linux-x64-musl,osx64,win64 --no-pull-enterprise
-
./bin/grabpl integration-tests
depends_on
:
depends_on
:
-
initialize
-
initialize
-
lint-backend
-
lint-backend
-
test-backend
-
name
:
test
-frontend
-
name
:
build
-frontend
image
:
grafana/build-container:1.2.24
image
:
grafana/build-container:1.2.24
commands
:
commands
:
-
yarn run prettier:check
-
./bin/grabpl build-frontend --jobs 8 --no-install-deps --edition oss --build-id $DRONE_BUILD_NUMBER --no-pull-enterprise
-
yarn run packages:typecheck
-
yarn run typecheck
-
yarn run test
environment
:
TEST_MAX_WORKERS
:
50%
depends_on
:
depends_on
:
-
initialize
-
initialize
-
test-frontend
-
name
:
build-plugins
-
name
:
build-plugins
image
:
grafana/build-container:1.2.24
image
:
grafana/build-container:1.2.24
...
@@ -289,43 +289,43 @@ steps:
...
@@ -289,43 +289,43 @@ steps:
depends_on
:
depends_on
:
-
initialize
-
initialize
-
name
:
build
-backend
-
name
:
test
-backend
image
:
grafana/build-container:1.2.24
image
:
grafana/build-container:1.2.24
commands
:
commands
:
-
./bin/grabpl build-backend --jobs 8 --edition oss --build-id $DRONE_BUILD_NUMBER
-
./bin/grabpl test-backend
-
./bin/grabpl integration-tests
depends_on
:
depends_on
:
-
initialize
-
initialize
-
lint-backend
-
lint-backend
-
test-backend
-
name
:
build
-frontend
-
name
:
test
-frontend
image
:
grafana/build-container:1.2.24
image
:
grafana/build-container:1.2.24
commands
:
commands
:
-
./bin/grabpl build-frontend --jobs 8 --no-install-deps --edition oss --build-id $DRONE_BUILD_NUMBER --no-pull-enterprise
-
yarn run prettier:check
-
yarn run packages:typecheck
-
yarn run typecheck
-
yarn run test
environment
:
TEST_MAX_WORKERS
:
50%
depends_on
:
depends_on
:
-
initialize
-
initialize
-
test-frontend
-
name
:
test
-backend
-
name
:
build
-backend
image
:
grafana/build-container:1.2.24
image
:
grafana/build-container:1.2.24
commands
:
commands
:
-
./bin/grabpl test-backend
-
./bin/grabpl build-backend --jobs 8 --edition oss --build-id $DRONE_BUILD_NUMBER
-
./bin/grabpl integration-tests
depends_on
:
depends_on
:
-
initialize
-
initialize
-
lint-backend
-
lint-backend
-
test-backend
-
name
:
test
-frontend
-
name
:
build
-frontend
image
:
grafana/build-container:1.2.24
image
:
grafana/build-container:1.2.24
commands
:
commands
:
-
yarn run prettier:check
-
./bin/grabpl build-frontend --jobs 8 --no-install-deps --edition oss --build-id $DRONE_BUILD_NUMBER --no-pull-enterprise
-
yarn run packages:typecheck
-
yarn run typecheck
-
yarn run test
environment
:
TEST_MAX_WORKERS
:
50%
depends_on
:
depends_on
:
-
initialize
-
initialize
-
test-frontend
-
name
:
build-plugins
-
name
:
build-plugins
image
:
grafana/build-container:1.2.24
image
:
grafana/build-container:1.2.24
...
...
scripts/lib.star
View file @
d0621b60
...
@@ -32,10 +32,10 @@ def pr_pipelines(edition):
...
@@ -32,10 +32,10 @@ def pr_pipelines(edition):
lint_backend_step(edition),
lint_backend_step(edition),
codespell_step(),
codespell_step(),
shellcheck_step(),
shellcheck_step(),
build_backend_step(edition=edition, variants=variants),
build_frontend_step(edition=edition),
test_backend_step(),
test_backend_step(),
test_frontend_step(),
test_frontend_step(),
build_backend_step(edition=edition, variants=variants),
build_frontend_step(edition=edition),
build_plugins_step(edition=edition),
build_plugins_step(edition=edition),
package_step(edition=edition, variants=variants),
package_step(edition=edition, variants=variants),
e2e_tests_server_step(),
e2e_tests_server_step(),
...
@@ -81,10 +81,10 @@ def master_pipelines(edition):
...
@@ -81,10 +81,10 @@ def master_pipelines(edition):
lint_backend_step(edition),
lint_backend_step(edition),
codespell_step(),
codespell_step(),
shellcheck_step(),
shellcheck_step(),
build_backend_step(edition=edition),
build_frontend_step(edition=edition),
test_backend_step(),
test_backend_step(),
test_frontend_step(),
test_frontend_step(),
build_backend_step(edition=edition),
build_frontend_step(edition=edition),
build_plugins_step(edition=edition),
build_plugins_step(edition=edition),
package_step(edition=edition),
package_step(edition=edition),
e2e_tests_server_step(),
e2e_tests_server_step(),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment