cicd Questions
2
Solved
Use trigger for dynamic select test job
prepare_test:
image: $CI_REGISTRY/platform/docker-images/vault:1.8
variables:
CONTEXT_TEST: |
include:
# PRODUCT
- project: 'gitlabci/integration-test'...
Simplistic asked 15/1, 2022 at 22:31
8
Solved
I am hosting my web application in Firebase and I have been deploying it with Gitlab CI/CD and it has been working just fine! But today for some reason I am getting this error when the pipeline is ...
Morra asked 6/10, 2022 at 15:6
4
Solved
I'm getting this error while trying to deploy my branch through gitlab.
remote: The project you were looking for could not be found or you don't have permission to view it.
fatal: repository 'https...
Mangan asked 4/2, 2022 at 8:47
2
I want to run a job each time a new pipeline gets triggered. It's a kind of preparation job which should always be executed before every other job defined inside the .gitlab-ci.yml
For Example
stag...
Newmown asked 18/9, 2022 at 16:55
3
Solved
In Azure Pipelines YAML, you can specify an environment for a job to run in.
jobs:
- deployment: Deploy
displayName: Deploy
environment: $(environment)
Passing a new value to the pipeline shou...
Cavein asked 12/10, 2021 at 20:13
3
Solved
We've been using the "new" CICD setup for Azure Data Factory as descibed by the documentation page: https://learn.microsoft.com/en-us/azure/data-factory/continuous-integration-delivery-im...
Tufted asked 16/6, 2022 at 12:16
5
Solved
I am running the below code section in gitlab-ci.yml file:
script:
- pip install --upgrade pip
- cd ./TestAutomation
- pip install -r ./requirements.txt
Below are the keys and values. So I have t...
Staves asked 22/11, 2021 at 15:6
3
Trying to transform a project in gitlab to docker image. The gitlab is selfhosted. This is the error I get:
Running with gitlab-runner 13.12.0 (7a6612da)
on test -KnwQXuT
Preparing the "docker...
Thalia asked 22/6, 2021 at 9:39
4
I am facing this issue during try to deploy script with gitlab ci/cd:
Initialized empty Git repository in C:/builds/Tri.BuiV/test-gitlab-cicd/.git/
fatal: detected dubious ownership in repository a...
1
What is the official / recommended way to install Docker on GitHub Actions?
In particular I need to run a custom script on GitHub Actions that, among other tasks, calls docker build and docker push...
Discomfort asked 30/4, 2022 at 10:22
3
I have deployed an ASP.NET Core Web API project using terraform. I can see it has been deployed successfully and the web app service is running. When I browse to the link it returns 404. I was wond...
Supplicate asked 13/10, 2021 at 17:48
3
My gitlab pipeline which has been running for nearly six months is now failing unexpectedly.
Every line prior runs successfully and then this happens:
Setting up curl (7.52.1-5+deb9u16) ...
$ curl ...
Indefinite asked 1/10, 2021 at 19:56
2
Solved
I just moved my project from npm and lerna to pnpm but now when using GitHub actions I get the following error
"line 1: pnpm: command not found"
can someone suggest how the .yml file shou...
Ejector asked 22/12, 2022 at 6:15
1
I am a beginner and this is the first time I am building a CI/CD pipeline for my maven java selenium project and trying to run the pipeline locally by installing a runner in my local machine.
Every...
Thomism asked 8/2 at 4:22
1
I am running EC2 as self hosted runner. I have exported AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY to the EC2, and I can see that they are set with printenv command.
Reason for doing this is that ...
Incursion asked 27/1, 2022 at 9:31
4
I'm using GitLab CICD, in docker-test stage as defined
docker_test: image: docker:stable services: - docker:stable-dind stage: docker-test
...
yesterday worked fine, but today - GitLab pipeline 'do...
Forbore asked 11/12, 2023 at 17:7
4
getting the below error in my pipeline. Can anyone help me on this ?
Am trying the deploy my ecs service via bitbucket pipelines but facing this error. I tried updating docker, pip, docker-compose ...
Neutralism asked 11/12, 2023 at 6:42
3
Solved
We have an existing Azure DevOps build pipeline for a .NET Core 7 MAUI Android app that was working fine until today, 20th November 2023.
We have noticed that the previous successful build was usin...
Necessity asked 20/11, 2023 at 21:36
1
I'm working on a solution to develop the CICD Pipeline for dotnet MAUI project which is using following environment.
Development machine - MAC OS Ventura 13.5.1
dotnet SDK - 7.0.302
MAUI- iOS appl...
1
Solved
I am creating some resources via Terraform that look like this:
resource "aws_ecs_task_definition" "xx" {
family = "xx"
network_mode = "awsvpc"
requires_c...
Renelle asked 3/11, 2023 at 9:20
6
Solved
Have anyone been in this situation before ?
I run my code with CI/CD
after nest build, it gives me error :
node_modules/@types/superagent/index.d.ts:23:10 - error TS2305: Module '"buffer"...
3
I am using docker executor on gitlab runner as an image I am using docker:stable
I am getting this error:
$ docker login gitlab.mydomain.com:5050 -u myusername-p mytoken
WARNING! Using --password v...
Copenhaver asked 29/3, 2022 at 6:2
2
I have a public repository that runs end-to-end tests. These tests require secrets that are stored in GitHub.
The corresponding workflow yaml file has pull_request entry as follows:
on:
pull_reque...
Aluminous asked 22/8, 2023 at 9:43
0
I have a NodeJS backend which relies on Prisma models, which I want to deploy to my production database. My CI/CD pipeline looks as follows: Github Actions builds the code using webpack, uploads th...
Ghyll asked 20/8, 2023 at 18:11
6
My idea here is to write my inputs from workflow_dispatch on each pipeline run. .
For example, in Bitbucket pipelines input parameters shown after custom -
Is there a way to do something similar f...
Killy asked 17/2, 2022 at 9:39
1 Next >
© 2022 - 2024 — McMap. All rights reserved.