Use GitLab CI to build Docker images using a private container registry

2019-07-05 Thread Joey Dumont
Hi, We have an on-prem GitLab installation and use GitLab CI with on-prem servers. I have setup a private Docker container registry on one of the build servers. I can use this private container registry with GitLab CI properly. However, I would like to be able to build Docker images from

Re: Retrigger build for all branches after gitlab-ci changes

2019-06-10 Thread gi-tux
The pipeline definition only changes in the branch(es) that you change it in. This is not universal across all branches, thus triggering a build in a branch in which the pipeline hasn't changed would not really have the effect that you are desiring. The only way to make this work is to make t

GitLab CI cron jobs are delayed

2019-05-20 Thread Jason Hsu
I’m using GitLab CI to build a series of Docker images. I have cron scheduling set up to build these images on a schedule, but I’m finding that some of the builds are always delayed. Are there any particular reasons that builds are often delayed? Are there certain times that are

Retrigger build for all branches after gitlab-ci changes

2019-05-17 Thread Jan Hentschel
Hi, I have some pipelines defined in a separate project, which are then used via an include in the actual project. What I'm trying to achieve is to retrigger builds for all branches in the actual project if their GitLab pipeline definition has changed. Does anyone has an idea on how to do that?

Using Azure Container Service with gitlab ce and gitlab ci

2018-10-21 Thread Matt Davies
Hi everyone Has anyone got any good links to documentation or tips about hooking up our gitlab ce on premise server with Azure Container Service? Any help or tips greatly appreciated -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe f

Getting started with Angular 6, GitLab CI/CD and Google App Engine

2018-10-09 Thread alexandraisousasantos
Hello, A friend of mine wrote a detailed guide about installing and setting up GitLab along with Angular 6 and Google Cloud. https://revs.runtime-revolution.com/getting-started-with-angular-6-gitlab-ci-cd-and-google-app-engine-b1118efcdf69 Feedback would be very appreciated! Thanks -- You

Two GitLab Runners with tags, Two Environments, one Gitlab-CI YML

2018-08-30 Thread T.J. Maher
When I was testing on just DEV, it was easy. One pipeline to set up one set of tests used one gitlab-ci.yml file which had one Gitlab Runner which had permission to go to the DEV server, called up by: tags: - dev # BUILD STAGE verify_navigation: stage: build script: - bundle exec

GitLab CI to install, configure and run a service on a remote host

2018-01-19 Thread Maiken Pedersen
Hi! I want to use the GitLab CI to 1) build source code 2) create rpms 3) take these rpms and install and configure the software on a remote machine 1) and 2) are more or less ok, and I have already implemented this in our GitLab CI. When it comes to 3): I will have a set of persistent

gitlab-ci build failing with an 403 error

2017-12-20 Thread cc
i am trying to set up gitlab runner for a project, and when i try to run the build i am getting an 403 error. Where can i check the build logs other than doing systemctl status gitlab-runner? git-lab-runner Version: 9.5.1 **build error:** Running with gitlab-ci-multi-runner 9.5.1

Re: Rename directory on cloning or fetching repository in gitlab-ci-multirunner CI

2017-06-13 Thread Aleksey Tsalolikhin
> -- >> Need training on CFEngine, Git or Time Management? Email >> trai...@verticalsysadmin.com. >> >> On Fri, Jun 9, 2017 at 2:02 AM, johannes amorosa >> wrote: >> >>> Is there a way to control how gitlab-ci-mutlirunner is cloning/fetching >>

Re: Rename directory on cloning or fetching repository in gitlab-ci-multirunner CI

2017-06-13 Thread johannes amorosa
gt; wrote: > >> Is there a way to control how gitlab-ci-mutlirunner is cloning/fetching >> the repository. >> >> What I specifically need is to clone/fetch the repo to a new directory >> name. >> >> This is like a standard git clone with added new name: >

Re: Rename directory on cloning or fetching repository in gitlab-ci-multirunner CI

2017-06-12 Thread Aleksey Tsalolikhin
Hi Johannes. Why do you want to clone the repo to a different directory name? ᐧ -- Need training on CFEngine, Git or Time Management? Email train...@verticalsysadmin.com. On Fri, Jun 9, 2017 at 2:02 AM, johannes amorosa wrote: > Is there a way to control how gitlab-ci-mutlirunner is clon

Rename directory on cloning or fetching repository in gitlab-ci-multirunner CI

