mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
docs: update golang requirement to 1.8
This commit is contained in:
parent
defa81e4c1
commit
79daa71350
@ -30,6 +30,7 @@
|
|||||||
## Tech
|
## Tech
|
||||||
|
|
||||||
* **Library Upgrade**: Upgraded angularjs from 1.5.8 to 1.6.1 [#7274](https://github.com/grafana/grafana/issues/7274)
|
* **Library Upgrade**: Upgraded angularjs from 1.5.8 to 1.6.1 [#7274](https://github.com/grafana/grafana/issues/7274)
|
||||||
|
* **Backend**: Grafana is now built using golang 1.8
|
||||||
|
|
||||||
## Bugfixes
|
## Bugfixes
|
||||||
* **Alerting**: Fixes missing support for no_data and execution error when testing alerts [#7149](https://github.com/grafana/grafana/issues/7149)
|
* **Alerting**: Fixes missing support for no_data and execution error when testing alerts [#7149](https://github.com/grafana/grafana/issues/7149)
|
||||||
|
@ -80,7 +80,7 @@ the latest master builds [here](http://grafana.org/builds)
|
|||||||
|
|
||||||
### Dependencies
|
### Dependencies
|
||||||
|
|
||||||
- Go 1.7.3
|
- Go 1.8
|
||||||
- NodeJS v4+
|
- NodeJS v4+
|
||||||
|
|
||||||
### Get Code
|
### Get Code
|
||||||
|
@ -7,7 +7,7 @@ clone_folder: c:\gopath\src\github.com\grafana\grafana
|
|||||||
environment:
|
environment:
|
||||||
nodejs_version: "6"
|
nodejs_version: "6"
|
||||||
GOPATH: c:\gopath
|
GOPATH: c:\gopath
|
||||||
GOVERSION: 1.7.4
|
GOVERSION: 1.8
|
||||||
|
|
||||||
install:
|
install:
|
||||||
# install nodejs and npm
|
# install nodejs and npm
|
||||||
|
2
build.go
2
build.go
@ -42,7 +42,7 @@ var (
|
|||||||
binaries []string = []string{"grafana-server", "grafana-cli"}
|
binaries []string = []string{"grafana-server", "grafana-cli"}
|
||||||
)
|
)
|
||||||
|
|
||||||
const minGoVersion = 1.7
|
const minGoVersion = 1.8
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
log.SetOutput(os.Stdout)
|
log.SetOutput(os.Stdout)
|
||||||
|
@ -13,7 +13,7 @@ dev environment. Grafana ships with its own required backend server; also comple
|
|||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
|
|
||||||
- [Go 1.7.3](https://golang.org/dl/)
|
- [Go 1.8](https://golang.org/dl/)
|
||||||
- [NodeJS](https://nodejs.org/download/)
|
- [NodeJS](https://nodejs.org/download/)
|
||||||
|
|
||||||
## Get Code
|
## Get Code
|
||||||
|
Loading…
Reference in New Issue
Block a user