This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: wercker/php | |
# Build definition | |
build: | |
# The steps that will be executed on build | |
steps: | |
# A custom script s tep, name value is used in the UI | |
# and the code value contains the command that get executed | |
- script: | |
name: echo php information | |
code: | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: wercker/android | |
# Build definition | |
build: | |
# The steps that will be executed on build | |
steps: | |
- script: | |
name: show base information | |
code: | | |
gradle -v | |
echo $ANDROID_HOME |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: wercker/python | |
services: | |
- wercker/postgresql # Don't forget to add your databases as a service | |
# Build definition | |
build: | |
# The steps that will be executed on build | |
steps: | |
- virtualenv: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: wercker/rvm | |
build: | |
steps: | |
- script: | |
name: set environment variables | |
code: export GITHUB_API_TOKEN=d2c7c15db12c627fea9b717245c5302eec8de702 | |
- rvm-use: | |
version: ruby-1.9.3-p545 | |
- script: | |
name: move code folder and update WERCKER_SOURCE_DIR |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
box: wercker/nodejs | |
# Build definition | |
build: | |
# The steps that will be executed on build | |
steps: | |
# A step that executes `npm install` command | |
- npm-install | |
# Install karma cli | |
- script: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: wercker/php | |
services: | |
- wercker/postgresql | |
# Build definition | |
build: | |
# The steps that will be executed on build | |
steps: | |
- install-packages: | |
name: install postgres extension | |
packages: "php5-pgsql" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: wercker/python | |
services: | |
- wercker/redis | |
# Build definition | |
build: | |
# The steps that will be executed on build | |
steps: | |
# A step that sets up the python virtual environment | |
- virtualenv: | |
name: setup virtual environment |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: | |
id: ubuntu:trusty | |
build: | |
steps: | |
- install-packages: | |
packages: python python3 python-pip | |
- script: | |
name: python | |
code: | | |
python --version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: google/golang | |
dev: | |
steps: | |
- script: | |
name: build libstatgrab | |
code: | | |
curl -o libstatgrab-0.91.tar.gz http://www.mirrorservice.org/pub/i-scream/libstatgrab/libstatgrab-0.91.tar.gz | |
tar zxf libstatgrab-0.91.tar.gz | |
cd libstatgrab-0.91 | |
./configure --prefix=/usr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
box: google/golang | |
dev: | |
steps: | |
- script: | |
name: build libstatgrab | |
code: | | |
curl -o libstatgrab-0.91.tar.gz http://www.mirrorservice.org/pub/i-scream/libstatgrab/libstatgrab-0.91.tar.gz | |
tar zxf libstatgrab-0.91.tar.gz | |
cd libstatgrab-0.91 | |
./configure --prefix=/usr |
OlderNewer