mirror of
https://github.com/logos-messaging/packages.git
synced 2026-01-03 14:43:06 +00:00
25 lines
364 B
YAML
25 lines
364 B
YAML
os:
|
|
- linux
|
|
dist: trusty
|
|
|
|
language: c
|
|
|
|
install:
|
|
- |
|
|
wget http://nim-lang.org/download/nim-0.13.0.tar.xz
|
|
tar xf nim-0.13.0.tar.xz
|
|
cd nim-0.13.0
|
|
sh build.sh
|
|
cd ..
|
|
|
|
before_script:
|
|
- set -e
|
|
- set -x
|
|
- export PATH=`pwd`/nim-0.13.0/bin:$PATH
|
|
|
|
script:
|
|
- nim c -d:ssl -r package_scanner.nim
|
|
|
|
notifications:
|
|
email: false # noisy
|