From bca5a2d1183c64fd08f36fd180fa424c8762f9b3 Mon Sep 17 00:00:00 2001 From: Smooth Operator Date: Mon, 29 Jan 2024 08:40:08 -0500 Subject: [PATCH] parity for balls in ci (#312) --- .github/workflows/ci.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e6eae89..86bfaabc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -113,12 +113,7 @@ jobs: run: | cd project nimble --accept develop - if [[ $NIM == nimskull ]]; then - # Use older balls for nimskull - nimble --accept install "https://github.com/disruptek/balls@3.9.11" - else - nimble --accept install "https://github.com/disruptek/balls" - fi + nimble --accept install "https://github.com/disruptek/balls" env: NIM: ${{ matrix.compiler.name }} @@ -127,12 +122,7 @@ jobs: run: | cd project cd examples - if [[ $NIM == nimskull ]]; then - # Old balls don't have glob - balls --path=".." --backend:c --mm:arc --mm:orc --errorMax:3 - else - balls '***' --path=".." --backend:c --mm:arc --mm:orc - fi + balls '***' --path=".." --backend:c --mm:arc --mm:orc env: NIM: ${{ matrix.compiler.name }}