mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-26 18:30:30 +00:00
Merge branch 'master' into bbserver-cleanup
This commit is contained in:
commit
07048f9a46
4 changed files with 64 additions and 53 deletions
|
@ -3,6 +3,7 @@ package build
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Sirupsen/logrus"
|
"github.com/Sirupsen/logrus"
|
||||||
|
@ -20,6 +21,7 @@ type Pipeline struct {
|
||||||
conf *yaml.Config
|
conf *yaml.Config
|
||||||
head *element
|
head *element
|
||||||
tail *element
|
tail *element
|
||||||
|
wait sync.WaitGroup
|
||||||
pipe chan (*Line)
|
pipe chan (*Line)
|
||||||
next chan (error)
|
next chan (error)
|
||||||
done chan (error)
|
done chan (error)
|
||||||
|
@ -87,6 +89,11 @@ func (p *Pipeline) Tail() *yaml.Container {
|
||||||
// Stop stops the pipeline.
|
// Stop stops the pipeline.
|
||||||
func (p *Pipeline) Stop() {
|
func (p *Pipeline) Stop() {
|
||||||
go func() {
|
go func() {
|
||||||
|
defer func() {
|
||||||
|
if r := recover(); r != nil {
|
||||||
|
logrus.Errorln("recover stopping the pipeline", r)
|
||||||
|
}
|
||||||
|
}()
|
||||||
p.done <- ErrTerm
|
p.done <- ErrTerm
|
||||||
}()
|
}()
|
||||||
}
|
}
|
||||||
|
@ -98,9 +105,11 @@ func (p *Pipeline) Setup() error {
|
||||||
|
|
||||||
// Teardown removes the pipeline environment.
|
// Teardown removes the pipeline environment.
|
||||||
func (p *Pipeline) Teardown() {
|
func (p *Pipeline) Teardown() {
|
||||||
|
|
||||||
for _, id := range p.containers {
|
for _, id := range p.containers {
|
||||||
p.engine.ContainerRemove(id)
|
p.engine.ContainerRemove(id)
|
||||||
}
|
}
|
||||||
|
|
||||||
close(p.next)
|
close(p.next)
|
||||||
close(p.done)
|
close(p.done)
|
||||||
|
|
||||||
|
@ -114,10 +123,32 @@ func (p *Pipeline) Teardown() {
|
||||||
func (p *Pipeline) step() {
|
func (p *Pipeline) step() {
|
||||||
if p.head == p.tail {
|
if p.head == p.tail {
|
||||||
go func() {
|
go func() {
|
||||||
|
defer func() {
|
||||||
|
if r := recover(); r != nil {
|
||||||
|
logrus.Errorln("recover executing step function", r)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
|
// stop all containers
|
||||||
|
for _, id := range p.containers {
|
||||||
|
p.engine.ContainerStop(id)
|
||||||
|
}
|
||||||
|
|
||||||
|
// wait for all logs to terminate
|
||||||
|
// p.wait.Done() // this is for the ambassador
|
||||||
|
p.wait.Wait()
|
||||||
|
|
||||||
|
// signal completion
|
||||||
p.done <- nil
|
p.done <- nil
|
||||||
}()
|
}()
|
||||||
} else {
|
} else {
|
||||||
go func() {
|
go func() {
|
||||||
|
defer func() {
|
||||||
|
if r := recover(); r != nil {
|
||||||
|
logrus.Errorln("recover executing step to head function", r)
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
p.head = p.head.next
|
p.head = p.head.next
|
||||||
p.next <- nil
|
p.next <- nil
|
||||||
}()
|
}()
|
||||||
|
@ -137,17 +168,23 @@ func (p *Pipeline) close(err error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Pipeline) exec(c *yaml.Container) error {
|
func (p *Pipeline) exec(c *yaml.Container) error {
|
||||||
|
|
||||||
name, err := p.engine.ContainerStart(c)
|
name, err := p.engine.ContainerStart(c)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
p.containers = append(p.containers, name)
|
p.containers = append(p.containers, name)
|
||||||
|
|
||||||
|
logrus.Debugf("wait.add(1) for %s logs", name)
|
||||||
|
p.wait.Add(1)
|
||||||
go func() {
|
go func() {
|
||||||
defer func() {
|
defer func() {
|
||||||
if r := recover(); r != nil {
|
if r := recover(); r != nil {
|
||||||
logrus.Errorln("recover writing build output", r)
|
logrus.Errorln("recover writing build output", r)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
logrus.Debugf("wait.done() for %s logs", name)
|
||||||
|
p.wait.Done()
|
||||||
}()
|
}()
|
||||||
|
|
||||||
rc, rerr := p.engine.ContainerLogs(name)
|
rc, rerr := p.engine.ContainerLogs(name)
|
||||||
|
@ -179,17 +216,16 @@ func (p *Pipeline) exec(c *yaml.Container) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if state.OOMKilled {
|
|
||||||
return &OomError{c.Name}
|
|
||||||
} else if state.ExitCode != 0 {
|
|
||||||
return &ExitError{c.Name, state.ExitCode}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
logrus.Debugf("wait.add(1) for %s exit code", name)
|
||||||
|
p.wait.Add(1)
|
||||||
go func() {
|
go func() {
|
||||||
defer func() {
|
defer func() {
|
||||||
if r := recover(); r != nil {
|
if r := recover(); r != nil {
|
||||||
logrus.Errorln("recover writing exit code to output", r)
|
logrus.Errorln("recover writing exit code to output", r)
|
||||||
}
|
}
|
||||||
|
p.wait.Done()
|
||||||
|
logrus.Debugf("wait.done() for %s exit code", name)
|
||||||
}()
|
}()
|
||||||
|
|
||||||
p.pipe <- &Line{
|
p.pipe <- &Line{
|
||||||
|
@ -198,5 +234,12 @@ func (p *Pipeline) exec(c *yaml.Container) error {
|
||||||
Out: strconv.Itoa(state.ExitCode),
|
Out: strconv.Itoa(state.ExitCode),
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
if state.OOMKilled {
|
||||||
|
return &OomError{c.Name}
|
||||||
|
} else if state.ExitCode != 0 {
|
||||||
|
return &ExitError{c.Name, state.ExitCode}
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -43,9 +43,9 @@ func buildStart(c *cli.Context) (err error) {
|
||||||
|
|
||||||
var build *model.Build
|
var build *model.Build
|
||||||
if c.Bool("fork") {
|
if c.Bool("fork") {
|
||||||
build, err = client.BuildStart(owner, name, number)
|
|
||||||
} else {
|
|
||||||
build, err = client.BuildFork(owner, name, number)
|
build, err = client.BuildFork(owner, name, number)
|
||||||
|
} else {
|
||||||
|
build, err = client.BuildStart(owner, name, number)
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
|
@ -1,9 +1,7 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
|
||||||
"net/http"
|
"net/http"
|
||||||
"os"
|
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/drone/drone/router"
|
"github.com/drone/drone/router"
|
||||||
|
@ -263,30 +261,11 @@ var serverCmd = cli.Command{
|
||||||
Name: "stash-skip-verify",
|
Name: "stash-skip-verify",
|
||||||
Usage: "stash skip ssl verification",
|
Usage: "stash skip ssl verification",
|
||||||
},
|
},
|
||||||
//
|
|
||||||
// remove these eventually
|
|
||||||
//
|
|
||||||
|
|
||||||
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 server(c *cli.Context) error {
|
func server(c *cli.Context) error {
|
||||||
|
|
||||||
if c.Bool("agreement.ack") == false || c.Bool("agreement.fix") == false {
|
|
||||||
fmt.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)
|
||||||
|
@ -324,28 +303,3 @@ func server(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. It 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 may proceed by setting the following environment:
|
|
||||||
|
|
||||||
I_UNDERSTAND_I_AM_USING_AN_UNSTABLE_VERSION=true
|
|
||||||
I_AGREE_TO_FIX_BUGS_AND_NOT_FILE_BUGS=true
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
`
|
|
||||||
|
|
|
@ -135,6 +135,19 @@ func DeleteBuild(c *gin.Context) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if job.Status != model.StatusRunning {
|
||||||
|
c.String(400, "Cannot cancel a non-running build")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
job.Status = model.StatusKilled
|
||||||
|
job.Finished = time.Now().Unix()
|
||||||
|
if job.Started == 0 {
|
||||||
|
job.Started = job.Finished
|
||||||
|
}
|
||||||
|
job.ExitCode = 137
|
||||||
|
store.UpdateBuildJob(c, build, job)
|
||||||
|
|
||||||
bus.Publish(c, bus.NewEvent(bus.Cancelled, repo, build, job))
|
bus.Publish(c, bus.NewEvent(bus.Cancelled, repo, build, job))
|
||||||
c.String(204, "")
|
c.String(204, "")
|
||||||
}
|
}
|
||||||
|
@ -242,6 +255,7 @@ func PostBuild(c *gin.Context) {
|
||||||
build.Finished = 0
|
build.Finished = 0
|
||||||
build.Enqueued = time.Now().UTC().Unix()
|
build.Enqueued = time.Now().UTC().Unix()
|
||||||
for _, job := range jobs {
|
for _, job := range jobs {
|
||||||
|
job.Error = ""
|
||||||
job.Status = model.StatusPending
|
job.Status = model.StatusPending
|
||||||
job.Started = 0
|
job.Started = 0
|
||||||
job.Finished = 0
|
job.Finished = 0
|
||||||
|
|
Loading…
Reference in a new issue