blob: 4c84749c4781a616361effc3dbaf0ac04dc412ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
os:
- linux
dist: trusty
language: c
cache:
directories:
- "$HOME/.choosenim"
install:
- export CHOOSENIM_CHOOSE_VERSION="0.18.0"
- |
curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh
sh init.sh -y
- export PATH=$HOME/.nimble/bin:$PATH
before_script:
- set -e
- set -x
script:
- nim c -d:ssl -r package_scanner.nim && node ./validate_json.js
notifications:
email: false # noisy
|