Skip to content

Instantly share code, notes, and snippets.

@mikegehard
Last active August 29, 2015 14:17
Show Gist options
  • Save mikegehard/0de4097da14a1bba158f to your computer and use it in GitHub Desktop.
Save mikegehard/0de4097da14a1bba158f to your computer and use it in GitHub Desktop.

Revisions

  1. mikegehard revised this gist Mar 23, 2015. 2 changed files with 2 additions and 2 deletions.
    2 changes: 1 addition & 1 deletion gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -17,4 +17,4 @@ image: docker:///golang
    run:
    path: harvey/bin/unit_tests.sh

    Works fine....
    Works fine in UI and fly execute.
    2 changes: 1 addition & 1 deletion gistfile2.txt
    Original file line number Diff line number Diff line change
    @@ -17,4 +17,4 @@ run:
    path: harvey/bin/unit_tests.sh


    Fails with "file not found"
    Fails with "file not found" in UI but works with fly execute.
  2. mikegehard created this gist Mar 23, 2015.
    20 changes: 20 additions & 0 deletions gistfile1.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    BOSH manifest
    ++++++++++++++++++
    jobs:
    - name: harvey
    plan:
    - aggregate:
    - get: harvey
    - task: unit-tests
    file: harvey/concourse/unit-tests.yml

    unit-tests.yml
    +++++++++++++++++++
    ---
    platform: linux
    image: docker:///golang

    run:
    path: harvey/bin/unit_tests.sh

    Works fine....
    20 changes: 20 additions & 0 deletions gistfile2.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    BOSH manifest
    ++++++++++++++++++
    jobs:
    - name: harvey
    plan:
    - get: harvey
    - task: unit-tests
    file: harvey/concourse/unit-tests.yml

    unit-tests.yml
    +++++++++++++++++++
    ---
    platform: linux
    image: docker:///golang

    run:
    path: harvey/bin/unit_tests.sh


    Fails with "file not found"
    19 changes: 19 additions & 0 deletions gistfile3.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    BOSH manifest
    ++++++++++++++++++
    jobs:
    - name: harvey
    plan:
    - get: harvey
    - task: unit-tests
    file: concourse/unit-tests.yml

    unit-tests.yml
    +++++++++++++++++
    ---
    platform: linux
    image: docker:///golang

    run:
    path: bin/unit_tests.sh

    Works in UI but fails with `fly execute -c concourse/unit-tests.yml`