I have a drone instance working (thanks!!) and it is being triggered by commits to the associated Gogs repo. However, I want to be able to run drone builds locally, partially to test changes to my project without using a git commit and git push to get feedback about the drone build.
I have tried to use drone exec --local but I see no feedback aside from the following message to the console:
➜ drone exec --local
Running Matrix job #0
Questions:
How do you get output from the exec command?
Where does the exec run and is there a requirement that I am running a local drone agent?
You have an empty or missing pipeline block in your yaml. This is common when the server is running drone:0.4 but the command line utility is for drone 0.5
Your pipeline consists of only plugins steps, which are not executed by default and require extra command line flags to execute
Please provide the following information so I can advise further