-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwercker.yml
35 lines (29 loc) · 844 Bytes
/
wercker.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
box: continuumio/miniconda
# comment
build:
steps:
- script:
name: Install dependencies
code: |
conda install -y pandas jinja2 bokeh
- script:
name: convert to html
code: |
bin/plot_bokeh.py -t templates/template.jinja results.csv "$WERCKER_OUTPUT_DIR/index.html"
cp dashboard.css "$WERCKER_OUTPUT_DIR/"
# - lukevivier/gh-pages:
deploy:
steps:
- script:
name: Install dependencies
code: |
env | grep WERCKER
pwd
echo foo
echo ls -l "$WERCKER_OUTPUT_DIR"
ls -l "$WERCKER_OUTPUT_DIR"
echo bar
- ematsen/gh-pages:
token: $GITHUB_TOKEN
repo: "$WERCKER_GIT_OWNER/$WERCKER_GIT_REPOSITORY"
path: "$WERCKER_SOURCE_DIR"