From b85cf8b367777ba6da946bcd0e98fa606d5ada56 Mon Sep 17 00:00:00 2001 From: Jonathan Bernard Date: Fri, 1 Dec 2017 02:12:22 -0600 Subject: [PATCH] Hacky dependency pinning to get passing builds. There is some bug building in the docker image we use to build the project with the latest version of https://github.com/yglukhov/nim-jwt so I'm pinning it to commit hash 549aa1eb13b8ddc0c6861d15cc2cc5b52bcbef01 for now. Later versions add an ifdef branch to support libssl 1.1 but for some reason that ifdef is set wrong and it tries to build against the 1.1 API even though the image only has the 1.0 API. I'm crossing my fingers and hoping that our base image supports libssl 1.1 before I need to update this library. --- strawboss.nimble | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/strawboss.nimble b/strawboss.nimble index 06899f3..3dead8b 100644 --- a/strawboss.nimble +++ b/strawboss.nimble @@ -12,12 +12,18 @@ srcDir = "src/main/nim" requires @["nim >= 0.16.1", "docopt >= 0.6.5", "isaac >= 0.1.2", "tempfile", "jester", "bcrypt", "untar", "uuids"] -requires "https://github.com/yglukhov/nim-jwt" +# Hacky to point to a specific hash. But there is some bug building in the +# docker image we use to build the project with the next version. It adds an +# ifdef branch to support libssl 1.1 but for some reason that ifdef is set +# wrong and it tries to build against the 1.1 API even though the image only +# has the 1.0 API. I'm crossing my fingers and hoping that our base image +# supports libssl 1.1 before I need to update this library. +requires "https://github.com/yglukhov/nim-jwt#549aa1eb13b8ddc0c6861d15cc2cc5b52bcbef01" + requires "https://git.jdb-labs.com/jdb/nim-lang-utils.git >= 0.3.0" requires "https://git.jdb-labs.com/jdb/nim-cli-utils.git >= 0.3.1" # Tasks -# task functest, "Runs the functional test suite.": exec "nimble build" exec "nim c -r src/test/nim/run_functional_tests.nim"