Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run CI tests with arc/orc in addition to default GC #79

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ jobs:

- name: Run tests
shell: bash
run: nimble test
run: |
nimble testMulti

- name: Build docs
if: matrix.branch == 'devel'
Expand Down
6 changes: 6 additions & 0 deletions fusion.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,9 @@ task docs, "":
exec "nim c -r -d:fusionDocJs src/fusion/docutils " & srcDir
# C
exec "nim c -r src/fusion/docutils " & srcDir

task testMulti, "Execute test suite with different GC options":
exec "nimble test"
when (NimMajor, NimMinor) >= (1, 2):
exec "nimble test --gc:arc"
exec "nimble test --gc:orc"