mirror of
https://github.com/CapsAdmin/pac3.git
synced 2025-03-04 03:03:01 -05:00
23 lines
548 B
YAML
23 lines
548 B
YAML
sudo: false
|
|
|
|
language: c
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- libc6:i386
|
|
- libstdc++6:i386
|
|
|
|
before_install:
|
|
# Download the lua
|
|
- wget https://github.com/Metastruct/gtravis/releases/download/travisbins/gluac.tar.xz
|
|
- tar -xf gluac.tar.xz
|
|
- export LD_LIBRARY_PATH=`pwd`/gluac${LD_LIBRARY_PATH:+:}${LD_LIBRARY_PATH:-}
|
|
|
|
# Set the $PATH so gluac can be executed
|
|
- export PATH=$PATH:`pwd`/gluac
|
|
|
|
- echo $PWD
|
|
|
|
script: find lua/ -iname '*.lua' -not -path 'lua/entities/gmod_wire_expression2/core/custom/*' -print0 | xargs -0 -- gluac -p --
|