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
c669de11
Commit
c669de11
authored
Sep 18, 2016
by
fg2it
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add options to support cross build
parent
62a2f80f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
5 deletions
+39
-5
.github/CONTRIBUTING.md
+1
-1
build.go
+38
-4
No files found.
.github/CONTRIBUTING.md
View file @
c669de11
...
...
@@ -12,7 +12,7 @@ grunt karma:dev
### Run tests for backend assets before commit
```
test -z "$(gofmt -s -l . | grep -v
vendor/src/
| tee /dev/stderr)"
test -z "$(gofmt -s -l . | grep -v
-E 'vendor/(github.com|golang.org|gopkg.in)'
| tee /dev/stderr)"
```
### Run tests for frontend assets before commit
...
...
build.go
View file @
c669de11
...
...
@@ -25,11 +25,16 @@ var (
versionRe
=
regexp
.
MustCompile
(
`-[0-9]{1,3}-g[0-9a-f]{5,10}`
)
goarch
string
goos
string
gocc
string
gocxx
string
cgo
string
pkgArch
string
version
string
=
"v1"
// deb & rpm does not support semver so have to handle their version a little differently
linuxPackageVersion
string
=
"v1"
linuxPackageIteration
string
=
""
race
bool
phjsToRelease
string
workingDir
string
binaries
[]
string
=
[]
string
{
"grafana-server"
,
"grafana-cli"
}
)
...
...
@@ -47,6 +52,11 @@ func main() {
flag
.
StringVar
(
&
goarch
,
"goarch"
,
runtime
.
GOARCH
,
"GOARCH"
)
flag
.
StringVar
(
&
goos
,
"goos"
,
runtime
.
GOOS
,
"GOOS"
)
flag
.
StringVar
(
&
gocc
,
"cc"
,
""
,
"CC"
)
flag
.
StringVar
(
&
gocxx
,
"cxx"
,
""
,
"CXX"
)
flag
.
StringVar
(
&
cgo
,
"cgo-enabled"
,
""
,
"CGO_ENABLED"
)
flag
.
StringVar
(
&
pkgArch
,
"pkg-arch"
,
""
,
"PKG ARCH"
)
flag
.
StringVar
(
&
phjsToRelease
,
"phjs"
,
""
,
"PhantomJS binary"
)
flag
.
BoolVar
(
&
race
,
"race"
,
race
,
"Use race detector"
)
flag
.
Parse
()
...
...
@@ -73,15 +83,15 @@ func main() {
grunt
(
"test"
)
case
"package"
:
grunt
(
"release"
,
fmt
.
Sprintf
(
"--pkgVer=%v-%v"
,
linuxPackageVersion
,
linuxPackageIteration
)
)
grunt
(
gruntBuildArg
(
"release"
)
...
)
createLinuxPackages
()
case
"pkg-rpm"
:
grunt
(
"release"
)
grunt
(
gruntBuildArg
(
"release"
)
...
)
createRpmPackages
()
case
"pkg-deb"
:
grunt
(
"release"
)
grunt
(
gruntBuildArg
(
"release"
)
...
)
createDebPackages
()
case
"latest"
:
...
...
@@ -258,6 +268,10 @@ func createPackage(options linuxPackageOptions) {
"-p"
,
"./dist"
,
}
if
pkgArch
!=
""
{
args
=
append
(
args
,
"-a"
,
pkgArch
)
}
if
linuxPackageIteration
!=
""
{
args
=
append
(
args
,
"--iteration"
,
linuxPackageIteration
)
}
...
...
@@ -307,9 +321,20 @@ func grunt(params ...string) {
runPrint
(
"./node_modules/.bin/grunt"
,
params
...
)
}
func
gruntBuildArg
(
task
string
)
[]
string
{
args
:=
[]
string
{
task
,
fmt
.
Sprintf
(
"--pkgVer=%v-%v"
,
linuxPackageVersion
,
linuxPackageIteration
)}
if
pkgArch
!=
""
{
args
=
append
(
args
,
fmt
.
Sprintf
(
"--arch=%v"
,
pkgArch
))
}
if
phjsToRelease
!=
""
{
args
=
append
(
args
,
fmt
.
Sprintf
(
"--phjsToRelease=%v"
,
phjsToRelease
))
}
return
args
}
func
setup
()
{
runPrint
(
"go"
,
"get"
,
"-v"
,
"github.com/kardianos/govendor"
)
runPrint
(
"go"
,
"get"
,
"-v"
,
"github.com/blang/semver"
)
runPrint
(
"go"
,
"get"
,
"-v"
,
"github.com/blang/semver"
)
runPrint
(
"go"
,
"get"
,
"-v"
,
"github.com/mattn/go-sqlite3"
)
runPrint
(
"go"
,
"install"
,
"-v"
,
"github.com/mattn/go-sqlite3"
)
}
...
...
@@ -382,6 +407,15 @@ func setBuildEnv() {
if
goarch
==
"386"
{
os
.
Setenv
(
"GO386"
,
"387"
)
}
if
cgo
!=
""
{
os
.
Setenv
(
"CGO_ENABLED"
,
cgo
)
}
if
gocc
!=
""
{
os
.
Setenv
(
"CC"
,
gocc
)
}
if
gocxx
!=
""
{
os
.
Setenv
(
"CXX"
,
gocxx
)
}
}
func
getGitSha
()
string
{
...
...
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