2,667 questions
Best practices
1
vote
0
replies
107
views
How to implement CICD to deploy many projects into 2~4 on prem server
We have a good amount of projects in Azure Dev Ops that I'm working on adding CI/CD pipeline to build, test, and deploy to our on-prem Window Servers. I'm currenly using a single agent pool to build ...
Advice
0
votes
1
replies
76
views
CI/CD build failures
How much time does your team lose each week due to flaky or non-obvious CI/CD build failures? Would it be beneficial for an AI to automatically diagnose and remark on the PR?
Score of 0
2 answers
87 views
Can't execute script in GitLab CI/CD
Because some scripts are complex, I prefer creating external Bash scripts and then use it in gitlab-ci.yml.
I have a little script that lists all compiled scripts and make a release with them.
Only, ...
Best practices
0
votes
3
replies
161
views
pip install oracledb takes ~9 minutes on Alpine (musl) because no musllinux wheel, how to avoid building from source in Docker?
I'm building a Django app inside a Docker image based on python:3.13-alpine3.23 as part of a GitLab CI pipeline.
After replacing cx-Oracle==8.3.0 with oracledb==3.4.2 in requirements.txt, the pip ...
Best practices
0
votes
0
replies
85
views
Deploy Python application to Raspberry Pi automatically using Azure DevOps CI/CD
so, I have a repository in Azure DevOps that contains Python scripts for a Raspberry Pi application. I build the project using PyInstaller, which generates an executable inside the dist/ folder.
...
Score of -1
1 answer
145 views
Azure Login via GitHub Actions fails with "No subscriptions found" using Student Subscription [closed]
I am running an ML retraining pipeline using GitHub Actions and Azure.
Setup
I manually host an MLflow server on an Azure Virtual Machine
I use an Azure Student Subscription
The workflow is ...
Score of 0
0 answers
58 views
SonarCloud PR Analysis Shows “0 New Lines” Despite Code Changes in Monorepo
Context
I’m working in a Python monorepo with multiple modules. I want SonarCloud to analyze only changed modules in PRs, comment on PRs, and flag new issues. My setup uses GitHub Actions with a ...
Score of 4
1 answer
120 views
Building and deploying a springboot application that uses Keycloak
I am new to devops and have a project to learn some tools. Currently I am using jenkins running in a docker container to build and deploy a WAR to tomcat running in another container. The springboot ...
Score of 0
0 answers
59 views
Flutter CI/CD pipeline. Build input file cannot be found
I'm trying to build a Flutter CI/CD pipeline but I still get this error no matter what. I tried to modify Pods as well, but the
[12:50:25]: ▸ ::error ::error: Build input file cannot be found: '/Users/...
Score of 3
1 answer
107 views
My pipeline is searching for pubspec.yaml in the wrong directory
I am getting this error when trying to build macOS Flutter app on my pipeline:
Could not find a file named "pubspec.yaml" in "/Users/xxx/macos/Pods".
Of course it can't find it, ...
Score of 5
1 answer
155 views
IBM ODM CLI build fails with IllegalArgumentException: URI is not hierarchical when adding specific XOM JAR to xom-classpath
I am building an IBM ODM RuleApp using the ODM CLI compiler in a GitLab CI (Linux runner) environment.
java -jar rules-compiler.jar -config build.properties
The build fails with the following error ...
Score of 0
1 answer
225 views
GitLab CI: Unable to download job artifact from another project – CI_JOB_TOKEN returns 404, private token returns 401
I’m facing an issue while trying to download a job artifact from one GitLab project into another using GitLab CI/CD.
What I’m trying to achieve
In the project A, I want to improve CI testing by:
...
Score of 1
0 answers
192 views
AWS Amplify failing to reconnect GitHub repository after ownership transfer (Moved Permanently error)
Problem Description
I am facing an issue while reconnecting a GitHub repository in AWS Amplify after the repository ownership was changed.
Originally, the repository was under another GitHub account/...
Best practices
1
vote
1
replies
67
views
Multi repository synchronisation for deployment
For a crew project I have 2 gitlab repositories (backend and front-end) and I'd like to improve my CICD. As of now, when I merge a PR, it deploys on a ""development environment"" ...
Best practices
2
votes
1
replies
255
views
How do I manage Supabase migrations across main and develop branches using GitHub Actions?
I’m using Supabase, Next.js, and GitHub with the following setup:
A main branch for production
A develop branch for development
Two separate Supabase projects:
Project A → Production
Project B → ...