Skip to content

Commit

Permalink
breakout arc branch
Browse files Browse the repository at this point in the history
  • Loading branch information
disruptek committed Apr 25, 2020
1 parent 65e3d47 commit 39d9429
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
# nimph
- `gc:refc` and `gc:arc` [![Build Status](https://travis-ci.org/disruptek/nimph.svg?branch=master)](https://travis-ci.org/disruptek/nimph)
- `gc:refc` [![Build Status](https://travis-ci.org/disruptek/nimph.svg?branch=master)](https://travis-ci.org/disruptek/nimph)
- `gc:arc` _proceed at your own risk!_ [![Build Status](https://travis-ci.org/disruptek/nimph.svg?branch=arc)](https://travis-ci.org/disruptek/nimph)

nim package hierarchy manager from the future

or: _How I Learned to Stop Worrying and Love the Search Path_

## PSA: NIMPH IS CURRENTLY UNSAFE ON --gc:arc

## Features

- truly path-agnostic dependencies
Expand Down
7 changes: 4 additions & 3 deletions nimph.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ proc execTest(test: string) =
execCmd "nim c -r " & test
execCmd "nim c -d:release -r " & test
execCmd "nim c -d:danger -r " & test
when NimMajor >= 1 and NimMinor >= 1:
execCmd "nim c --gc:arc -r " & test
execCmd "nim c --gc:arc -d:danger -r " & test
when false:
when NimMajor >= 1 and NimMinor >= 1:
execCmd "nim c --gc:arc -r " & test
execCmd "nim c --gc:arc -d:danger -r " & test

# cpp is broken
# execCmd "nim cpp -r " & test
Expand Down

0 comments on commit 39d9429

Please sign in to comment.