Advertisement
Guest User

Untitled

a guest
Jun 30th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. ---
  2. resource_types:
  3. - name: maven
  4. type: docker-image
  5. source:
  6. repository: patrickcrocker/maven-resource
  7. tag: latest
  8.  
  9. resources:
  10. - name: maven-snapshot
  11. type: maven
  12. source:
  13. url: http://{{hostname}}:8081/repository/maven-snapshots/
  14.  
  15. - name: repo
  16. type: git
  17. source:
  18. uri: "git@bitbucket.org:foo/bar.git"
  19. branch: master{{hostname}}
  20.  
  21. resources:
  22. resource maven-snapshot has been added:
  23. name: maven-snapshot
  24. type: maven
  25. source:
  26. url: http://"localhost":8081/repository/maven-snapshots/
  27.  
  28. resource repo has been added:
  29. name: repo
  30. type: git
  31. source:
  32. branch: master"localhost"
  33. uri: git@bitbucket.org:foo/bar.git
  34.  
  35. resource types:
  36. resource type maven has been added:
  37. name: maven
  38. type: docker-image
  39. source:
  40. repository: patrickcrocker/maven-resource
  41. tag: latest
  42.  
  43. failed to unmarshal configStructure: yaml: line 17: did not find expected key
  44.  
  45. resources:
  46. - name: maven-snapshot
  47. type: maven
  48. source:
  49. url: http://((hostname)):8081/repository/maven-snapshots/
  50.  
  51. ftp-username: username
  52. ftp-password: password
  53. ftp-uri: 192.168.1.2
  54. ftp-dir: home/ftp/
  55.  
  56. ftp-uri-combined: ftp://{{ftp-username}}:{{ftp-password}}@{{ftp-uri}}/{{ftp-dir}}
  57.  
  58. ftp-uri-combined-html5: {{ftp-uri-combined}}html5
  59. ftp-uri-combined-android: {{ftp-uri-combined}}android
  60.  
  61. #!/usr/bin/env sh
  62. TEMP=$(mktemp)
  63.  
  64. java -jar inline-yaml.jar $3 ${TEMP};
  65. fly -t lite set-pipeline -p $2 -c $1 --load-vars-from ${TEMP};
  66.  
  67. rm ${TEMP};
  68.  
  69. ./create-pipeline.sh build-plan.yml build-plan-name config.yml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement