ee7

Results 172 issues of ee7

Historically, the track has used `alaviss/setup-nim` to run tests with nightly Nim releases, and `iffy/install-nim` for stable Nim releases: https://github.com/exercism/nim/blob/8fa077f680bc078ee29062dd5ea3d9422c647d5e/.github/workflows/exercises.yml#L32-L45 But I believe that `iffy/install-nim` has the ability to use...

See https://exercism.org/blog/freeing-our-maintainers.

Follow-up to https://github.com/exercism/nim/commit/5b332beeb0826dc18bf0a13142b669bc16daa9a5.

e.g. link reference definitions

For simplicity, new exercises are being implemented as `bonus` exercises, meaning that `unlocked_by` is set to `null` in `config.json`. Therefore after the new exercises are merged, we should probably consider:...

The post-build hook attempted to strip only release builds, but it stripped all builds because [Nimble doesn't support checking custom defines in a nimble file][1]. Check against `release` instead, which...

## Steps to reproduce Run `nimble build` with the default C compiler as either: - Clang 15.0.0 (2022-09-06) or later - GCC 14.1 (released 2024-05-07) or later ## Expected behavior...

The `README.md` for the pytest-based testing says that `make debug` is the way to produce a debug build of chalk: https://github.com/crashappsec/chalk/blob/ca217bd77211a0a6125840fd9167e3f76340738b/tests/functional/README.md#L47-L55 but that doesn't seem to work: ```console $ git...

### Scenario Run `nimble build -d:debug` ### Expected behavior It produces a binary with debug info. ### Observed behavior It produces a binary without debug info. ### Problem We make...

Like https://github.com/crashappsec/chalk/pull/279, a small PR to get rid of deprecation warnings and reduce noise locally (e.g. when running `nimble build -d:debug`). --- Resolve the deprecation warning: > src/util.nim(59, 3) Warning:...