gitlab-ci-runner Questions

2

Solved

. Hello, can someone tell me, why gitlab cannot find my artifacts? Logfile: $ ls -la /build/Project*.zip -rw-r--r-- 1 root root 1641 Nov 25 21:18 /build/Project-1.0.zip Uploading artifacts... WAR...
Marmoset asked 25/11, 2017 at 21:28

3

Solved

I started a docker container gitlab-ci-runner, and then register a runner using docker as executor, using node:latest as docker images. But when i push commit to gitlab,I got this error: Running w...
Frae asked 8/10, 2018 at 6:45

3

Solved

Let's say I have these stages defined in .gitlab-ci.yml: stages: - build - analysis - tests - deploy - post-deploy Since analysis takes a lot of time and I don't really care about the resul...
Lambrecht asked 14/11, 2017 at 12:54

2

This is how I would do it using Github: jobs: run-tests: runs-on: ubuntu-latest defaults: run: working-directory: ./MyApp steps: - uses: actions/checkout@v2 - name: Setup .NET uses: ...
Oconnell asked 25/6, 2021 at 14:13

1

Solved

We have a locally deployed instance of Gitlab, where at the time we cannot afford to have a GitLab Runner to run CI/CD pipelines. Is it possible to use GitLab Pages without CI/CD? E.g. is it possib...
Impotent asked 15/7, 2020 at 14:23

1

Solved

I have a GitLab CI/CD job doing some stuff. I want some executed commands to be able to fail and result in a warning for this job, but I also want other command to result in an error in the pipelin...
Emileemilee asked 10/6, 2021 at 8:55

2

I recently used the docker image gitlab/gitlab-runner:9.1.0 in conjunction with a gitlab container to have some CI. An error occurs and similar support requests recommended using a different versio...
Molech asked 30/4, 2017 at 21:57

1

I'm in the process of migrating my projects from GitHub.com to a self-hosted GitLab CE instance. I had previously set up a GitHub Actions pipeline to publish the application when a new release was ...
Calbert asked 26/5, 2021 at 22:29

2

I am deploying Django application using Gitlab CI/CD and pytest for testing of code and pytest-cov for generating coverage report My .gitlab-ci.yml stages: - test - deploy image: python:3.6 t...
Involutional asked 8/7, 2018 at 0:28

3

Solved

I use Gitlab runner and works fine for a single server. The gitlab-ci.yml is simple: stages: - test - deploy test: stage: test image: php tags: - docker script: - echo "Run tests..." depl...
Calumny asked 24/7, 2016 at 15:34

1

How to run gitlab-runner locally on macOs? Hi, I would like to run gitlab-runner locally. I have gitlab-runner on my mac and I have gitlab-ci.yml. On CI gitlab-runner works as I expect, but it's no...
Outwit asked 9/12, 2020 at 8:54

3

I am running git-lab server with Ubuntu 14 I am trying to compile a build on git-lab Ci but for some reasons I keep getting the same error over and over again: ERROR: JAVA_HOME is set to an invali...
Wharton asked 9/5, 2016 at 10:30

1

Solved

I have a Gitlab CI runner of docker type, and a repo with a Dockerfile that I will use for building my artifacts. I know that I can do it in two stages, one with building the image using the docker...
Pantry asked 10/3, 2021 at 15:54

5

I have a gitlab ci job that does some work for me but it depends on another repo so I need to clone another repo inside this job. I can't use https cloning because gitlab will ask me for user name ...
Spinney asked 22/7, 2019 at 9:48

2

Solved

I'm using GitLab pipelines and have defined my build defintion in the .gitlab-ci.yml file. I'm using this to build docker containers. Simple question. Is there a way I can tag my docker container...
Coleville asked 18/10, 2017 at 13:2

2

After using gitlab-runner to execute python unittest, testcase fails, but gitlab shows pass. $ python3 test/test_utils.py test_init (__main__.Test_BslReset) ... ERROR test_reset_all (__main__.Test...
Regatta asked 8/7, 2019 at 5:25

5

I am using gitlab CI runner to test my code and generating some files. I just want to push the generated files to gitlab repository via CI runner. Is there any way to do that ?
Yellowish asked 19/10, 2016 at 5:21

1

I'm using this script for my Gitlab CI build stage (only relevant part is shown): cache: key: "$CI_BUILD_REF" paths: - bin/ - build/ build: image: <my_build_image> stage: build scrip...
Jala asked 30/1, 2018 at 12:56

5

Solved

I've setup my gitlab installation from source, secured it with letsencrypt and deployed it under https://gitlab.mydomain.com. I can access the website and create repositories, etc. but I can't find...

3

When running a CI/CD pipeline on Gitlab, my Karma tests are timing out with the error: ℹ 「wdm」: Compiled successfully. 05 08 2019 22:25:31.483:INFO [karma-server]: Karma v4.2.0 server started at h...
Planimetry asked 5/8, 2019 at 22:40

1

I have set up a docker runner, where I want to run an image stored on a local repository. My /etc/gitlab-runner/config.toml is concurrent = 1 check_interval = 0 [session_server] session_timeout =...
Woolly asked 29/1, 2021 at 22:29

2

Solved

I'm new to continous integration on iOS, I try to run build with gitlab-runner and use shell as executor but I got issue that pod cannot run as root I am sure that I am not installing cocoapods wit...
Dairying asked 27/2, 2018 at 9:6

1

In my gitlab ci cd pipeline, i have two jobs : build : this job will be triggered after creating a pull request from the branch develop to a release branch. I will generate my project distribution...
Orogeny asked 24/1, 2021 at 22:46

1

Solved

I have many Gitlab project followed the same CI template. Whenever there is a small change in the CI script, I have to manually modify the CI script in each project. Is there a way you can store yo...
Leafage asked 23/1, 2021 at 7:3

3

I'm using a shared runner, on gitlab.com. The guide here shows a section for job artifacts. But when I run my job and look at my job page, I just see this: There's no section for job artifacts. ...
Paratyphoid asked 20/4, 2017 at 19:31

© 2022 - 2024 — McMap. All rights reserved.