2017-06-09 Thread johannes amorosa
Is there a way to control how gitlab-ci-mutlirunner is cloning/fetching the repository. What I specifically need is to clone/fetch the repo to a new directory name. This is like a standard git clone with added new name: git clone git@gitlab:dev-op/repo_name.git newname Thanks for your time

Re: Gitlab CI builds/register Highest throughput call on Gitlab?

2017-03-09 Thread Alexandru Keszeg
e logs for builds/register to get the IP's. > > What do you think about my other question, is it normal to have 100 000 > requests over a few days from gitlab ci runners? > > > On Wednesday, March 8, 2017 at 3:40:43 PM UTC+2, Aleksey Tsalolikhin wrote: > >> I&#x

Re: Gitlab CI builds/register Highest throughput call on Gitlab?

2017-03-08 Thread Aleksey Tsalolikhin
u Keszeg" wrote: I ended up grepping the logs for builds/register to get the IP's. What do you think about my other question, is it normal to have 100 000 requests over a few days from gitlab ci runners? On Wednesday, March 8, 2017 at 3:40:43 PM UTC+2, Aleksey Tsalolikhin wrote: &

Re: Gitlab CI builds/register Highest throughput call on Gitlab?

2017-03-08 Thread Alexandru Keszeg
I ended up grepping the logs for builds/register to get the IP's. What do you think about my other question, is it normal to have 100 000 requests over a few days from gitlab ci runners? On Wednesday, March 8, 2017 at 3:40:43 PM UTC+2, Aleksey Tsalolikhin wrote: > > I've never

Re: Gitlab CI builds/register Highest throughput call on Gitlab?

2017-03-08 Thread Aleksey Tsalolikhin
agement? Email train...@verticalsysadmin.com. On Wed, Mar 8, 2017 at 2:41 AM, Alexandru Keszeg wrote: > Hello, > > I'm managing a gitlab instance with about 9 gitlab ci runners configured. > > `v1: /builds/register(POST)` is the highest throughput request at 182 rpm > and

Gitlab CI builds/register Highest throughput call on Gitlab?

2017-03-08 Thread Alexandru Keszeg
Hello, I'm managing a gitlab instance with about 9 gitlab ci runners configured. `v1: /builds/register(POST)` is the highest throughput request at 182 rpm and 22% total time consumed on the server. Here is an image with the top transactions, and as you can see, the usual traffic is b

How to cache in gitlab CI and use cached dependencies in other stages?

2016-12-21 Thread keee
How should i cache the dependencies in gitlab ci I need to cache the *coursier* and use them in the test stage of the build . https://github.com/alexarchambault/coursier Thanks -- You received this message because you are subscribed to the Google Groups "GitLab" group. To u

Re: Support for private container registries in GitLab CI builds

