I can see test.git is successfully created (so paths, permissions and gitlab-shell is working correctly), but only wiki is failing. I have tried creating more projects all have the same problem.
sudo ls /var/lib/gitlab/repositories/root/test.git
Designs
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related or that one is blocking others.
Learn more.
gitlab:check is failing now. I think it needs a newer gitlab_git.
fatal: Not a git repository (or any of the parent directories): .git Checking GitLab Shell ...GitLab Shell version >= 2.6.10 ? ... OK (2.6.10) Repo base directory exists? ... yesRepo base directory is a symlink? ... noRepo base owned by gitlab:gitlab? ... yesRepo base access is drwxrws---? ... yeshooks directories in repos are links: ... Administrator / test ... rake aborted!NoMethodError: undefined method `branch_count' for #<Gitlab::Git::Repository:0x00000008710428>/usr/share/gitlab/app/models/repository.rb:60:in `has_visible_content?'/usr/share/gitlab/app/models/project.rb:634:in `empty_repo?'/usr/share/gitlab/lib/tasks/gitlab/check.rake:486:in `block in check_repos_hooks_directory_is_link'/usr/share/gitlab/lib/tasks/gitlab/check.rake:482:in `check_repos_hooks_directory_is_link'/usr/share/gitlab/lib/tasks/gitlab/check.rake:366:in `block (3 levels) in <top (required)>'Tasks: TOP => gitlab:check => gitlab:gitlab_shell:check(See full trace by running task with --trace)
That flies completely against how GitLab is developed and meant to be deployed.
GitLab has many Gem dependencies that are pinned in Gemfile.lock only. If you do not use exactly those Gem versions specified in Gemfile.lock in your packaged version anything can break in any GitLab release that you package.
@pravi maybe I misunderstand. Are you saying that you are translating Gemfile.lock into a control file? If we can do that maybe we can make it work (although I am not sure what it would mean for GitLab's chances to coexist with other Ruby programs that share its dependencies if GitLab's control file has super strict version dependencies).
Usually we prefer to move up to newer versions. @rspeicher has been doing the gem updates mostly. There were discussions with @dzaporozhets on this topic, I can't find the exact issue right now.
We have not identified any specific issues that are blocking, but major version difference is more likely to creaye issues, so focusing on them would be nice.
I have already started work on getting this to debian stable.
https://gitlab.pxq.in is running the native debian package (only manual steps were getting ssl certificate, that too automated via letsencrypt command and configuring email, which is already fixed in git).
Note: confirmation emails are delivered to spam at the moment. Adding SPF record might help there, got to check that.
@pravi wow, testing in 4-5 days from now and stable after that would be awesome!
We're pretty busy with 8.5 right now (first rc made) so I don't think that we'll do any updates. But please let me know if something becomes a blocker.
I looked at https://gitlab.pxq.in/ but it gives a 500 error right now. Yesterday I was so excited about all this that I upgraded an ubuntu instance to 16.04 to see if I could install it already, while I managed to upgrade from the command line I didn't set the right package server to find it. But knowing that it is this close I'll just wait for it to land in stable. I can't wait to announce that it landed.
You can add deb http://debian.sil.at/debian/ sid main to your sources.list and try apt-get update && apt-get install gitlab once you see 8.4.3+dfsg-4 is available (apt-cache policy gitlab).
@pravi I'm impatient and I gave it a go but I got a The following signatures couldn't be verified because the public key is not available: NO_PUBKEY CE1F9C674512C22A. Don't help me, please just carry on with the packaging work. I just said it to show I care
@sytses systemd is giving me a hard time. I got to follow FHS and move all files modified at runtime to /var and /run. /run needs extra handling as /run/gitlab should be recreated at every reboot. I got help from debian-devel list. Currently the package is broken when trying to move pids and sockets to /run/gitlab. I will let you know once its fixed. gitlab-workhorse is running, but nginx get 'Permission Denied' error. I have to allow www-data user to access gitlab-workhorse.socket
@sytses I have fixed the issue and uploaded to debian.org main repo. You can remove my people.debian.org/~praveen repo and install when 8.4.3+dfsg-8 is available (may take a few hours to see it after upload).
Making gitlab FHS compliant (move gitlab user's home to /var) is the last rc bug now.
Also the current test machine we use (gitlab.pxq.in) is an openvz vm on a wheezy host so it does not have systemd. We are trying to get another test machine with systemd. Currently I have to stop X in my 2GB laptop to get gitlab to run.
@sytses@pravi I just find out that debian package does not use Gemfile.lock. I think we should do something with it. Its absolutely unacceptable to have GitLab running on different dependencies then ANY other GitLab installation. If someone has a problem (bug) with GitLab deb package we would never find out neither we can reproduce it. Its disaster from software development and support perspective.
I see no other option
Make sure gems from our Gemfile.lock are available on Debian by either packing gems or changing our Gemfile.lock.
@dzaporozhets I understand your concern but unfortunately Debian packaging works different than Bundler packaging. @pravi is doing a great job creating issues to keep GitLab and Discourse in sync so we can use the same version of gems that we share. I see no other solution.
@sytses@pravi I understand why it works this way now and I completely agree @pravi is doing a great job so far.
Still I am wondering if we can improve it in next iteration. I have a next proposal. If we can not make Debian with with our Gemfile.lock can we at least build another Gemfile.lock for Debian only for next purpose:
it takes no efforts expect once running bundle install on Debian package and saving file somewhere
it ensures Debian package of GitLab uses same dependencies across different machines
any developer can download this Gemfile.lock file and reproduce application state on own machine
@dzaporozhets just stating here for the record. We now run about 700 tests with debian's Gemfile.lock so we can find out if there is any issues.
Finished in 8 minutes 7 seconds (files took 13.63 seconds to load)700 examples, 0 failures
We can run only this much because gitlab tests are expecting to be run only with RAILS_ENV=test and we run tests with RAILS_ENV=production (a fully installed package). I'm planning to make tests run with RAILS_ENV=test in debian so we can more confidently support debian's Gemfile.lock. See https://gitlab.com/gitlab-org/gitlab-ce/issues/22291 for a background.
@dzaporozhets we are at 4881 tests now we are increasing the test coverage gradually. We are skipping some failing tests for now, some of them could be missing configuration, others would need more more investigation.