Connecting to 10.0.2.15:8080 (10.0.2.15:8080)- 100% |*******************************| 361 0:00:00 ETAinitializing with docker:///ubuntu#14.04running testfailed
---platform: linuximage: docker:///ubuntu#14.04run:path: test
#!/bin/bashecho "START"echo "END"
resources:- name: controllertype: timesource:interval: 1jobs:- name: controller-testbuild: test/build.ymlinputs:- resource: controller
Interval is a duration so it needs a unit specified. So just "1" may be failing to parse, or end up as the base time unit (nanoseconds), not sure which. Try changing it to something like 1m (for 1 minute)?
--
You received this message because you are subscribed to a topic in the Google Groups "Concourse Users" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/concourse-ci/KlJwqNtB1Wo/unsubscribe.
To unsubscribe from this group and all its topics, send an email to concourse-ci...@googlegroups.com.
To post to this group, send email to concou...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/concourse-ci/78da5c84-7741-4915-82c6-1326eb75343b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
resources:- name: controllertype: timesource:
interval: 1m
jobs:- name: controller-testbuild: test/build.ymlinputs:- resource: controller