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
d4d9af9c
Unverified
Commit
d4d9af9c
authored
May 21, 2020
by
Arve Knudsen
Committed by
GitHub
May 21, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
CircleCI: Upgrade build pipeline tool (#24968)
Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
parent
77633db0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
2 deletions
+12
-2
.circleci/config.yml
+12
-2
No files found.
.circleci/config.yml
View file @
d4d9af9c
...
...
@@ -56,7 +56,7 @@ commands:
-
run
:
name
:
"
Install
Grafana
build
pipeline
tool"
command
:
|
VERSION=0.4.
8
VERSION=0.4.
9
curl -fLO https://grafana-downloads.storage.googleapis.com/grafana-build-pipeline/v${VERSION}/grabpl
chmod +x grabpl
mv grabpl /tmp
...
...
@@ -155,7 +155,17 @@ jobs:
-
node_modules
-
run
:
name
:
Build Grafana frontend
command
:
/tmp/grabpl build-frontend --edition << parameters.edition >>
command
:
|
if [[ -n $CIRCLE_TAG ]]; then
# A release build
/tmp/grabpl build-frontend --edition << parameters.edition >> $CIRCLE_TAG
elif [[ $CIRCLE_BRANCH == "chore/test-release-pipeline" ]]; then
# We're testing the release pipeline
/tmp/grabpl build-frontend --edition << parameters.edition >> 7.0.0-test
else
# A master or PR build
/tmp/grabpl build-frontend --edition << parameters.edition >> --build-id $CIRCLE_WORKFLOW_ID
fi
-
run
:
name
:
Move artifacts
command
:
mkdir << parameters.edition >> && cp -r public << parameters.edition >>/
...
...
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