Thanks, that indeed was the issue.
I now face another error, and the build errors with the following log:
Feb 01 11:04:54 testserver docker[30251]: {"level":"debug","machine":"b1cd1bf6e005","msg":"manager: accept stage","stage-id":11,"time":"2019-02-01T10:04:54Z"}
Feb 01 11:04:54 testserver docker[30251]: {"level":"debug","machine":"b1cd1bf6e005","msg":"manager: stage accepted","stage-id":11,"time":"2019-02-01T10:04:54Z"}
Feb 01 11:04:54 testserver docker[30251]: {"level":"debug","msg":"manager: fetching stage details","step-id":11,"time":"2019-02-01T10:04:54Z"}
Feb 01 11:04:54 testserver docker[30251]: {"arch":"arm","level":"debug","machine":"b1cd1bf6e005","msg":"runner: polling queue","os":"linux","time":"2019-02-01T10:04:54Z"}
Feb 01 11:04:54 testserver docker[30251]: {"arch":"arm","kernel":"","level":"debug","msg":"manager: request queue item","os":"linux","time":"2019-02-01T10:04:54Z","variant":""}
Feb 01 11:04:54 testserver docker[30251]: {"arch":"arm","build":11,"level":"info","machine":"b1cd1bf6e005","msg":"runner: start execution","os":"linux","pipeline":"default","repo":"nico/indium","stage":1,"time":"2019-02-01T10:04:54Z"}
Feb 01 11:04:54 testserver docker[30251]: {"arch":"arm","build":11,"level":"debug","machine":"b1cd1bf6e005","msg":"runner: watch for kill signal","os":"linux","pipeline":"default","repo":"nico/indium","stage":1,"time":"2019-02-01T10:04:54Z"}
Feb 01 11:04:54 testserver docker[30251]: {"arch":"arm","build":11,"error":"Error response from daemon: could not find an available, non-overlapping IPv4 address pool among the defaults to assign to the network","level":"info","machine":"b1cd1bf6e005","msg":"runner: execution failed","os":"linux","pipeline":"default","repo":"nico/indium","stage":1,"time":"2019-02-01T10:04:54Z"}
Here’s the .drone.yml
file:
kind: pipeline
name: default
platform:
os: linux
arch: arm
steps:
- name: test
image: alpine
commands:
- apk add emacs nodejs
- make dependencies
- make test
- make lint