test refc in CI in Nim 2.0 and later (#15)

This commit is contained in:
tersec 2024-02-14 01:15:28 +00:00 committed by GitHub
parent 355a525865
commit 6afd6a28f5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# nim-zlib
# Copyright (c) 2021-2023 Status Research & Development GmbH
# Copyright (c) 2021-2024 Status Research & Development GmbH
# Licensed under either of
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
# * MIT license ([LICENSE-MIT](LICENSE-MIT))
@ -36,6 +36,6 @@ task test, "Run all tests":
test "-d:release", "tests/test_all"
test "--threads:on -d:release", "tests/test_all"
if (NimMajor, NimMinor) > (1, 6):
test "-d:debug", "tests/test_all"
test "-d:release", "tests/test_all"
test "--threads:on -d:release", "tests/test_all"
test "-d:debug --mm:refc", "tests/test_all"
test "-d:release --mm:refc", "tests/test_all"
test "--threads:on -d:release --mm:refc", "tests/test_all"