I'm new to concourse and really excited to start working with it but I have a problem running the hello world example described here: https://concourse-ci.org/hello-world.html (example with time resource)
I'm running this example on Mac OS X (El Capitan) with a standalone binary of concourse. I slightly edited my pipeline for mac to look like this:
resources:
- name: every-1m
type: time
source:
interval: 1m
jobs:
- name: navi
plan:
- get: every-1m
trigger: true
- task: annoy
config:
platform: darwin
run:
path: echo
args: ["Hey! Listen!"]
But for some reason the time resource is not triggered. The job 'navi' is never started. Any idea why this would happen? Does it have anything to do with OS X?
When I directly trigger the navi job I get the following: every 1m - no versions available (image)