mirror of
https://github.com/ksherlock/mpw-shell.git
synced 2024-12-29 15:29:19 +00:00
19 lines
374 B
YAML
19 lines
374 B
YAML
# this builds with linux/g++ however, travis-ci's
|
|
# linux compilers are hopelessly out of date.
|
|
os: osx
|
|
osx_image: xcode7.3
|
|
language: cpp
|
|
compiler:
|
|
- clang
|
|
# - gcc
|
|
before_script:
|
|
- mkdir build
|
|
- cd build
|
|
- cmake ..
|
|
script: make
|
|
before_install:
|
|
- brew update
|
|
- brew install ragel
|
|
- brew install "https://github.com/ksherlock/lemon--/raw/master/lemon++.rb"
|
|
|