This repository has been archived by the owner on Aug 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
61 lines (46 loc) · 1.43 KB
/
.travis.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
55
56
57
58
59
language: cpp
script: make unit
dist: trusty
before_install:
- eval "${MATRIX_EVAL}"
matrix:
include:
- os: linux
name: Linux
dist: xenial
language: r
r: devel
install:
- R -f dependencies.R
- R CMD build .
- R CMD INSTALL miniparquet_*.tar.gz
script:
- (cd tests && R -f testthat.R)
- os: osx
osx_image: xcode11
name: OSX
language: r
#r: devel
install:
- R -f dependencies.R
- R CMD build .
- R CMD INSTALL --build miniparquet_*.tar.gz
- R CMD INSTALL miniparquet_*.tgz
script:
- (cd tests && R -f testthat.R)
- os: windows
name: Windows
filter_secrets: false
language: cpp
before_script:
- choco install r.project -y --version 3.6.0
- wget "https://github.com/hannesmuehleisen/choco-rtools/raw/master/rtools.3.5.0.nupkg"
- choco install rtools -s rtools.3.5.0.nupkg -f -y
- choco install curl -y --force
script:
- export "PATH=/c/Rtools/bin:$PATH"
- C:/Program\ Files/R/R-3.6.0/bin/R.exe -f dependencies.R
- C:/Program\ Files/R/R-3.6.0/bin/R.exe CMD build .
- C:/Program\ Files/R/R-3.6.0/bin/R.exe CMD INSTALL --build miniparquet_*.tar.gz
- C:/Program\ Files/R/R-3.6.0/bin/R.exe CMD INSTALL miniparquet_*.zip
- (cd tests; C:/Program\ Files/R/R-3.6.0/bin/R.exe -f testthat.R)