Re: [racket-users] Why does my package have no build status?

2018-10-04 Thread David Storrs
On Thu, Oct 4, 2018 at 9:34 AM Greg Hendershott wrote: > > As to the dependency, there's no reason that people need to have > handy/test-more (the testing framework I use for struct-plus-plus) > installed in order to use the module. > > Would it help to put `handy` in `build-deps` instead of

Re: [racket-users] Why does my package have no build status?

2018-10-04 Thread Greg Hendershott
> As to the dependency, there's no reason that people need to have > handy/test-more (the testing framework I use for struct-plus-plus) installed > in order to use the module. Would it help to put `handy` in `build-deps` instead of `deps`? > It's not clear to me how to use compile-omit-files

Re: [racket-users] Why does my package have no build status?

2018-10-03 Thread David Storrs
On Wed, Oct 3, 2018 at 12:13 PM Sam Tobin-Hochstadt wrote: > I'm not sure why you don't want to build some things. For example, the > .scrbl files need to be built to allow documentation to appear on > docs.racket-lang.org. However, the `compile-omit-files` key is what > you'd want to use. > >

Re: [racket-users] Why does my package have no build status?

2018-10-03 Thread Sam Tobin-Hochstadt
I'm not sure why you don't want to build some things. For example, the .scrbl files need to be built to allow documentation to appear on docs.racket-lang.org. However, the `compile-omit-files` key is what you'd want to use. Also, the build server runs your tests. You should just add a dependency.

Re: [racket-users] Why does my package have no build status?

2018-10-03 Thread David Storrs
Cool, thanks. How do I tell the server not to build anything aside from main.rkt? The rest of what's there is module-private helpers. I've looked through the docs on info.rkt and raco setup but had no luck. Also, how can I tell it to ignore certain dependencies? It uses handy/test-more for

Re: [racket-users] Why does my package have no build status?

2018-10-03 Thread Sam Tobin-Hochstadt
I'm not sure why the status is missing on pkgs.racket-lang.org, but here's the build status: http://pkg-build.racket-lang.org/server/built/fail/struct-plus-plus.txt Sam On Wed, Oct 3, 2018 at 10:45 AM David Storrs wrote: > > During RacketCon I posted struct-plus-plus to the packages list: >

[racket-users] Why does my package have no build status?

2018-10-03 Thread David Storrs
During RacketCon I posted struct-plus-plus to the packages list: https://pkgs.racket-lang.org/ Sadly, in the Build column it doesn't say "succeeds", "fails", or anything else...it's just a blank. What do I need to do differently so that it can play all the reindeer games? -- You received this