Archiviato
1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
kll/.travis.yml
Jacob Alexander d7b7752dc1 Updating Lexer to KLL 0.5c
- Added syntax check unit-test
- Added none emitter (for syntax validation check)
- Added KLL 0.5c example expressions
- Added Travis-CI test for syntax check
- Cleaned up README
2016-10-09 20:02:31 -07:00

63 righe
901 B
YAML

# 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"
- "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
# Exclusions
matrix:
allow_failures:
- python: "3.5-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