Guest User

Untitled

a guest
Aug 28th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 8.33 KB | None | 0 0
  1. Running with gitlab-runner 13.3.0 (86ad88ea)
  2.   on czltlab03 2gyPysKd
  3. Preparing the "docker" executor
  4. 00:03
  5. Using Docker executor with image tarampampam/node:12-alpine ...
  6. Pulling docker image tarampampam/node:12-alpine ...
  7. Using docker image sha256:ed417510cba132ccc6107534672425bb68e26b87b46d6cff279b788d406f6adb for tarampampam/node:12-alpine ...
  8. Preparing environment
  9. 00:02
  10. Running on runner-2gypyskd-project-12-concurrent-1 via czltlab03...
  11. Getting source from Git repository
  12. 00:02
  13. Fetching changes with git depth set to 50...
  14. Initialized empty Git repository in /builds/sig_linux/skoda-motorsport/skoda-motorsport-api/.git/
  15. Created fresh repository.
  16. Checking out f9af2946 as master...
  17. Skipping Git submodules setup
  18. Executing "step_script" stage of the job script
  19. 01:50
  20. $ command -v ssh-agent >/dev/null || ( apt-get update -y && apt-get install openssh-client -y )
  21. $ echo "$USER"
  22. $ eval $(ssh-agent -s)
  23. Agent pid 11
  24. $ echo "$SSH_PRIVATE_KEY" | tr -d '\r' | ssh-add -
  25. Identity added: (stdin) ((stdin))
  26. $ mkdir -p ~/.ssh
  27. $ chmod 700 ~/.ssh
  28. $ yarn install
  29. yarn install v1.22.4
  30. [1/4] Resolving packages...
  31. [2/4] Fetching packages...
  32. info fsevents@2.1.2: The platform "linux" is incompatible with this module.
  33. info "fsevents@2.1.2" is an optional dependency and failed compatibility check. Excluding it from installation.
  34. [3/4] Linking dependencies...
  35. [4/4] Building fresh packages...
  36. Done in 90.48s.
  37. $ yarn lint
  38. yarn run v1.22.4
  39. $ eslint --color .
  40. Done in 6.30s.
  41. $ yarn test
  42. yarn run v1.22.4
  43. $ jest --color --coverage
  44.  PASS  test/dummy.test.js
  45.   ✓ dummy (2ms)
  46. ----------|---------|----------|---------|---------|-------------------
  47. File      | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s
  48. ----------|---------|----------|---------|---------|-------------------
  49. All files |       0 |        0 |       0 |       0 |                  
  50. ----------|---------|----------|---------|---------|-------------------
  51. Test Suites: 1 passed, 1 total
  52. Tests:      1 passed, 1 total
  53. Snapshots:  0 total
  54. Time:       3.587s
  55. Ran all test suites.
  56. Done in 6.87s.
  57. $ echo $CI_COMMIT_BRANCH
  58. master
  59. $ git branch
  60. * (HEAD detached at f9af294)
  61. $ if [[ "$CI_COMMIT_BRANCH" =~ ^(master|next|stable)$ ]]; then
  62. $ yarn release
  63. yarn run v1.22.4
  64. $ semantic-release
  65. [3:27:12 PM] [semantic-release] › ℹ  Running semantic-release version 17.0.4
  66. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "verifyConditions" from "@semantic-release/changelog"
  67. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "verifyConditions" from "@semantic-release/exec"
  68. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "verifyConditions" from "@semantic-release/gitlab"
  69. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "verifyConditions" from "@semantic-release/git"
  70. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "analyzeCommits" from "@semantic-release/commit-analyzer"
  71. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "analyzeCommits" from "@semantic-release/exec"
  72. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "verifyRelease" from "@semantic-release/exec"
  73. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "generateNotes" from "@semantic-release/release-notes-generator"
  74. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "generateNotes" from "@semantic-release/exec"
  75. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "prepare" from "@semantic-release/changelog"
  76. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "prepare" from "@semantic-release/exec"
  77. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "prepare" from "@semantic-release/git"
  78. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "publish" from "@semantic-release/exec"
  79. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "publish" from "@semantic-release/gitlab"
  80. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "addChannel" from "@semantic-release/exec"
  81. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "success" from "@semantic-release/exec"
  82. [3:27:13 PM] [semantic-release] › ✔  Loaded plugin "fail" from "@semantic-release/exec"
  83. [3:27:13 PM] [semantic-release] › ✖  An error occurred while running semantic-release: Error: Command failed with exit code 128: git ls-remote --heads ssh://git@git.sprinx.cz:10022/sig_linux/skoda-motorsport/skoda-motorsport-api.git
  84. Host key verification failed.
  85. fatal: Could not read from remote repository.
  86. Please make sure you have the correct access rights
  87. and the repository exists.
  88.     at makeError (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/execa/lib/error.js:58:11)
  89.     at handlePromise (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/execa/index.js:114:26)
  90.     at processTicksAndRejections (internal/process/task_queues.js:97:5)
  91.     at async getBranches (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/lib/git.js:66:11)
  92.     at async module.exports (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/lib/branches/expand.js:6:23)
  93.     at async module.exports (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/lib/branches/index.js:14:26)
  94.     at async run (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/index.js:56:22)
  95.     at async module.exports (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/index.js:259:22)
  96.     at async module.exports (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/cli.js:55:5) {
  97.   shortMessage: 'Command failed with exit code 128: git ls-remote --heads ssh://git@git.sprinx.cz:10022/sig_linux/skoda-motorsport/skoda-motorsport-api.git',
  98.   command: 'git ls-remote --heads ssh://git@git.sprinx.cz:10022/sig_linux/skoda-motorsport/skoda-motorsport-api.git',
  99.   exitCode: 128,
  100.   signal: undefined,
  101.   signalDescription: undefined,
  102.   stdout: '',
  103.   stderr: 'Host key verification failed.\r\n' +
  104.     'fatal: Could not read from remote repository.\n' +
  105.     '\n' +
  106.     'Please make sure you have the correct access rights\n' +
  107.     'and the repository exists.',
  108.   failed: true,
  109.   timedOut: false,
  110.   isCanceled: false,
  111.   killed: false
  112. }
  113. Error: Command failed with exit code 128: git ls-remote --heads ssh://git@git.sprinx.cz:10022/sig_linux/skoda-motorsport/skoda-motorsport-api.git
  114. Host key verification failed.
  115. fatal: Could not read from remote repository.
  116. Please make sure you have the correct access rights
  117. and the repository exists.
  118.     at makeError (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/execa/lib/error.js:58:11)
  119.     at handlePromise (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/execa/index.js:114:26)
  120.     at processTicksAndRejections (internal/process/task_queues.js:97:5)
  121.     at async getBranches (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/lib/git.js:66:11)
  122.     at async module.exports (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/lib/branches/expand.js:6:23)
  123.     at async module.exports (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/lib/branches/index.js:14:26)
  124.     at async run (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/index.js:56:22)
  125.     at async module.exports (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/index.js:259:22)
  126.     at async module.exports (/builds/sig_linux/skoda-motorsport/skoda-motorsport-api/node_modules/semantic-release/cli.js:55:5) {
  127.   shortMessage: 'Command failed with exit code 128: git ls-remote --heads ssh://git@git.sprinx.cz:10022/sig_linux/skoda-motorsport/skoda-motorsport-api.git',
  128.   command: 'git ls-remote --heads ssh://git@git.sprinx.cz:10022/sig_linux/skoda-motorsport/skoda-motorsport-api.git',
  129.   exitCode: 128,
  130.   signal: undefined,
  131.   signalDescription: undefined,
  132.   stdout: '',
  133.   stderr: 'Host key verification failed.\r\n' +
  134.     'fatal: Could not read from remote repository.\n' +
  135.     '\n' +
  136.     'Please make sure you have the correct access rights\n' +
  137.     'and the repository exists.',
  138.   failed: true,
  139.   timedOut: false,
  140.   isCanceled: false,
  141.   killed: false
  142. }error Command failed with exit code 1.
  143. info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
  144. ERROR: Job failed: exit code 1
Add Comment
Please, Sign In to add comment