diff options
author | Brooks Davis <brooks@FreeBSD.org> | 2020-03-23 18:26:23 +0000 |
---|---|---|
committer | Brooks Davis <brooks@FreeBSD.org> | 2020-03-23 18:26:23 +0000 |
commit | c697fb7f7cc9bedc5beee44d35b771c4e87b335a (patch) | |
tree | 3ec4907c85501b71b63e39ad3bb90b5202556475 /contrib/lutok/.travis.yml | |
parent | 1fc78b7e60c4bccfd0d9fa2c00eb6c73ecbcbf4a (diff) | |
parent | 4b2c3eb9d49a797f91eee2be4e41cacb3b8167e7 (diff) |
Add liblutok a lightweight C++ API for lua.
It is added an INTERNALLIB and not installed. It will be used by kyua.
This is a preparatory commit for D24103.
Reviewed by: emaste
Obtained from: CheriBSD
Sponsored by: DARPA
Notes
Notes:
svn path=/head/; revision=359255
Diffstat (limited to 'contrib/lutok/.travis.yml')
-rw-r--r-- | contrib/lutok/.travis.yml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/contrib/lutok/.travis.yml b/contrib/lutok/.travis.yml new file mode 100644 index 000000000000..1e2fb77df152 --- /dev/null +++ b/contrib/lutok/.travis.yml @@ -0,0 +1,25 @@ +language: cpp + +compiler: + - gcc + - clang + +before_install: + - ./admin/travis-install-deps.sh + +env: + - ARCH=amd64 AS_ROOT=no + - ARCH=amd64 AS_ROOT=yes + - ARCH=i386 AS_ROOT=no + +matrix: + exclude: + - compiler: clang + env: ARCH=i386 AS_ROOT=no + +script: + - ./admin/travis-build.sh + +notifications: + email: + - lutok-log@googlegroups.com |