blob: 2c6d7446ccbc9d3a63e9972c86d7c58a2eca6151 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
language: node
cache: yarn
before_install:
- pip install --user hererocks
- hererocks lua53 -l5.3 -rlatest --cflags="-DLUA_INT_TYPE=LUA_INT_INT"
- source lua53/bin/activate
- nvm install node
- export NODE=$(nvm which node)
- export NPM=${NODE%node}npm
- $NPM install -g yarn
install:
- yarn
script:
- yarn build
- travis_wait yarn test
notifications:
email: false
|