From 99fcb3405c55b27cfffbf60f5368c55da7346f23 Mon Sep 17 00:00:00 2001 From: tersec Date: Tue, 13 Jun 2023 20:55:09 +0000 Subject: [PATCH] remove Nim 1.2 and 1.4 support; test Nim 2.0 in CI (#48) --- .github/workflows/ci.yml | 2 +- bearssl.nimble | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 44c1d67..747b276 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,7 @@ jobs: cpu: amd64 #- os: windows #cpu: i386 - branch: [version-1-2, version-1-4, version-1-6, devel] + branch: [version-1-6, version-2-0, devel] include: - target: os: linux diff --git a/bearssl.nimble b/bearssl.nimble index ce15219..b83f3e2 100644 --- a/bearssl.nimble +++ b/bearssl.nimble @@ -7,7 +7,7 @@ description = "BearSSL wrapper" license = "MIT or Apache License 2.0" skipDirs = @["tests"] -requires "nim >= 1.2.0", +requires "nim >= 1.6.0", "unittest2" let nimc = getEnv("NIMC", "nim") # Which nim compiler to use @@ -15,9 +15,8 @@ let lang = getEnv("NIMLANG", "c") # Which backend (c/cpp/js) let flags = getEnv("NIMFLAGS", "") # Extra flags for the compiler let verbose = getEnv("V", "") notin ["", "0"] -let styleCheckStyle = if (NimMajor, NimMinor) < (1, 6): "hint" else: "error" let cfg = - " --styleCheck:usages --styleCheck:" & styleCheckStyle & + " --styleCheck:usages --styleCheck:error" & (if verbose: "" else: " --verbosity:0 --hints:off") & " --skipParentCfg --skipUserCfg --outdir:build --nimcache:build/nimcache -f"