Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.21 KB | None | 0 0
  1. ~/C/t/t/0/deadlock (master|5) $ tpcc commit
  2. --------------------------------------------------------------------------------
  3. Hello, dmitry!
  4.  
  5. Command running: ['commit']
  6. Platform: Linux-4.14.98-1-MANJARO-x86_64-with-arch-Manjaro-Linux
  7. C++ compiler: /usr/local/bin/clang++ (clang version 7.0.1 (tags/RELEASE_701/final))
  8. Python: 3.7.2, CPython, /home/dmitry/Code/tpcc-course-2019/client/venv/bin/python
  9. Repository root directory: /home/dmitry/Code/tpcc-course-2019
  10. Git current commit: 82c76066fcd92049d98254894bb673b131cd266a
  11.  
  12. Checking ['test.cpp'] with clang-tidy (/usr/bin/clang-tidy)
  13. 23173 warnings generated.
  14. Applying clang-format (/usr/bin/clang-format) to ['test.cpp']
  15.  
  16. Moving to repo /home/dmitry/Code/solutions
  17. Running git: ['checkout', 'master']
  18. Already on 'master'
  19. Your branch is up to date with 'origin/master'.
  20. Switching to task branch '0-intro/deadlock'
  21. Running git: ['checkout', '0-intro/deadlock']
  22. error: pathspec '0-intro/deadlock' did not match any file(s) known to git
  23. Running git: ['checkout', '-b', '0-intro/deadlock']
  24. Switched to a new branch '0-intro/deadlock'
  25. Copying solution files: ['test.cpp']
  26. Adding solution files to index
  27. Running git: ['add', 'test.cpp']
  28. Running git: ['add', '.gitlab-ci.yml']
  29. Running git: ['diff', '--staged', '.']
  30. Committing task solution
  31. Running git: ['commit', '-m', 'Bump task 0-intro/deadlock']
  32. [0-intro/deadlock dbbb5ce] Bump task 0-intro/deadlock
  33.  2 files changed, 77 insertions(+)
  34.  create mode 100644 .gitlab-ci.yml
  35.  create mode 100644 0-intro/deadlock/test.cpp
  36. Running git: ['checkout', 'master']
  37. Switched to branch 'master'
  38. Your branch is up to date with 'origin/master'.
  39.  
  40. Done
  41. ~/C/t/t/0/deadlock (master|5) $ tpcc push
  42. --------------------------------------------------------------------------------
  43. Hello, dmitry!
  44.  
  45. Command running: ['push']
  46. Platform: Linux-4.14.98-1-MANJARO-x86_64-with-arch-Manjaro-Linux
  47. C++ compiler: /usr/local/bin/clang++ (clang version 7.0.1 (tags/RELEASE_701/final))
  48. Python: 3.7.2, CPython, /home/dmitry/Code/tpcc-course-2019/client/venv/bin/python
  49. Repository root directory: /home/dmitry/Code/tpcc-course-2019
  50. Git current commit: 82c76066fcd92049d98254894bb673b131cd266a
  51.  
  52. Moving to repo /home/dmitry/Code/solutions
  53. Running git: ['checkout', '0-intro/deadlock']
  54. Switched to branch '0-intro/deadlock'
  55. Running git: ['push', 'origin', '0-intro/deadlock']
  56. Username for 'https://gitlab.com': inyutin
  57. Password for 'https://inyutin@gitlab.com':
  58. warning: redirecting to https://gitlab.com/mipt-tpcc-course-2019/inyutin.git/
  59. Enumerating objects: 7, done.
  60. Counting objects: 100% (7/7), done.
  61. Delta compression using up to 8 threads
  62. Compressing objects: 100% (4/4), done.
  63. Writing objects: 100% (6/6), 979 bytes | 489.00 KiB/s, done.
  64. Total 6 (delta 0), reused 0 (delta 0)
  65. remote:
  66. remote: To create a merge request for 0-intro/deadlock, visit:
  67. remote:   https://gitlab.com/mipt-tpcc-course-2019/inyutin/merge_requests/new?merge_request%5Bsource_branch%5D=0-intro%2Fdeadlock
  68. remote:
  69. To https://gitlab.com/mipt-tpcc-course-2019/inyutin
  70.  * [new branch]      0-intro/deadlock -> 0-intro/deadlock
  71. Running git: ['checkout', 'master']
  72. Switched to branch 'master'
  73. Your branch is up to date with 'origin/master'.
  74.  
  75. Done
  76. ~/C/t/t/0/deadlock (master|5) $ tpcc merge
  77. --------------------------------------------------------------------------------
  78. Hi, dmitry!
  79.  
  80. Command running: ['merge']
  81. Platform: Linux-4.14.98-1-MANJARO-x86_64-with-arch-Manjaro-Linux
  82. C++ compiler: /usr/local/bin/clang++ (clang version 7.0.1 (tags/RELEASE_701/final))
  83. Python: 3.7.2, CPython, /home/dmitry/Code/tpcc-course-2019/client/venv/bin/python
  84. Repository root directory: /home/dmitry/Code/tpcc-course-2019
  85. Git current commit: 82c76066fcd92049d98254894bb673b131cd266a
  86.  
  87. Creating merge request...
  88.  
  89. 401: 401 Unauthorized
  90. Traceback (most recent call last):
  91.   File "/home/dmitry/Code/tpcc-course-2019/client/client.py", line 651, in main
  92.     args.cmd(args)
  93.   File "/home/dmitry/Code/tpcc-course-2019/client/client.py", line 527, in merge_command
  94.     solutions.merge(current_task)
  95.   File "/home/dmitry/Code/tpcc-course-2019/client/tpcc/solutions.py", line 207, in merge
  96.     gitlab_client.auth()
  97.   File "/home/dmitry/Code/tpcc-course-2019/client/venv/lib/python3.7/site-packages/gitlab/__init__.py", line 201, in auth
  98.     self._token_auth()
  99.   File "/home/dmitry/Code/tpcc-course-2019/client/venv/lib/python3.7/site-packages/gitlab/__init__.py", line 214, in _token_auth
  100.     self.user = self._objects.CurrentUserManager(self).get()
  101.   File "/home/dmitry/Code/tpcc-course-2019/client/venv/lib/python3.7/site-packages/gitlab/exceptions.py", line 251, in wrapped_f
  102.     return f(*args, **kwargs)
  103.   File "/home/dmitry/Code/tpcc-course-2019/client/venv/lib/python3.7/site-packages/gitlab/mixins.py", line 68, in get
  104.     server_data = self.gitlab.http_get(self.path, **kwargs)
  105.   File "/home/dmitry/Code/tpcc-course-2019/client/venv/lib/python3.7/site-packages/gitlab/__init__.py", line 532, in http_get
  106.     streamed=streamed, **kwargs)
  107.   File "/home/dmitry/Code/tpcc-course-2019/client/venv/lib/python3.7/site-packages/gitlab/__init__.py", line 506, in http_request
  108.     response_body=result.content)
  109. gitlab.exceptions.GitlabAuthenticationError: 401: 401 Unauthorized
  110. ~/C/t/t/0/deadlock (master|5) [1] $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement