mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 20:01:02 +00:00
bump version
This commit is contained in:
parent
a9863ab986
commit
ef9b32378b
2 changed files with 42 additions and 1 deletions
|
@ -35,7 +35,7 @@ publish:
|
||||||
password: $$DOCKER_PASS
|
password: $$DOCKER_PASS
|
||||||
email: $$DOCKER_EMAIL
|
email: $$DOCKER_EMAIL
|
||||||
repo: drone/drone
|
repo: drone/drone
|
||||||
tag: [ "latest" ]
|
tag: [ "latest", "0.4.2" ]
|
||||||
when:
|
when:
|
||||||
repo: drone/drone
|
repo: drone/drone
|
||||||
branch: master
|
branch: master
|
||||||
|
|
|
@ -2,6 +2,7 @@ package server
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/drone/drone/router"
|
"github.com/drone/drone/router"
|
||||||
|
@ -48,11 +49,26 @@ var ServeCmd = cli.Command{
|
||||||
Name: "experimental",
|
Name: "experimental",
|
||||||
Usage: "start the server with experimental features",
|
Usage: "start the server with experimental features",
|
||||||
},
|
},
|
||||||
|
cli.BoolFlag{
|
||||||
|
Name: "agreement.ack",
|
||||||
|
EnvVar: "I_UNDERSTAND_I_AM_USING_AN_UNSTABLE_VERSION",
|
||||||
|
Usage: "agree to terms of use.",
|
||||||
|
},
|
||||||
|
cli.BoolFlag{
|
||||||
|
Name: "agreement.fix",
|
||||||
|
EnvVar: "I_AGREE_TO_FIX_BUGS_AND_NOT_FILE_BUGS",
|
||||||
|
Usage: "agree to terms of use.",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
func start(c *cli.Context) error {
|
func start(c *cli.Context) error {
|
||||||
|
|
||||||
|
if c.Bool("agreement.ack") == false || c.Bool("agreement.fix") == false {
|
||||||
|
println(agreement)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
|
||||||
// debug level if requested by user
|
// debug level if requested by user
|
||||||
if c.Bool("debug") {
|
if c.Bool("debug") {
|
||||||
logrus.SetLevel(logrus.DebugLevel)
|
logrus.SetLevel(logrus.DebugLevel)
|
||||||
|
@ -87,3 +103,28 @@ func start(c *cli.Context) error {
|
||||||
handler,
|
handler,
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var agreement = `
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
You are attempting to use the unstable channel. This build is experimental and
|
||||||
|
has known bugs and compatibility issues, and is not intended for general use.
|
||||||
|
|
||||||
|
Please consider using the latest stable release instead:
|
||||||
|
|
||||||
|
drone/drone:0.4.2
|
||||||
|
|
||||||
|
If you are attempting to build from source please use the latest stable tag:
|
||||||
|
|
||||||
|
v0.4.2
|
||||||
|
|
||||||
|
If you are interested in testing this experimental build and assisting with
|
||||||
|
development you will need to set the following environment variables to proceed:
|
||||||
|
|
||||||
|
I_UNDERSTAND_I_AM_USING_AN_UNSTABLE_VERSION=true
|
||||||
|
I_AGREE_TO_FIX_BUGS_AND_NOT_FILE_BUGS=true
|
||||||
|
|
||||||
|
|
||||||
|
---
|
||||||
|
`
|
||||||
|
|
Loading…
Reference in a new issue