2016-11-24 Thread Jeff Hutchins
27;ve confirmed that the base64 decocded value of auth is the proper username and password joined with a semicolon and that I can run docker pull registry.gitlab.com/boltvoice/go-builder:master with success locally but when I run my job I get Running with gitlab-ci-multi-runner 1.8.0-rc.1 (1

Re: Support for private container registries in GitLab CI builds

2016-11-24 Thread Aleksey Tsalolikhin
Dear Jeff, I assume you are referring to the below in the release notes. It certainly reads like you should be able to use any container registry. What happens when you try? What have you tried to troubleshoot it? Best, Aleksey Support for private container registries in GitLab CI builds In

Support for private container registries in GitLab CI builds

2016-11-23 Thread Jeff Hutchins
After reading through the release notes for gitlab 8.14 at https://about.gitlab.com/2016/11/22/gitlab-8-14-released/ I assumed I'd be able to use docker images from my private registry on gitlab.com. This doesn't appear to be the case even if I follow the instructions at https://docs.gitlab.com

Re: Gitlab CI has problems with downloading packages from the internet.

2016-11-22 Thread Aleksey Tsalolikhin
Exactly. You can start a container in interactive mode to troubleshoot: docker run -ti See also: https://norasky.wordpress.com/2015/06/09/docker-tips/ Best, Aleksey -- Need training on GitLab? Email train...@verticalsysadmin.com. On Tue, Nov 22, 2016 at 7:17 AM, Pavithra Murari wrote: >

Re: Gitlab CI has problems with downloading packages from the internet.

2016-11-22 Thread Pavithra Murari
It ends up with 0 byte files and suspect connectivity issue. On Tuesday, November 22, 2016 at 7:23:37 PM UTC+5:30, Aleksey Tsalolikhin wrote: > > Does this happen every time? > > What are the URLs of the files you are trying to download? If you included > URLs in your original email, they di

Re: Gitlab CI has problems with downloading packages from the internet.

2016-11-22 Thread Aleksey Tsalolikhin
Does this happen every time? What are the URLs of the files you are trying to download? If you included URLs in your original email, they did not come across. Is NPM actually downloading anything or is it ending up with 0 byte files? On Tue, Nov 22, 2016 at 5:37 AM, Pavithra Murari wrote: > N

Gitlab CI has problems with downloading packages from the internet.

2016-11-22 Thread Pavithra Murari
Npm, our package manager, tries to download the dependencies. These files that I linked are downloaded corrupted as their checksum differs from the expected checksum. I downloaded the packages manually to an instance in Cloud and they were downloaded successfully with the expected checksum.

Error in Gitlab-CI

2016-10-21 Thread Rémy Léone
Hello, Problem: Continous Integration fails no matter what code is pushed. gitlab CI gives me the following error in the logs: ERROR: Preparation failed: build directory needs to be absolute and non-root path Is anybody familiar with this kind of error and how to solve it? Here is my

Re: Toggle shared runners for gitlab-ci projects via API

2016-10-14 Thread Mathieu A.
I'm trying to find a way to toggle shared runners for a project via the > gitlab-ci API and i cannot find any documentation or option in order to do > so. > > I would appreciate some directions to be able to automate this step. > > Thank you, > > Roger > > >

Re: [Gitlab CI]

2016-09-20 Thread Drew Blessing
Hi Reinout, The CI artifacts are mostly meant to hold binary artifacts, and files to share between CI stages. It's not meant to be a place to view rendered docs from a build. You may be able to upload some of these documents to the `public/` directory and publish it using GitLab Pages (requires

Re: Gitlab CI shell on Windows only runs before_script

2016-09-20 Thread Drew Blessing
I'm glad to hear this has been resolved. -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe from this group and stop receiving emails from it, send an email to gitlabhq+unsubscr...@googlegroups.com. To view this discussion on the web visi

Re: Gitlab CI shell on Windows only runs before_script

2016-09-19 Thread dsbert
tags: > - javascript > script: > - eslint */** > > apidoc: > stage: deploy > tags: > - javascript > script: > - apidoc -e node_modules -o c:\docs\api\ > > > Here is the total output from the lint job. The only thing shown is the > npm

[Gitlab CI]

2016-08-31 Thread Reinout van Schouwen
Hi all, I just posted this question on SO: http://stackoverflow.com/questions/39250834/moving-artifact-from-gitlab-ci-to-project-wiki-page My question is how to automatically upload the asciidoc artifacts resulting from a CI job as wiki pages in my Gitlab project. I can browse the public

Re: Gitlab CI shell on Windows only runs before_script

2016-08-29 Thread dsbert
ried appear the same. Running with gitlab-ci-multi-runner 1.4.2 (bcc1794) Using Shell executor... Running on US2976NB... Fetching changes... Removing node_modules/ HEAD is now at 800016a Fix eslint glob >From http://redacted 5030d8a..c66df4a feature/sequelize -> origin/feature/sequeliz

Re: Gitlab CI shell on Windows only runs before_script

2016-08-23 Thread Drew Blessing
Can you show the syntax you used to add both script lines to the actual job? Also, please share the build output if you can (sanitize stuff, if necessary). What runner version are you using? -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubsc

Re: [GitLab CI] How to pull from GitLab's Docker Registry in .gitlab-ci.yml?

2016-08-22 Thread Jens Kohl
no public project. I want to authorize my docker pull command analog to the documentation [1] when you push an image to the registry with docker login -u gitlab-ci-token -p $CI_BUILD_TOKEN registry.example.com — this CI_BUILD_TOKEN is not available for the worker which runs the runner,

Re: [GitLab CI] How to pull from GitLab's Docker Registry in .gitlab-ci.yml?

2016-08-22 Thread Markus Koeberl
On Monday 22 August 2016 09:06:02 Jens Kohl wrote: > Hi, > > I recently switched on GitLab's Docker Registry feature and it works quite > well on my desktop. The next step for us is to use the registry when > building our software via GitLab CI. Instead of build a docke

[GitLab CI] How to pull from GitLab's Docker Registry in .gitlab-ci.yml?

2016-08-22 Thread Jens Kohl
Hi, I recently switched on GitLab's Docker Registry feature and it works quite well on my desktop. The next step for us is to use the registry when building our software via GitLab CI. Instead of build a docker image, which is described in various ways in the documentation and on se

Gitlab CI shell on Windows only runs before_script

2016-08-19 Thread dsbert
My CI runner will only run a single line. I'm trying to run npm install prior to eslint. However, if I add npm install to the before_script section, then only npm install runs and the build reports success without ever actually running eslint. Are multiple commands not supported on a windows s

Re: GitLab CI - Configuration for "Nightly"-style Builds

2016-06-07 Thread Magnus Therning
Jamie Astin writes: > Morning All, > > We have been investigating the idea of moving our builds into GitLab CI > from a Jenkins setup. > > This has proven to be a beneficial step forward, particularly in regards to > pre-merge builds. We have now deleted most of our

GitLab CI - Configuration for "Nightly"-style Builds

2016-06-07 Thread Jamie Astin
Morning All, We have been investigating the idea of moving our builds into GitLab CI from a Jenkins setup. This has proven to be a beneficial step forward, particularly in regards to pre-merge builds. We have now deleted most of our Jenkins jobs. However, there is still one "style&quo

Gitlab-CI: Unpacking artifacts and lchown warnings.

2016-05-25 Thread Magnus Therning
g the artifact has output consisting of 90% warnings. Not so nice I think. I'd really like to get rid of those warnings! Any suggestions or ideas are welcome! /M [1]: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/1180 -- Magnus Therning, magnus.thern...@cipherstone.com C

lchown warnings on artifacts with gitlab-ci-multi-runner 1.2.0

2016-05-25 Thread Magnus Therning
The ticket describes it well: https://gitlab.com/gitlab-org/gitlab-ci-multi-runner/issues/1180 The problem is present in version 1.2.0 as well. Is there any way to silence the warnings? /M -- Magnus Therning, magnus.thern...@cipherstone.com Cipherstone Technologies AB Theres Svenssons gata

Gerrit + Gitlab CI Integration

2016-05-24 Thread TMac
Hi all, We are using gerrit for code review, but Gitlab's CI is awesome. I am wondering if someone already managed to integrate both things as to have GitLab's CI as one of the reviewers of a Gerrit patch set. Pointers are welcome! I would guess I need to set GitLab to Mirror Gerrit and then s

Re: GitLab CI Build Timeout

2016-05-06 Thread Chris Yate
*ping* On Wednesday, 18 November 2015 21:40:49 UTC, mri...@umaryland.edu wrote: > > Hello, > > I'd like to increase the CI build timeout from 3600s. Poking around, it > seems this value is stored in the database > (/opt/gitlab/embedded/service/gitlab-ci/app/models/projec

Gitlab CI - attachments

2016-04-28 Thread Marat Kalibekov
Hello, I'm getting following error for artifacts in .gitlab-ci.yml ERROR: Uploading artifacts to coordinator... too large archive id=38 token= kfvs6A2i FATAL: Too large ERROR: Build failed: exit code 1 nginx setting for client_max_body_size is 0. -- You received this message because you are

Re: gitlab-ci - branch name

2016-04-24 Thread Magnus Therning
Marat Kalibekov writes: > Thank you very much! > very useful! I didn't find any good documentation on this so I ended up adding a call to `env|sort` to my CI job and then I looked through it for useful variables :) /M > -- > Kalibekov Marat > 8 777 4826322 > > On Thu, Apr 21, 2016 at 1:37 PM,

Re: gitlab-ci - branch name

2016-04-21 Thread Marat Kalibekov
Thank you very much! very useful! -- Kalibekov Marat 8 777 4826322 On Thu, Apr 21, 2016 at 1:37 PM, Magnus Therning wrote: > > Marat Kalibekov writes: > > > Hi all! > > Is it possible to get branch name in build via some variable? > > Yupp. I have the following to print some information on ea

Re: gitlab-ci - branch name

2016-04-21 Thread Magnus Therning
Marat Kalibekov writes: > Hi all! > Is it possible to get branch name in build via some variable? Yupp. I have the following to print some information on each CI build: REPO=${CI_BUILD_REPO:-NoRepo} BRANCH=${CI_BUILD_REF:-NoBranch} BUILD_NUM=${CI_BUILD_ID:-NoNum} REPONAME=$(bas

gitlab-ci - branch name

2016-04-20 Thread Marat Kalibekov
Hi all! Is it possible to get branch name in build via some variable? -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe from this group and stop receiving emails from it, send an email to gitlabhq+unsubscr...@googlegroups.com. To view th

Triggering build status update for merge request when not using gitlab CI?

2016-03-21 Thread Dan Kegel
;t cause anything to show up on the merge request page. Does that API work even if CI is not confugred? I'm doing my builds via a webhook, not via gitlab CI. Thanks, Dan -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe f

Re: Gitlab CI dependent projects

2016-02-11 Thread Brian S
> Triggers via token looks promising. I am going to research this further. Regarding building an application that depends on a library. (For Examples, App A depends on Lib B) Is the correct method for building App A in GitLab CI to checkout Lib B Inside App A? Something similar to the

Re: Gitlab CI dependent projects

2016-02-10 Thread Achilleas Pipinellis
On 02/08/2016 03:39 PM, Brian S wrote: > > My repositories are organized in two groups (Libaries and Applications) > > It is easy enough to test the library on it's own but testing the > applications is more difficult for two reasons. > > 1. It appears as though I need to clone the library when

Re: Gitlab CI dependent projects

2016-02-09 Thread Brian S
ot builds, not > gitlab ci. > On Feb 8, 2016 5:40 AM, "Brian S" > > wrote: > >> >>> Brian S writes: >>> >>> > I develop several custom applications using core libraries. I manage >>> > both applications and libraries in Gitlab. Ho

Re: Gitlab CI dependent projects

2016-02-08 Thread Dan Kegel
I have implemented a similar feature locally, and it's very helpful, but my implementation relies on gitlab webhooks triggering buildbot builds, not gitlab ci. On Feb 8, 2016 5:40 AM, "Brian S" wrote: > >> Brian S writes: >> >> > I develop several cust

Re: Gitlab CI dependent projects

2016-02-08 Thread Brian S
> > > Brian S writes: > > > I develop several custom applications using core libraries. I manage > > both applications and libraries in Gitlab. However I am struggling > > with how to setup a Gitlab ci. I would like to test all my > > applications whe

Re: Gitlab CI dependent projects

2016-02-08 Thread Magnus Therning
Brian S writes: > I develop several custom applications using core libraries. I manage > both applications and libraries in Gitlab. However I am struggling > with how to setup a Gitlab ci. I would like to test all my > applications when pushing to the master branch of my librar

Gitlab CI dependent projects

2016-02-05 Thread Brian S
I develop several custom applications using core libraries. I manage both applications and libraries in Gitlab. However I am struggling with how to setup a Gitlab ci. I would like to test all my applications when pushing to the master branch of my libraries. Any suggestions? -- You received

Gitlab-ci and test-kitchen

2016-01-28 Thread engel der
Dear list, I would like to test my chef cookbooks with gitlab-ci using docker and test-kitchen. I am not sure how to configure/use the runner? My .kitchen.yml looke like: --- driver: name: docker provisioner: name: chef_zero require_chef_omnibus: 12.5.1 platforms: - name: ubuntu

Gitlab CI publish results to GitLab Pages

2016-01-24 Thread Mathieu Hinderyckx
the tests run by GitLab CI runners in the 'public' folder and add this as gitlab pages, so these static html pages are served by GitLab and easily browseable. I've followed the documentation to set this up, but cannot get it to work. Things I tried: - I added a pages job to

Building master only on mainline not forks with gitlab-ci

2016-01-21 Thread Adam Mercer
Hi I'm trying to setup my .gitlab-ci.yml so that it builds branches on all forks, matching a given regex, and then master from only the mainline repo and not forks. The documentation on how to achieve this isn't very clear, I've been looking at the following page:

Re: Gitlab CI - Please define at least one job

2015-12-30 Thread Emil Blennerup
I was able to get it running using the following yml file: stages: - test - build - deploy job_rununittests: stage: test script: - "cd" tags: - win job_builddmp: stage: build script: - "cd" tags: - win job_buildast: stage: build script: - "cd" tags: - wi

Gitlab CI - Please define at least one job

2015-12-17 Thread Emil Blennerup
Using the gitlab-ci.yml template defined on : http://doc.gitlab.com/ce/ci/yaml/README.html stages: - build - cleanup_build - test - deploy - cleanup build: stage: build script: - make build cleanup_build: stage: cleanup_build script: - cleanup build when failed when: on_failure t

Re: Gitlab CI build script for merge request

2015-12-10 Thread peter . arentsen
Having the same problem would love to know how to do this because we have a project that takes a long time to build and having it run on every push is way too much. -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe from this group and s

Re: How to completely disable gitlab ci

2015-12-02 Thread robburgoyne
, I really don't need the CI > part of GitLab. How can I completely disable it to prevent any user enable > the GitLab CI template and do not enable thie template when creating new > projects? > -- You received this message because you are subscribed to the Google Groups "G

Re: How to completely disable gitlab ci

2015-11-25 Thread Marin Jankovski
John Stephen wrote: > > Because of the resources I have on my server, I really don't need the CI > part of GitLab. How can I completely disable it to prevent any user enable > the GitLab CI template and do not enable thie template when creating new > projects? > -- You recei

How to completely disable gitlab ci

2015-11-24 Thread John Stephen
Because of the resources I have on my server, I really don't need the CI part of GitLab. How can I completely disable it to prevent any user enable the GitLab CI template and do not enable thie template when creating new projects? -- You received this message because you are subscribed t

Gitlab CI aborts execution of job script whenever a single command fails

2015-11-19 Thread victorsv
Dear Gitlab folks, I am using Gitlab CI version 5.4.2. I observed that whenever an individual command in a job script fails, Gitlab CI just aborts the execution of the job script, without leting the rest of commands to be executed. Did you observe the same behaviour? Is there any way to

Gitlab CI build script for merge request

2015-11-18 Thread Kaviraj Kanagaraj
Hi Everyone. I am using Gitlab 8.1.4. Also using built in gitlab CI. I enable gitlab ci by serives---> gitlab CI --> active. In that settings I find only two options 1. Push events 2. Tag push events. I couldn't find any events for merge request. Actually I need to trigger build i

GitLab CI Build Timeout

2015-11-18 Thread mriedel
Hello, I'd like to increase the CI build timeout from 3600s. Poking around, it seems this value is stored in the database (/opt/gitlab/embedded/service/gitlab-ci/app/models/project.rb seems to be one place it's set). How would I go about increasing this? It seems like something tha

Deploy every build to a server using Gitlab CI

2015-11-18 Thread Kid Ali
I've set up my own Gitlab server with one project and a Gitlab runner configured for it. I'm new to continuous integration server and therefore don't know how to accomplish the following. Every time I commit to the master branch of my project I would like to deploy the repository to another ser

Toggle shared runners for gitlab-ci projects via API

2015-11-12 Thread Roger Calaf
Hello, I'm trying to find a way to toggle shared runners for a project via the gitlab-ci API and i cannot find any documentation or option in order to do so. I would appreciate some directions to be able to automate this step. Thank you, Roger -- You received this message becaus

should Gitlab CI yml file be versioned?

2015-11-03 Thread Guido Tarsia
Hey, First of all, I'm really happy with and thankful for gitlab and how you guys open sourced it. Having said that, I have some problems understand gitlab CI. More specifically about why does the .gitlab-ci.yml file has to be versioned. There are a couple of problems I can think becau

Backup GitLab-CI on GitLab 8.1

2015-10-31 Thread Filipe Manco
Hello all In GitLab version 8.1 (where GitLab-CI is integrated) do we need to keep separated backups for the two components, or will `gitlab-rake gitlab:backup :create` backup everything? Thank you Best regards -- You received this message because you are subscribed to the Google Groups

gitlab-ci and shared runners

2015-10-02 Thread Sascha Manns
Hello list, i have added my project to ci and added a .gitlab-ci.yml: image: ruby:2.1 before_script: - bundle install rspec: script: - bundle exec rspec rubocop: script: - bundle exec rubocop Also i have enabled the shared runners for the project. But after a commit i'm getti

Gitlab CI runner issues and questions

2015-09-28 Thread Lukas
So now that I have upgraded to 8.0.2 and successfully (I think) migrated my CI installation, I'm having troubles re-registering my runner. I only have single shared runner for the moment and it runs on the same machine as gitlab. The error I get when running sudo gitlab-ci-multi-r

Gitlab-ci mail notification on failed build are never sended

2015-09-16 Thread Sébastien HEITZMANN
Hi, I've installed Gitlab and Gitlab-ci and i never receive the mail notification from gitlab-ci. Notifications from gitlab work fine. I have read the log and i don't know what to check to find the problem. Please, give me some advice. Here is my config in /etc/gitlab/gitlab.rb

Re: gitlab-ci within same gitlab docker-compose - 7.13.5

2015-08-17 Thread Fred Blaise
Answered my own question I guess, reading a post at https://about.gitlab.com/2013/06/20/integrating-gitlab-ci-with-gitlab/ We still want a clean separation between GitLab and GitLab CI to allow them to develop independently, reduce security risks and keep each code base small. Therefore

gitlab-ci within same gitlab docker-compose - 7.13.5

2015-08-17 Thread Fred Blaise
Hi all, New to gitlab, and so far so good :-) I was quickly trying to bring a gitlab-ci container up alongside gitlab, but apparently, I just cannot put the ci stanza in the same docker-compose.yml as gitlab. gitlab-ci complains then that the postgres tables already exist, and shuts down the

Gitlab CI and merge requests

2015-05-02 Thread Bráulio Bhavamitra
Hello all, Anyone knows how to run merge requests into a single runner configured on Gitlab CI? https://github.com/gitlabhq/gitlab-ci/issues/575#issuecomment-94890960 cheers, bráulio -- "Lute pela sua ideologia. Seja um com sua ideologia. Viva pela sua ideologia. Morra por sua ideologia

Re: Gitlab CI not set up correctly after omnibus upgrade

2015-04-28 Thread Karen Carias
Hello Todd. I'm glad you fixed it. Thank you for sharing your solution! :) -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe from this group and stop receiving emails from it, send an email to gitlabhq+unsubscr...@googlegroups.com. To vi

Re: Gitlab CI not set up correctly after omnibus upgrade

2015-04-28 Thread todd . thomas
I learned about `sudo gitlab-ci-rake`. I ran `sudo gitlab-ci-rake db:migrate:status` and discovered no migrations had been run. I ran `sudo gitlab-ci-rake db:migrate` and that fixed the problem. -- You received this message because you are subscribed to the Google Groups "GitLab"

Gitlab CI not set up correctly after omnibus upgrade

2015-04-27 Thread todd . thomas
Hello. I apologize in advance for the length of this post, but I think it's important for me to list all the specific steps that led up to the problem I'm currently experiencing. I was running Gitlab 7.3.0 installed via the omnibus .deb on Ubuntu 14.04. I wanted to try Gitlab CI, an

Re: 500 page while Authorize gitlab-ci

2015-04-24 Thread boz jennings
15 18:50:02 Markus Koeberl wrote: >>> > Today I updated my Gilab server to the newest Debian omnibus package. >>> Now I am not able to get the omniouth login working for the ci server. But >>> the automatic build for previously configured repository is still working. &

Re: 500 page while Authorize gitlab-ci

2015-04-24 Thread boz jennings
r. But >> the automatic build for previously configured repository is still working. >> > >> > >> > In /var/log/gitlab/gitlab-ci/production.log I see: >> > >> > Faraday::SSLError (SSL_connect returned=1 errno=0 state=SSLv3 read >> serv

Re: 500 page while Authorize gitlab-ci

2015-04-24 Thread boz jennings
bian omnibus package. > Now I am not able to get the omniouth login working for the ci server. But > the automatic build for previously configured repository is still working. > > > > > > In /var/log/gitlab/gitlab-ci/production.log I see: > > > > Faraday::SSLE

Re: Clone (and extend) gitlab-ci-runner OR use omnibus runner and call docker image

2015-03-13 Thread paul
gt; Thanks for your comment! > > > > > > On Tuesday, 10 March 2015 23:16:21 UTC+1, sytse wrote: > >> > >> Can you take your docker image and add any runner from > >> https://about.gitlab.com/gitlab-ci/#gitlab-runner to it and save that > >>

Re: Clone (and extend) gitlab-ci-runner OR use omnibus runner and call docker image

2015-03-11 Thread Sytse Sijbrandij
hassle. Maybe my 2. > possibility would provide better isolation. But I'll ask again if necessary, > this is another subject.] > > Thanks for your comment! > > > On Tuesday, 10 March 2015 23:16:21 UTC+1, sytse wrote: >> >> Can you take your docker image and a

Re: Clone (and extend) gitlab-ci-runner OR use omnibus runner and call docker image

2015-03-11 Thread paul
age and add any runner from > https://about.gitlab.com/gitlab-ci/#gitlab-runner to it and save that > as a new image? > > > -- You received this message because you are subscribed to the Google Groups "GitLab" group. To unsubscribe from this group and stop receivi

Re: Clone (and extend) gitlab-ci-runner OR use omnibus runner and call docker image

2015-03-10 Thread Sytse Sijbrandij
Can you take your docker image and add any runner from https://about.gitlab.com/gitlab-ci/#gitlab-runner to it and save that as a new image? Best regards, Sytse Sijbrandij CEO GitLab B.V. On Mon, Mar 9, 2015 at 8:25 AM, paul wrote: > Context: we test R packages within a docker image having

Clone (and extend) gitlab-ci-runner OR use omnibus runner and call docker image

2015-03-09 Thread paul
Context: we test R packages within a docker image having the necessary environment and additionally pulling in some other packages (from our gitlab repo using ssh-keys supplied to the docker image). As gitlab-ci-runner is docker based I see two possibilities: 1. clone existing

Re: Installing GitLab-CI fails

2015-02-19 Thread tombert
I now believe that redis and ruby all comes bundled in the omnibus installer, so skipping the installation of those would be worth a try. This page is also worth noting, showing all configuration options: https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-config-template/gitla

Re: Installing GitLab-CI fails

2015-02-18 Thread tombert
For those who want to install GitLab CI on Ubuntu 14 LTS, on the same server as GiLab CE, here are the steps that made it work: Install recommended packages defined here: https://github.com/gitlabhq/gitlab-ci/blob/master/doc/install/installation.md apt-get install wget curl gcc checkinstall

Re: Installing GitLab-CI fails

2015-02-18 Thread tombert
For those who want to install GitLab CI on Ubuntu 14 LTS, on the same server as GiLab CE, here are the steps that made it work: Install recommended packages defined here: https://github.com/gitlabhq/gitlab-ci/blob/master/doc/install/installation.md #> sudo apt-get install wget curl

Re: Installing GitLab-CI fails

2015-02-17 Thread Sytse Sijbrandij
rg/omnibus-gitlab/tree/master/doc/gitlab-ci > > In etc/gitlab/gitlab.rb I added the following line: > ci_external_url 'http://myserver:82' > > Note: GitLab CE is running on port 81. > > Now when browsing to GitLab CI, port 82, I get the message: "We're sorry

Installing GitLab-CI fails

2015-02-14 Thread tombert
Hi, basically I followed the instructions described here: https://gitlab.com/gitlab-org/omnibus-gitlab/tree/master/doc/gitlab-ci In etc/gitlab/gitlab.rb I added the following line: ci_external_url 'http://myserver:82' Note: GitLab CE is running on port 81. Now when browsing to GitLa

Re: 500 page while Authorize gitlab-ci

2015-01-26 Thread Markus Koeberl
gt; > > In /var/log/gitlab/gitlab-ci/production.log I see: > > Faraday::SSLError (SSL_connect returned=1 errno=0 state=SSLv3 read server > certificate B: certificate verify failed): > app/controllers/user_sessions_controller.rb:18:in `callback' > > > I do have

500 page while Authorize gitlab-ci

2015-01-26 Thread Markus Koeberl
Today I updated my Gilab server to the newest Debian omnibus package. Now I am not able to get the omniouth login working for the ci server. But the automatic build for previously configured repository is still working. In /var/log/gitlab/gitlab-ci/production.log I see: Faraday::SSLError

Re: Gitlab-CI runner hangs after makefile test using diff fails

2015-01-26 Thread Gabriel Engel
27;t be affected by the changes). *Attempt 1* - upgrade runner code, make sure old code is not affecting us: - logged in to gitlab-runner machine, ran: $ cd /home/gitlab_ci_runner/gitlab-ci-runner $ git pull origin master Return: Updating dd65abf..053e721 Ran job: NO SUCCESS. *Atte

Re: GitLab and GitLab-CI Interop Problem

2015-01-07 Thread Adam Monsen
Achilleas Pipinellis wrote: > Open an issue at https://gitlab.com/gitlab-com/support-forum/issues so > that an admin can help you. Great suggestion, thank you. Done: https://gitlab.com/gitlab-com/support-forum/issues/75 -- You received this message because you are subscribed to the Google Group

Re: GitLab and GitLab-CI Interop Problem

2015-01-06 Thread Achilleas Pipinellis
On 01/06/2015 10:34 PM, Adam Monsen wrote: > I'm getting that error ("Cannot connect to the CI server. Please check > your settings and try again.") on a merge request at gitlab.com in a > private project. I'm using my own Jenkins CI server. > > Only /one/ of my merge requests shows the error. >

  1   2   >