forked from duckdb/duckdb-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
66 lines (47 loc) · 1.53 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
60
61
62
63
64
65
66
matrix:
include:
- name: Python 3.7
os: linux
dist: bionic
language: python
python: 3.7
script:
- python scripts/test-instructions.py 'https://www.duckdb.org' '<p class="ver-python">([^<]+)</p>' | bash
- python -c "import duckdb"
- name: Python 2.7
os: linux
dist: bionic
language: python
python: 2.7
install:
- python scripts/test-instructions.py 'https://www.duckdb.org' '<p class="ver-python">([^<]+)</p>' | bash
script:
- python -c "import duckdb"
# - name: Python Package
# os: windows
# language: cpp
# before_install:
# - choco install python3 --version 3.7.3 --sidebyside -y --force --params "/InstallDir:C:\Python37-x64"
# - setx path "%path%;C:\Python37-x64"
# install:
# - python scripts/test-instructions.py 'https://www.duckdb.org' '<p class="ver-python">([^<]+)</p>' | bash
# script:
# - python -c "import duckdb"
- name: R Devel
os: linux
dist: bionic
language: r
r: devel
install:
- python scripts/test-instructions.py 'https://www.duckdb.org' '<p class="ver-r">([^<]+)</p>' | R --no-save
script:
- R -e "library('duckdb')"
- name: R Devel
os: osx
osx_image: xcode11.5
language: r
r: devel
install:
- python scripts/test-instructions.py 'https://www.duckdb.org' '<p class="ver-r">([^<]+)</p>' | R --no-save
script:
- R -e "library('duckdb')"