The group
field for single-machine parallelism as specified in #1356 doesn’t seem to work when running the locally or when pushing to the server.
Using this .drone.yml
file:
workdir:
path: /src/
pipeline:
go:
image: golang:1.8-alpine
group: lol
commands:
- cd ./go
- go build -o drone-test
- go test
go1:
image: golang:1.8-alpine
group: lol
commands:
- cd ./go
- go build -o drone-test
- go test
and executing the following command results in what I’ve pasted below (I’ve pushed it to the drone server and it seems to also not understand it):
> drone exec
Running Matrix job #0
400 Bad Request: No command specified
Am I mistaken in thinking that this is how to do it? Is there something I am missing?