Ravi is a dialect of Lua, featuring limited optional static typing, JIT and AOT compilers
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
language: cpp
|
|
os:
|
|
- linux
|
|
arch:
|
|
- amd64
|
|
- arm64
|
|
compiler:
|
|
- gcc
|
|
cache: ccache
|
|
dist: focal
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- gcc
|
|
- ccache
|
|
script:
|
|
- mkdir $TRAVIS_BUILD_DIR/buildmir
|
|
- cd $TRAVIS_BUILD_DIR/buildmir && cmake -DCMAKE_BUILD_TYPE=Debug -DLTESTS=ON -DMIR_JIT=ON -G "Unix Makefiles" ..
|
|
- cd $TRAVIS_BUILD_DIR/buildmir && make
|
|
- cd $TRAVIS_BUILD_DIR/tests && sh ./run_tests.sh $TRAVIS_BUILD_DIR/buildmir/ravi
|