Skip to content

Commit

Permalink
remove Nim 1.2 support; test Nim 2.0 in CI (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
tersec authored Jun 1, 2023
1 parent 64365eb commit 35652ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
cpu: amd64
#- os: windows
#cpu: i386
branch: [version-1-2, version-1-6, devel]
branch: [version-1-6, version-2-0, devel]
include:
- target:
os: linux
Expand Down
5 changes: 2 additions & 3 deletions presto.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description = "REST API implementation"
license = "MIT"
skipDirs = @["tests", "examples"]

requires "nim >= 1.2.0",
requires "nim >= 1.6.0",
"chronos >= 3.0.9",
"chronicles",
"stew"
Expand All @@ -17,9 +17,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"

Expand Down

0 comments on commit 35652ed

Please sign in to comment.