Nim docker images used to build Status nim projects
Go to file
Yuriy Glukhov d7b0ce3228 Initial commit 2018-03-14 19:58:58 +02:00
debian-pre-nim Initial commit 2018-03-14 19:58:58 +02:00
nim-base Initial commit 2018-03-14 19:58:58 +02:00
.travis.yml Initial commit 2018-03-14 19:58:58 +02:00
LICENSE Initial commit 2018-03-14 19:52:39 +02:00
README.md Initial commit 2018-03-14 19:58:58 +02:00
build.sh Initial commit 2018-03-14 19:58:58 +02:00

README.md

nim-docker Build Status

This is a helper repo for auto building docker image with latest Nim devel version. In order to setup Travis CI for your project using this image, copy the following lines to your .travis.yml file in the root of your repository:

sudo: required
services:
  - docker
before_install:
  - docker pull statusteam/nim-base
script:
  - docker run statusteam/nim-base nim --version
  - docker run -v "$(pwd):/project" -w /project statusteam/nim-base nimble test

Also make sure to enable your project in Travis CI. This configuration will run nimble test in the root of your repository.