diff options
| author | Ganesh Viswanathan <dev@genotrance.com> | 2018-11-02 10:55:05 -0500 |
|---|---|---|
| committer | Ganesh Viswanathan <dev@genotrance.com> | 2018-11-02 10:55:05 -0500 |
| commit | 713703caae174888a10b27144a967a936de02b21 (patch) | |
| tree | 70239ee6c3fb1bcaf2fabb77291672111a4c882c | |
| parent | ee7a55f2ecf801d411f34e284ef531dffe22de6e (diff) | |
| download | nimgen-713703caae174888a10b27144a967a936de02b21.tar.gz nimgen-713703caae174888a10b27144a967a936de02b21.zip | |
Travis fixes
| -rw-r--r-- | .travis.yml | 12 | ||||
| -rw-r--r-- | README.md | 1 |
2 files changed, 11 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 9c56b1f..720d143 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,11 +4,19 @@ os: - linux - osx dist: trusty +addons: + apt: + packages: + - python-pygments + - libssh2-1-dev + - libgcrypt20-dev + - libgpg-error-dev before_script: - export RELEASE=`curl --silent https://api.github.com/repos/nim-lang/nightlies/releases/latest | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/'` - export TXZ=`curl --silent https://api.github.com/repos/nim-lang/nightlies/releases/latest | grep '"name":' | sed -E 's/.*"([^"]+)".*/\1/' | grep linux` - export VERSION=`echo $TXZ | cut -d"-" -f 2,2` - - curl -L --silent -o $TXZ https://github.com/nim-lang/nightlies/releases/download/$RELEASE/$TXZ + - echo "RELEASE = $RELEASE, TXZ = $TXZ, VERSION = $VERSION" + - curl -L --silent -o $TXZ "https://github.com/nim-lang/nightlies/releases/download/$RELEASE/$TXZ" - tar xf $TXZ - cd nim-$VERSION - sh build.sh @@ -19,4 +27,4 @@ before_script: - cd .. script: - nimble install -y - - nimble tests + - nimble test @@ -1,5 +1,6 @@ [](https://gitter.im/nimgen/Lobby) [](https://ci.appveyor.com/project/genotrance/nimgen/branch/master) +[](https://travis-ci.org/genotrance/nimgen) Nimgen is a helper for [c2nim](https://github.com/nim-lang/c2nim/) to simplify and automate the wrapping of C libraries. |
