ryankee / concrete

Simple continuous integration server written with NodeJS and CoffeeScript
http://ryankee.github.com/concrete
MIT License
494 stars 96 forks source link

Scheduling & Examples #24

Closed psema4 closed 12 years ago

psema4 commented 12 years ago

Is there a mechanism to schedule job runs? I'd like to test a repo nightly, new commits or no.

I whipped up some asphault to try concrete but I'm wondering - are there any advanced examples to look at?

ryankee commented 12 years ago

Concrete doesn't offer an internal scheduling system, but it does have a manual build mechanism. You can send a POST to your concrete URL and it'll build the project. You could definitely set up a cron to fire off a curl to start a build.

As for advanced examples, it's basically just what you see in the docs. I'm planning a major rewrite to Concrete and I'll likely write a lot of documentation surrounding that.

psema4 commented 12 years ago

Awesome - thanks!