Squashed commit of the following:
commit 8811389f5071831b4fd55fa0c978767d722a4ed0
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Tue Nov 15 21:24:03 2016 +0100
Cleans up troibobasbfdb
commit 283e10b43517e1c03a277bdf0dd39ea017421d53
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Tue Nov 15 21:12:03 2016 +0100
Too bad bash isn't style insensitive.
commit 3cbf069230306c2977fe37f811c803b9a55b4ccf
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Tue Nov 15 21:09:27 2016 +0100
Attempt to add -lrt to linker flags.
commit 0f3cbfabd9f9b2cf8c9ba9709175384d2f440ffd
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Tue Nov 15 20:58:52 2016 +0100
Print ldd version.
commit badc29b79d6cc4f0770c483ac63079b0a3e9bd6c
Author: Dominik Picheta <dominikpicheta@gmail.com>
Date: Tue Nov 15 20:50:35 2016 +0100
Attempt to debug.
26 lines
409 B
YAML
26 lines
409 B
YAML
os:
|
|
- linux
|
|
|
|
language: c
|
|
|
|
install:
|
|
- |
|
|
wget http://nim-lang.org/download/nim-0.15.2.tar.xz
|
|
tar -xf nim-0.15.2.tar.xz
|
|
cd nim-0.15.2
|
|
LDFLAGS=-lrt sh build.sh
|
|
cd ..
|
|
|
|
before_script:
|
|
- set -e
|
|
- set -x
|
|
- export PATH=`pwd`/nim-0.15.2/bin:$PATH
|
|
|
|
script:
|
|
- cd tests
|
|
- nim c -r tester
|
|
- cd ..
|
|
- ./src/nimble install -y
|
|
|
|
notifications:
|
|
irc: "chat.freenode.net#nimbuild"
|