Last active
August 29, 2015 14:17
-
-
Save mikegehard/0de4097da14a1bba158f to your computer and use it in GitHub Desktop.
Revisions
-
mikegehard revised this gist
Mar 23, 2015 . 2 changed files with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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 in UI and fly execute. This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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" in UI but works with fly execute. -
mikegehard created this gist
Mar 23, 2015 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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.... This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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" This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal 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`