[solved] Drone pipeline don't build with Drone 0.4

Hi!
I try to use “pipeline” on my drone installation, but after cloning the project, drone seems to stop and tell me build was a success…
I try with a very little .drone.yml:

pipeline:
  build:
    image: python:3
    commands:
      - pip install requests

The output in drone is here:

[info] Pulling image plugins/drone-git:latest
Drone Git Plugin built from 43dcd64
$ git init
Initialized empty Git repository in /drone/src/bitbucket.org/y0no/test-ci/.git/
$ git remote add origin https://bitbucket.org/y0no/test-ci.git
$ git fetch --no-tags origin +refs/heads/master:
From https://bitbucket.org/y0no/test-ci
* branch            master     -> FETCH_HEAD
* [new branch]      master     -> origin/master
$ git reset --hard -q 15f7bb4a17858c16cd709109f2154f9910f10b7b

Nothing about my “pip” command. Do you know why it’s not working ?

I can see you are using drone 0.4. The pipeline block was added to drone 0.5. In order to take advantage of the pipeline and new yaml format you will need to upgrade drone.

Oh yes! The “latest” docker images is not the 0.5. So to get the latest version: “docker pull drone/drone:0.5”

Thanks!