Skip to content

Commit

Permalink
enable ORC for nimble (#1074)
Browse files Browse the repository at this point in the history
* Revert "test against the devel branch"

* Apply suggestions from code review

* no more stable

* remove another flag from the config
  • Loading branch information
ringabout authored Nov 13, 2023
1 parent bd9651a commit 9f3c808
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- ubuntu-latest
nimversion:
- devel
- stable
# - stable
name: ${{ matrix.os }} - ${{ matrix.nimversion }}
runs-on: ${{ matrix.os }}
env:
Expand All @@ -33,7 +33,7 @@ jobs:
- name: Run nim c -r tester
run: |
cd tests
nim c -r --mm:refc tester
nim c -r tester
# there's no need to add nimblepkg unit tests --
# they are run by tmoduletests.nim
- run: ./src/nimble install -y
2 changes: 1 addition & 1 deletion nimble.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ before build:

task test, "Run the Nimble tester!":
withDir "tests":
exec "nim c -r --gc:refc tester"
exec "nim c -r tester"
1 change: 0 additions & 1 deletion src/nimble.nim.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@
#--noNimblePath
--path:"$nim/"
--path:"./vendor/nim"
--mm:refc
-d:ssl
-d:nimcore # Enable 'gorge' in Nim's VM. See https://github.com/nim-lang/Nim/issues/8096
1 change: 0 additions & 1 deletion tests/nim.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
--path:"$nim/"
--path:"../src/"
--mm:refc

0 comments on commit 9f3c808

Please sign in to comment.