mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-26 20:01:02 +00:00
use drone-build container for running builds
This commit is contained in:
parent
204fba9018
commit
6fae6a56a1
1 changed files with 2 additions and 2 deletions
|
@ -33,10 +33,10 @@ var (
|
|||
|
||||
var (
|
||||
// name of the build agent container.
|
||||
DefaultAgent = "busybox"
|
||||
DefaultAgent = "drone/drone-agent"
|
||||
|
||||
// default name of the build agent executable
|
||||
DefaultEntrypoint = []string{"/bin/echo"} //[]string{"/bin/drone-agent"}
|
||||
DefaultEntrypoint = []string{"/bin/drone-agent"}
|
||||
|
||||
// default argument to invoke build steps
|
||||
DefaultBuildArgs = []string{"--build", "--clone", "--publish", "--deploy"}
|
||||
|
|
Loading…
Reference in a new issue