Skip to main content
The 2024 Developer Survey results are live! See the results

Questions tagged [continuous-integration]

Continuous integration (CI) is the building and automated testing of the full software product on a frequent schedule: at least once a day, often several times a day and sometimes as often as after every check in to the version control system.

continuous-integration
0 votes
0 answers
4 views

Github actions job being cancelled due to (likely) concurrency issues?

Here is my workflow file: name: Run Tests on: push: branches: - main - 'dev' - 'unstable' jobs: run-unit-tests: concurrency: ...
notacorn's user avatar
  • 3,889
0 votes
1 answer
8 views

How to create multiline text file in Forgejo (using Github Actions syntax)?

I'm trying to setup runner on Forgejo instance (which is Gitea fork), it uses Github Actions syntax. I have following yaml file: name: Android CI on: [push] jobs: build: runs-on: high ...
Tauri's user avatar
  • 1,289
0 votes
0 answers
10 views

Queries related to DevOps

I have certain queries regarding DevOps and automated testing: Q1. What are the most experienced challenges while using automated testing in the ci/cd pipeline? Q2. What are the different strategies ...
AKSHIT PATEL's user avatar
0 votes
1 answer
15 views

Adding github secrets to CI/CD actions to Vercel deployment

I want to build and deploy my NextJS app to Vercel with environments from github secrets (not from env file or from vercel directly). Here is my workflow (a development one): on: push: branches: ...
Paweł Gnat's user avatar
0 votes
2 answers
36 views

How to get all the artifact names in deploy pipeline?

TL;DR: How to get all the artifact names in deploy pipeline? Hi, I have multiple branches, and a single generic build pipeline to build their artifacts artifact name example: ...
Tri's user avatar
  • 323
0 votes
1 answer
35 views

Azure DevOps Pipelines: deploy Java projects as maven dependencies for other projects

I have to create Azure DevOps pipelines for multiple Java maven projects that previously had no CI/CD process. All the projects are on the same Azure DevOps organization and are stored in Azure Repos. ...
martinz's user avatar
  • 13
0 votes
2 answers
33 views

Start a process in Jenkins without waiting for its end

I'm able to start a process in my Jenkins pipeline easily, but I'm struggling to avoid being blocked by the process. Currently, Jenkins is waiting for its end before going on to the next step, but I ...
lukemols's user avatar
-1 votes
1 answer
24 views

How to Deploy Containers in One GitHub Actions Runner and Run Tests in a Different Runner?

I am working on a CI/CD pipeline using GitHub Actions where I need to deploy my Docker containers in one runner and then run integration tests on those containers in a different runner. This setup is ...
aquadap's user avatar
0 votes
0 answers
12 views

CodeIgniter 3: Fatal Error. Uncaught error: Class 'CI_Controller' not found

So this is a kinda old project running CI3 and we're facing this issue. It's very sporadic, it seems like it happens when requesting Ajax routes and the temporary fix testers have found is to "...
Santiago Cuartas Arango's user avatar
0 votes
0 answers
24 views

How to make gitlab-ci force to know PHP?

I have a PHP/Laravel project on a GitLab reo. Recently I've added CI/CD for it using the following .gitlab-ci.yml file: stages: - pull - optimize variables: GIT_SSL_NO_VERIFY: "1" ...
stack's user avatar
  • 10.5k
0 votes
0 answers
7 views

How do Code Changes and Environment Updates Affect Dockerfiles for the project runtime and the Devcontainer in a Development Workflow?

In a development workflow that uses separate Dockerfiles for the project runtime and the devcontainer to manage the development dependencies, how are the Dockerfiles and devcontainers affected in the ...
Sara's user avatar
  • 519
-2 votes
0 answers
15 views

Continuous integration: floating point differences between remote and local

I run continuous integration tests on a (Python) scientific code base I develop. Some tests are stability tests: I ran some function for a given set of parameters, checked its output manually (for ...
Aubergine's user avatar
  • 383
0 votes
0 answers
17 views

how to build Packages or Artifacts for Node JS from VSCode that cab be deployed in GitLab / Harness pipeline as continuous integration?

how to build Packages or Artifacts for Node JS from VSCode that cab be deployed in GitLab / Harness pipeline as continuous integration? have created playwright + JS tests that are currently executed ...
johnsonambrose's user avatar
0 votes
1 answer
16 views

AuthenticationFailed error while trying to use safe download workflow artifact

Trying to run below workflow but getting: Error: <?xml version="1.0" encoding="utf-8"?> <Error> <Code>AuthenticationFailed</Code> <Message>Server ...
Mario's user avatar
  • 11
0 votes
1 answer
19 views

In Django CI, githubactions try to another database for testing

This configuration refers to portfolio_db when running the server normally, and refers to test_portfolio_db during testing. DATABASES = { "default": { "ENGINE": "...
yoshitaka okada's user avatar

15 30 50 per page
1
2 3 4 5
937