forked from kiibohd/kll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
65 lines (51 loc) · 971 Bytes
/
.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
# travis-ci integration for the kll compiler
sudo:
- false
os:
- linux
# Python osx builds are not yet supported by Travis
#- osx
language:
- python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.5-dev"
- "3.6-dev"
- "nightly"
addons:
apt:
packages:
- tree
# Package Setup
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install tree; fi
# Test Scripts
env:
# Basic KLL Tests
- DIR=tests SCRIPT=sanity.bash
- DIR=tests SCRIPT=syntax.bash
- DIR=tests SCRIPT=regen.bash
# Exclusions
matrix:
allow_failures:
- python: "3.5-dev"
- python: "3.6-dev"
- python: "nightly"
# System setup
install:
# Info about OS
- uname -a
# Directory tree to validate kll.git
- tree
# Python Version
- python3 --version
# Run test script(s)
script:
- (cd ${DIR} && ./${SCRIPT})
# Post test script commands
after_script:
- tree