From 4337ccd62c0b7d57492402dd4cb838ddc0c78a84 Mon Sep 17 00:00:00 2001 From: Etan Kissling Date: Wed, 24 Jul 2024 21:43:43 +0200 Subject: [PATCH] Do not set conflicting `--mm` params (#85) The `.nimble` file already ensures that both `--mm:refc` and `--mm:orc` are passed. If we also set it in `ci.yml` then both options are passed, including the case where they are conflicting. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d3d78e5..99aae55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -166,5 +166,5 @@ jobs: nimble install -y --depsOnly nimble install -y chronicles@#head nimble install -y unittest2 - env NIMFLAGS="${NIMFLAGS} --mm:refc" nimble test - env NIMFLAGS="${NIMFLAGS} --mm:refc" nimble test_chronicles + nimble test + nimble test_chronicles