Category "gitlab"

zsh: permission denied: /Users/ryanshumway/.ssh

New to programming, and my employer had setup my SSH with Gitlab for me. Now that I'm learning more programming I thought, hey, I'll setup another SSH for my pe

Gitlab deploy keys configured but still doesn't grant access

I just configured Gitlab with a deploy key so that it doesn't ask for a username and password every time—but when pulling, it still fails with the followi

GitLab as mirror for CodeCommit

For my use case I need to use CodeCommit repositories. But I would also like to use GitLab GUI and features. If I install GitLab on my server, is there a way

How to get schedules description in gitlab?

I have a scheduled pipeline in gitlab, whose description is "run everyday". similar to this https://docs.gitlab.com/ee/ci/pipelines/schedules.html How can I fet

Gitlab package registry throw 404 on npm publish

I'm trying to publish a package to Gitlab package registry but it keeps erroring me with 404 @my-scope/<package-name> is not in this registry. Initially I

gitlab-runner:Pipeling is pending infinitely

I install a Specific Runners,and the status is actived. my .gitlab-ci.ymi file code: stages: - build build_maven: stage: build only: - master scrip

Different branches in repositories

When I see my branches in a local repository with git branch in the terminal it prints only one, which is master But when I go to the gitlab page I have two bra

Gitlab CI, include rule's if condition is ignored

I've following in .gitlab-ci.yml: include: # env variables - local: test.yml rules: - if: $CI_BUILD_REF_NAME == "dev" - local: int.yml rules

Use artifacts from merge request job in GitLab CI

In my project I use merge requests to test builds, and deploy once the commit is merged to master. Currently my .gitlab-ci.yml looks like: build: stage: build

How to allow others to have access to my local gitlab?

I am new to Linux and command line, so sorry if my question is way too rookie for this community but i installed Ubuntu 16.04 on Virtual Box and configured git

[Gitlab]Where can I find Gitlab Pages hosted on my private Gitlab instance?

I tried to set up Gitlab Pages, until now I finished uploading my static website files👇 Uploading artifacts... coverage/lcov-report: found 77 matching

Cypress run on Gitlab CI/CD always failed but work properly on local run using Chrome image & node

I have configured my cypress test in the GitLab CI/CD pipeline, However, in my local environment, it runs perfectly with no errors, however, when the pipeline j

Make sure a job is rerun in later pipelines if it has failed in previous pipeline and is subject to files changes rules in Gitlab CI

I have a Gitlab CI job that has a rule making the job run if any of 3 paths are modified. I made the job fail purposefully. Then, I modified the README.md - a f

How to erase job via gitlab api

I have an issue were I am the owner of a project on a gitlab server, and I can successfully delete all artifacts for a job as listed in the docs.. curl --reque

Two pipeline running when get failed

i have written workflow rules as give below. it working fine but as soon as pipeline fails two failed pipelines run: one for merge and one for branch. as well a

Gitlab CI/CD - sending comments/alerts to the gitlab UI?

Currently I have this line in my .gitlab-ci.yml file: if (( $coverage < $MIN_COVERAGE )) ; then echo "$coverage% of code coverage below threshold of $MIN_COV

gitlab-ci SSH key invalid format

I would like run deploy script with gitlab-ci, but step ssh-add $SSH_PRIVATE_KEY return an error : echo "$SSH_PRIVATE_KEY" | ssh-add - Error loading key "(stdi

Accept merge request without running manual stages

I have a pipeline with 3 stages: build, deploy-test and deploy-prod. I want stages to have following behavior: always run build run deploy-test automatically

Gitlab-Runner on Kubernetes/Openshift

I'm trying to deploy Gitlab-runner(s) on Openshift/K8S, but can't succeed in having runners communicating with Gitlab (itself deployed in pods on OCP). I follo

Gitlab CICD: use functions inside gitlab-ci.yml

I have a .gitlab-ci.yml file which allows needs to execute the same function for every step. I have the following and this works. image: name: hashicorp/terra