Questions tagged [gitlab-ci-runner]

Welcome to the GitLab Runner repository! Our application is designed to execute tests and then seamlessly transmit the results directly to GitLab CI. Utilizing GitLab CI, an open-source continuous integration server, we are able to efficiently coordinate all testing processes.

npm fails to be recognized in GitLab-CI when running on a Windows server runner

I'm attempting to set up a basic continuous integration on my Windows Server (Windows 2012R). The only instruction in my job script is: npm install. However, when I run the pipeline, I receive the following error message: 'npm' is not recognized as an inte ...

Why is GitLab Runner not recognizing my custom npm registry and instead using the default npm registry?

After setting up a gitlab runner on my Windows machine, I input the command "npm config set registry http://my/custom/npm/registry" in the terminal. Then, I triggered a pipeline on the gitlab web page. However, when I checked the terminal using the comman ...

Self-hosted GitLab Runner using shell executor encounters issue with locating npm

I'm in the process of setting up a straightforward CI job. GitLab Runner is currently operating on my personal server, and the specific runner for this project has been properly registered with the shell executor to execute shell commands. stages: - ...

Initiating node server, undertaking another task, then shutting down server on Gitlab CI

I have set up a GitLab Runner using Shell and my gitlab-ci.yml file includes the following configuration. In the before_script section, it installs necessary packages and starts the node server using "start npm run start" to prevent it from getting stuck a ...

Employing a tool in the upcoming project that is scheduled to execute on an SSH runner in GitLab encounters issues

Currently, I am utilizing the self-managed version 14.6 of GitLab. In my .gitlab-ci.yaml pipeline file, I have defined two jobs: build and deploy. The build job runs on a docker executor through gitlab-runner and generates an artifact named build/, which c ...

I encountered an issue in my GitLab CI where the command "yarn"

I've encountered an issue while setting up my gitlab-ci to use yarn install instead of npm install This is how my current gitlab-ci.yml looks like: image: node:6.9.4 cache: paths: - node_modules/ - .yarn before_script: - apt-get update -qq & ...

Encountering the error "oom kill count retrieval failed" on a Gitlab runner instance provisioned using the Gitlab Operator for a vuejs App

Currently, I am in the process of setting up a gitlab ci/cd pipeline for a vuejs application. The Gitlab runner has been provisioned using the Gitlab operator within an Openshift environment. In order to get a docker image of the application, I am utilizin ...

Encountering an SSH issue while attempting to deploy to Digital Ocean using Gitlab's CI/CD functionality

Hey there, I've been attempting to deploy to Digital Ocean using a Gitlab CI/CD pipeline. However, every time I run the pipeline, I encounter the following error message: "chmod: /root/.ssh/id_rsa: No such file or directory $ chmod og= ~/.ssh/id_rsa C ...

ErrorHookWebpack: When executing npm build in the node container, the service is detected as inactive

Encountering an issue when executing npm run build within a container on Kubernetes during a gitlab-ci job. It's worth noting that npm install, npm run lint, and npm run test all completed without any problems. Error: node@runner-7gbsh-sz-project-9665-con ...

I am facing an issue where my GitLab CI multi-runner is unable to recognize the npm command

Currently, I am utilizing the resources available at https://github.com/sameersbn/docker-gitlab-ci-multi-runner and deploying it using docker compose. The issue that I am facing is that my tasks are getting stuck due to an error stating that npm command i ...

Encountering issues while deploying a Vue.js application on an Ubuntu server using GitLab Runner

Currently, I am in the process of deploying an application from a GitLab repository to a server running Ubuntu 20.04. The GitLab runner is registered and operational, with all SSH keys added accordingly. Although I have created the .gitlab-ci.yml file, I e ...