From bdda455400c8320c7c6be97d8a3852d637114bb6 Mon Sep 17 00:00:00 2001 From: ringabout <43030857+ringabout@users.noreply.github.com> Date: Thu, 25 Jan 2024 20:15:34 +0800 Subject: [PATCH] Add ORC testing for the devel branch --- .github/workflows/ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4f38cb2..680d666 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -159,11 +159,7 @@ jobs: nimble install -y toml_serialization json_serialization unittest2 rm -f nimble.lock env NIMFLAGS="${NIMFLAGS} --mm:refc" nimble test - let "linux32= "${{ matrix.target.os }}" == "linux" && "${{ matrix.target.cpu }}" == "i386"" - if [[ "${{ matrix.branch }}" == "devel" && "$linux32" == 0 ]]; then + if [[ ${{matrix.branch}} == "devel" ]]; then echo -e "\nTesting with '--mm:orc':\n" - if env NIMFLAGS="${NIMFLAGS} --mm:orc" nimble test; then - echo "Nim devel with --mm:orc works again! Please remove this check in ci.yml" - false - fi + env NIMFLAGS="${NIMFLAGS} --mm:orc" nimble test fi