Skip to content

Commit

Permalink
added wercker CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
buaazp committed Jun 22, 2015
1 parent c28b1ce commit 4f53b05
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
@@ -1,4 +1,4 @@
#zimg#
# zimg


Project zimg is a lightweight image storage and processing system. It's written in C and it has high performance in image field. The zimg is designed for high concurrency image server. It supports many features for storing and processing images.
Expand All @@ -7,8 +7,7 @@ Homepage: [zimg.buaa.us](http://zimg.buaa.us/)
Author: [@招牌疯子](http://weibo.com/819880808)
Contact me: zp@buaa.us

[![Build Status](https://travis-ci.org/buaazp/zimg.svg?branch=master)](https://travis-ci.org/buaazp/zimg)
[![Build Status](https://drone.io/github.com/buaazp/zimg/status.png)](https://drone.io/github.com/buaazp/zimg/latest)
[![Build Status](https://travis-ci.org/buaazp/zimg.svg?branch=master)](https://travis-ci.org/buaazp/zimg) [![wercker status](https://app.wercker.com/status/88aead2017ceb80b32fad3dc8997227a/s "wercker status")](https://app.wercker.com/project/bykey/88aead2017ceb80b32fad3dc8997227a) [![Build Status](https://drone.io/github.com/buaazp/zimg/status.png)](https://drone.io/github.com/buaazp/zimg/latest)

### Versions:
- 09/09/2014 - zimg 3.1.0 Release. New generation.
Expand Down
56 changes: 56 additions & 0 deletions wercker.yml
@@ -0,0 +1,56 @@
# This references a standard debian container from the
# Docker Hub https://registry.hub.docker.com/_/debian/
# Read more about containers on our dev center
# http://devcenter.wercker.com/docs/containers/index.html
box: ubuntu
# You can also use services such as databases. Read more on our dev center:
# http://devcenter.wercker.com/docs/services/index.html
# services:
# - postgres
# http://devcenter.wercker.com/docs/services/postgresql.html

# - mongodb
# http://devcenter.wercker.com/docs/services/mongodb.html

# This is the build pipeline. Pipelines are the core of wercker
# Read more about pipelines on our dev center
# http://devcenter.wercker.com/docs/pipelines/index.html
build:
# Steps make up the actions in your pipeline
# Read more about steps on our dev center:
# http://devcenter.wercker.com/docs/steps/index.html
steps:
# Update the apt-get
- script:
name: apt-get update
code: |
sudo apt-get update -qq
# Get the dependencies
- script:
name: apt-get install
code: |
sudo apt-get install -y build-essential
sudo apt-get install -y openssl cmake libevent-dev libjpeg-dev libgif-dev libpng-dev libwebp-dev libmagickwand-dev libmemcached-dev
# Build the program
- script:
name: make
code: |
make
# Run the program
- script:
name: run
code: |
cd bin
./zimg conf/zimg.lua
# Check the program
- script:
name: check
code: |
cd bin
ls -l
ps aux|grep zimg

0 comments on commit 4f53b05

Please sign in to comment.