Skip to content

Commit ecccba8

Browse files
arnetheduckjmgomez
andauthored
httputils: drop upper bound (#244)
* httputils: drop upper bound * bumps nimble commit to 0.99 * run nimble setup before the tests * Fix indentation for test command in CI workflow * Update CI workflow to use 'nimble test -g' * drop skipparentcfg * v * newer nimble * verbose * verbose --------- Co-authored-by: Juan M Gómez <juamangomalv@gmail.com>
1 parent a4f8470 commit ecccba8

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ on:
88

99
jobs:
1010
build:
11-
uses: status-im/nimbus-common-workflow/.github/workflows/common.yml@nimblecommit
11+
uses: status-im/nimbus-common-workflow/.github/workflows/common.yml@verbose-build
1212
with:
13-
nimble-version: b920dad9ed76c6619be3ec0cfbf0dde6f9e39092
13+
nimble-version: 6fe9d817a70a14fa57022a9cca46eb443ee5a040
14+
test-command: |
15+
nimble setup -l
16+
nimble test

json_rpc.nimble

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ requires "nim >= 1.6.0",
2121
"stew",
2222
"nimcrypto",
2323
"stint",
24-
"chronos >= 4.0.3 & < 4.1.0",
25-
"httputils >= 0.3.0 & < 0.4.0",
24+
"chronos >= 4.0.3 & < 5.0.0",
25+
"httputils >= 0.3.0",
2626
"chronicles",
2727
"websock >= 0.2.0 & < 0.3.0",
2828
"serialization >= 0.4.4",
@@ -37,7 +37,7 @@ let verbose = getEnv("V", "") notin ["", "0"]
3737
let cfg =
3838
" --styleCheck:usages --styleCheck:error" &
3939
(if verbose: "" else: " --verbosity:0") &
40-
" --skipParentCfg --skipUserCfg --outdir:build --nimcache:build/nimcache -f" &
40+
" --skipUserCfg --outdir:build --nimcache:build/nimcache -f" &
4141
" --threads:on -d:chronicles_log_level=ERROR"
4242

4343
proc build(args, path: string) =

0 commit comments

Comments
 (0)