-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathwercker.yml
55 lines (54 loc) · 1.83 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
box: rocker/hadleyverse
build:
steps:
- script:
name: phantomjs
code: |
export PHANTOM_JS="phantomjs-1.9.8-linux-x86_64"
wget https://bitbucket.org/ariya/phantomjs/downloads/$PHANTOM_JS.tar.bz2
sudo tar xvjf $PHANTOM_JS.tar.bz2
sudo mv $PHANTOM_JS /usr/local/share
sudo ln -sf /usr/local/share/$PHANTOM_JS/bin/phantomjs /usr/local/bin
phantomjs --version
- script:
name: echo install ggplot2
code: |
Rscript -e 'devtools::install_github("hadley/ggplot2#1649")'
- script:
name: echo install animint dependencies
code: |
Rscript -e "devtools::install(upgrade_dependencies=FALSE, dependencies=TRUE)"
- script:
name: copy source to animint
code: |
cp -r /pipeline/source /pipeline/animint
- script:
name: echo renderer1 tests
code: |
export TEST_SUITE=renderer1
Rscript -e "setwd('/pipeline/animint/tests'); source('testthat.R')"
- script:
name: echo renderer2 tests
code: |
export TEST_SUITE=renderer2
Rscript -e "setwd('/pipeline/animint/tests'); source('testthat.R')"
- script:
name: echo renderer3 tests
code: |
export TEST_SUITE=renderer3
Rscript -e "setwd('/pipeline/animint/tests'); source('testthat.R')"
- script:
name: echo renderer4 tests
code: |
export TEST_SUITE=renderer4
Rscript -e "setwd('/pipeline/animint/tests'); source('testthat.R')"
- script:
name: echo renderer5 tests
code: |
export TEST_SUITE=renderer5
Rscript -e "setwd('/pipeline/animint/tests'); source('testthat.R')"
- script:
name: echo compiler tests
code: |
export TEST_SUITE=compiler
Rscript -e "setwd('/pipeline/animint/tests'); source('testthat.R')"