-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
CircleCI
Federico Ceratto edited this page Jan 28, 2017
·
4 revisions
Building your code on Circle CI is useful to check regressions against the master and devel branches of Nim. Same for your code documentation.
Configure the build:
Under Test Commands >> Dependency Commands >> Pre-dependency commands:
wget http://http.us.debian.org/debian/pool/main/n/nim/nim_0.16.0-1_amd64.deb
wget http://http.us.debian.org/debian/pool/main/o/openssl1.0/libssl1.0.2_1.0.2k-1_amd64.deb
sudo dpkg -i *_amd64.deb
Under Test Commands >> Test Commands >> Test Commands:
# This will fetch Nimble dependencies
nimble build -y
nim c -r <mytest.nim>
Intro
Getting Started
- Install
- Docs
- Curated Packages
- Editor Support
- Unofficial FAQ
- Nim for C programmers
- Nim for Python programmers
- Nim for TypeScript programmers
- Nim for D programmers
- Nim for Java programmers
- Nim for Haskell programmers
Developing
- Build
- Contribute
- Creating a release
- Compiler module reference
- Consts defined by the compiler
- Debugging the compiler
- GitHub Actions/Travis CI/Circle CI/Appveyor
- GitLab CI setup
- Standard library and the JavaScript backend
Misc