4e54075078
CI / test (push) Has been cancelled
CI / verify (push) Has been cancelled
Clients CI / build-server (push) Has been cancelled
Clients CI / test-python (push) Has been cancelled
Clients CI / test-javascript (push) Has been cancelled
Clients CI / test-nim (push) Has been cancelled
Clients CI / test-rust (push) Has been cancelled
29 lines
627 B
YAML
29 lines
627 B
YAML
sudo: false
|
|
language: c
|
|
os: linux
|
|
install:
|
|
- git clone https://github.com/nim-lang/nim
|
|
- cd nim
|
|
- git clone --depth 1 https://github.com/nim-lang/csources.git
|
|
- cd csources
|
|
- sh build.sh
|
|
- cd ../
|
|
- bin/nim c koch
|
|
- ./koch boot -d:release
|
|
- ./koch tools
|
|
- cd ..
|
|
before_script:
|
|
- set -e
|
|
- export PATH=$(pwd)/nim/bin:$(pwd):$PATH
|
|
script:
|
|
- nimble develop -y
|
|
- nim c tools/ormin_importer
|
|
- cd examples/forum
|
|
- ../../tools/ormin_importer forum_model.sql
|
|
- nim c forum.nim
|
|
- nim c forumproto.nim
|
|
- cd ../..
|
|
- cd examples/chat
|
|
- ../../tools/ormin_importer chat_model.sql
|
|
- nim c server.nim
|