From 6db6088792bde0998c2b84c2d8e231f1d0507e49 Mon Sep 17 00:00:00 2001 From: tersec Date: Thu, 22 Feb 2024 03:42:37 +0000 Subject: [PATCH] test refc in CI in Nim 2.0 and later (#161) --- .github/workflows/ci.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6d723908..a36e856c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,11 +34,11 @@ jobs: include: - target: os: linux - builder: ubuntu-20.04 + builder: ubuntu-latest shell: bash - target: os: macos - builder: macos-12 + builder: macos-latest shell: bash - target: os: windows @@ -51,7 +51,7 @@ jobs: name: '${{ matrix.target.os }}-${{ matrix.target.cpu }} (Nim ${{ matrix.branch }})' runs-on: ${{ matrix.builder }} - continue-on-error: ${{ matrix.branch == 'version-1-6' || matrix.branch == 'devel' }} + continue-on-error: ${{ matrix.branch == 'devel' }} steps: - name: Checkout uses: actions/checkout@v4 @@ -164,6 +164,7 @@ jobs: nimble --version nimble install -y --depsOnly nimble test + env NIMFLAGS="--mm:refc" nimble test autobahn-test: if: github.event_name == 'push' # || github.event_name == 'pull_request'