mirror of
https://github.com/logos-messaging/packages.git
synced 2026-01-07 16:43:09 +00:00
24 lines
457 B
YAML
24 lines
457 B
YAML
|
|
os:
|
|
- linux
|
|
|
|
language: c
|
|
|
|
env:
|
|
- BRANCH="travis"
|
|
- BRANCH="devel"
|
|
|
|
install:
|
|
- git clone -b $BRANCH git://github.com/Araq/Nim.git; cd Nim; git clone -b $BRANCH --depth 1 git://github.com/nim-lang/csources; cd csources && sh build.sh; cd ..; bin/nim c koch; ./koch boot -d:release; cd ..
|
|
|
|
before_script:
|
|
- set -e
|
|
- set -x
|
|
- export PATH=`pwd`/Nim/bin:$PATH
|
|
|
|
script:
|
|
- nim c -d:ssl -r package_scanner.nim
|
|
|
|
notifications:
|
|
email: false # noisy
|