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

**URL:** https://drone.discourse.group/t/solved-drone-pipeline-dont-build-with-drone-0-4/4989
**Category:** Drone Support
**Created:** [January 2, 2017, 4:28pm UTC](https://drone.discourse.group/t/solved-drone-pipeline-dont-build-with-drone-0-4/4989 "2017-01-02T16:28:31Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![y0no](https://yyz1.discourse-cdn.com/flex003/user_avatar/drone.discourse.group/y0no/32/4130_2.png) [@y0no](https://drone.discourse.group/u/y0no)
#### Post date: [January 2, 2017, 4:28pm UTC](https://drone.discourse.group/t/solved-drone-pipeline-dont-build-with-drone-0-4/4989/1 "2017-01-02T16:28:31Z")

</div>

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 ?

---

<div class="post-metadata">

### Author: ![bradrydzewski](https://yyz1.discourse-cdn.com/flex003/user_avatar/drone.discourse.group/bradrydzewski/32/3513_2.png) [@bradrydzewski](https://drone.discourse.group/u/bradrydzewski)
#### Post date: [January 2, 2017, 5:54pm UTC](https://drone.discourse.group/t/solved-drone-pipeline-dont-build-with-drone-0-4/4989/2 "2017-01-02T17:54:32Z")

</div>

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.

---

<div class="post-metadata">

### Author: ![y0no](https://yyz1.discourse-cdn.com/flex003/user_avatar/drone.discourse.group/y0no/32/4130_2.png) [@y0no](https://drone.discourse.group/u/y0no)
#### Post date: [January 2, 2017, 7:11pm UTC](https://drone.discourse.group/t/solved-drone-pipeline-dont-build-with-drone-0-4/4989/3 "2017-01-02T19:11:25Z")

</div>

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

Thanks!
