Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
29 views

The Architecture: I am implementing a Delta Live Tables (DLT) pipeline following the Medallion architecture. Landing: Auto Loader ingesting raw files (JSON/CSV). Bronze Layer: Uses dlt.apply_changes() ...
Jostein Sortland's user avatar
-6 votes
0 answers
49 views

I am learning CI/CD pipeline I made a custom Bitbucket runner on my local VMware-based VM and i set the socarqube server and scanner both on the VM but still it's not working it says it's not a file ...
Vansh Arora's user avatar
-1 votes
1 answer
44 views

I am using this repo to create a mlops pipeline in Azure Devops. When i tried to run the CI pipeline, I am getting the unrecognized Federal Token. I asked chatgpt, it says to update the cli version. I ...
Pratish Dewangan's user avatar
0 votes
1 answer
29 views

I have two tasks: The 'Set Solution Name does this: $SolutionName = "UnknownSolution" Write-Host "::vso[task.setvariable variable=SolutionName;]$SolutionName" Write-Host "...
B-Rad's user avatar
  • 1,567
2 votes
2 answers
188 views

ff I have a function foo, it needs to accept a string, this string can be passed to it directly by typing at the terminal, from a variable or from the clipboard. function foo{ [CmdletBinding()] ...
Ralf_Reddings's user avatar
0 votes
0 answers
49 views

I am fetching data from multiple gitlab APIs : the repositories I have access to, the members and the associated runners. Some api calls will return a 403 forbidden error. I need to manage those ...
Oimat's user avatar
  • 33
0 votes
1 answer
92 views

I made a Kernel project (v5.15.15) in my GitLab account and setting up build pipeline. Did some search and made a following .gitlab-ci.yml file. stages: # List of stages for jobs, and their ...
Cprogrammer's user avatar
2 votes
3 answers
172 views

This is my main script: #!/bin/bash read -p "Name: " NAME read -p "Age: " AGE read -p "Country: " COUNTRY echo "Your name is $NAME. You are $AGE years old. You ...
Benedix's user avatar
  • 31
1 vote
1 answer
52 views

I'm encountering an issue with my pipeline script when running it from SCM. The @Field annotation isn't being recognized, even though I'm using the correct import statement (import groovy.transform....
Sohaib El Mediouni's user avatar
2 votes
2 answers
112 views

I'm trying the the Rust version of coreutils on my Windows 10 system. I renamed coreutils.exe to co.exe so that I can type less. od is the Windows version of the Linux command od [from linux man site =...
Just a learner's user avatar
0 votes
0 answers
33 views

I'm currently building a CI/CD pipeline in GitLab, and I'm running into trouble with integrating a code coverage check. What I’ve Got So Far: A working GitLab Runner (on Windows). An Apex class and a ...
Moritz 's user avatar
0 votes
0 answers
40 views

I have a task that requires me to collect an array, refine it by removing junk entries, and finally process each line. Breaking each of those tasks into functions is fine, but setting up the script to ...
Sigurd Garshol's user avatar
1 vote
1 answer
137 views

I'm using a gitlab pipeline, where its base image repo is in AWS ECR. I've configured AWS ECR pull through cache where my upstream registry is docker hub. In my runners, I've added this [[...
Shiran Joseph's user avatar
0 votes
0 answers
48 views

I checked some netizens' errors. Currently I've tried change Triggers>YAML>Insert something to "Default agent pool for YAML" But seems "Unable to load the pipeline's stages" ...
JasonShih's user avatar
0 votes
0 answers
57 views

This is the issue that I'm still having it with Nexus (Situation: I can't deploy into nexus - I can't upload artifacts into nexus for any of my freestyle project or pipeline project in Jenkins) By the ...
franck alfred's user avatar
0 votes
0 answers
48 views

I just installed the Job Priorities plugin for my Jenkins instance, but I can't for the life of me figure out where the Job Priorities configuration section is located. The plugin is installed, ...
Chanté Blais's user avatar
2 votes
0 answers
49 views

I am trying to use Fastlane in order to publish the app. In my pipeline script, I’m doing the following steps: security unlock-keychain -p "$KEYCHAIN_PASSWORD" ~/Library/Keychains/login....
raminmasumov's user avatar
0 votes
0 answers
64 views

I work with clinical data at a company that, until I arrived, didn't have a data policy. Currently, raw data extraction relies solely on manually downloading CSV/Excel files from an internal portal ...
Luis H Rodriguez 's user avatar
3 votes
2 answers
96 views

Is there a way to dynamically add more variables to the pipeline in the "begin" section of a script? I have a script which can accept data in three different ways: Value as parameter Pipe ...
TripleD's user avatar
  • 381
4 votes
3 answers
98 views

I would like to perform a regression analysis and test different transformations of the input variables for the same model. To accomplish this, I created a dictionary with the different pipelines, ...
p1xel's user avatar
  • 63
0 votes
0 answers
92 views

I want to create DLT pipeline like following. I have streaming bronze table which looks like: Name City Country John Tokyo Japan Mary New York USA Sam Tokyo Japan Now I need two more tables. Main ...
redford's user avatar
2 votes
1 answer
104 views

I'd like to convert a pipe of video stream between streamlink and ffmpeg from cmd to Powershell. But from what I searched powershell only supports piping objects. Is there any way to reproduce this in ...
krawieck's user avatar
  • 135
0 votes
0 answers
35 views

I'm a beginner here. I've built a few nextflow workflows for other tools before. The command for PSORTb requires you to specify the directory where the output in stored and this is where I feel the ...
Sravan Krishna's user avatar
0 votes
1 answer
124 views

I am unable to build my MAUI project that uses Entity Framework Core with migrations in Azure; I am able to build it locally. I get this error when building in Azure: C:\hostedtoolcache\windows\...
Derek's user avatar
  • 712
0 votes
1 answer
197 views

Hello, I am updating a GitLab CI/CD pipeline to add a new job. Unfortunately, when I commit and the pipeline run, I got this error message: jobs:run-tests config contains unknown keys: id_tokens, ...
Oupat's user avatar
  • 131
0 votes
1 answer
71 views

We are trying to run a task conditionally, but the condition always seems to be true, even if it shouldn't. We have 3 files that are passing a parameter from the devops variables down to each file: ...
Ben5's user avatar
  • 933
0 votes
0 answers
38 views

how can I reliably fail a Jenkins pipeline build if the remote agent disconnects during execution? binding.setVariable('selectedNode', "") pipeline { agent {label: LOCAL_NODE} ...
Ioan Simiciuc's user avatar
1 vote
0 answers
164 views

I am trying to install Azure Pipeline Agent in "Windows Server 2025" I downloaded the latest agent file "vsts-agent-win-x64-4.255.0" from Azure Devops Page. I created agent folder ...
Raghu's user avatar
  • 11
2 votes
0 answers
105 views

I have a workload consisting of a series of tasks and each task can be divided into k steps. So far, the j-th step of the i-th task depends on the j-th step of the (i-1)-th task. This can be easily ...
Good So's user avatar
  • 21
0 votes
0 answers
44 views

I have a Jenkins project where I want to display a list of services as checkboxes, then pass the selected services to the pipeline and use an Ansible playbook to handle them (for now, just to restart ...
Diogo Barros's user avatar
1 vote
1 answer
62 views

In the targets package in R, does anyone know if it's possible to remove the progress when running tar_make(). I plan to save the logs as a text file but since the progress bar is being printed every ...
jvlandingin's user avatar
0 votes
1 answer
72 views

I have a main azure pipeline (pipelineFinal) that should be triggered when a pipelineA is finished. pipelineA: trigger: none jobs: - job: BuildA displayName: "Build Pipeline A" pool: ...
homan salimi's user avatar
1 vote
1 answer
34 views

Many redis clients claim to support Auto-pielining. Does Boost redis support that? If yes, how can it be enabled?
user10745240's user avatar
1 vote
0 answers
155 views

I'm working with a locally hosted Hugging Face transformers model (mistral-7b, llama2-13b, etc.), using the pipeline interface on a GPU server (A100). Sometimes inference takes much longer than ...
Swati's user avatar
  • 214
0 votes
1 answer
75 views

I’m working on a data pipeline that ingests JSON data from an S3 bucket into a columnstore table in SingleStore. The challenge is that I need to assign a unique ID (Primary Key) to each record during ...
rudrapbiswas's user avatar
0 votes
0 answers
30 views

This is the definition from my Bitbucket YML file - step: &check_code_quality name: Run Quality Check script: - echo $BITBUCKET_COMMIT - git fetch origin --no-tags --depth=100 &...
Avi's user avatar
  • 65
1 vote
1 answer
466 views

So I have another project which contains artifacts I want to reuse on my project/job/pipeline. So I try to trigger the "another-project"'s pipeline to build the artifacts which I want to ...
Pwnstar's user avatar
  • 2,017
0 votes
0 answers
62 views

I am trying to create a DLT pipeline and this is my first time doing it. What is the best possible way to satisfy my following requirements. I am fully aware that the path I am choosing may not be ...
mithil-shah-92's user avatar
0 votes
1 answer
59 views

I'm working on a project, where I have a pull request pipeline for a logical monorepo. For this I'm using the git submodule functionality to pull a few repositories into mine, and building them. I use ...
Alen Alex's user avatar
  • 1,011
1 vote
4 answers
139 views

I have a pipeline for building and deploying an angular app. It builds successfully but fails during deployment with the error: ##[error]Error: No package found with specified pattern: /home/vsts/...
Creanix Developer's user avatar
0 votes
0 answers
51 views

Description: I am running Jenkins inside a Docker container on Windows 11. I have the Ubuntu app installed from the Microsoft Store, which already has npm version 8.5.1 installed. However, when I run ...
Chhavi Priya Tanwar's user avatar
0 votes
1 answer
62 views

I have done Snowpipe before for a azure Blob before, but since it was private I had access to tenant_id and all authentications. Maybe the question seems backward but when a storage is public, Can we ...
MinaB's user avatar
  • 41
0 votes
1 answer
60 views

I have admin api and public api. 2 seperate branch has been created and 2 different pipelines were created. When i merge the public api code, the admin pipeline also getting triggered, which should ...
Ismail Khan's user avatar
1 vote
2 answers
957 views

I'm running a Databricks Workflow and using {{job.trigger.time.iso_date}} to pass the job execution date as a parameter. However, I need to pass the previous day's date instead (i.e., {{job.trigger....
naveen's user avatar
  • 11
0 votes
1 answer
97 views

I have a snakemake rule where I call a python script with the script keyword: rule merge_results: input: [...] output: path_results script: "merge_results.py&...
Kiffikiffe's user avatar
1 vote
0 answers
468 views

gLTF and probably other formats have different "buffers" that are long series of data. Unless the gLTF have a "stride", that is interleaved data, every buffer store things ...
Katten's user avatar
  • 49
0 votes
3 answers
549 views

We have a self hosted agent running our builds. We have configured it to auto shutdown everyday. In the morning, we always have to go and run the pipeline agent. Is there a way we can make it run ...
Talha Rashid's user avatar
0 votes
0 answers
40 views

recently i started working on log files and handling then i tried to write a simple program trying to tail a log file and send the log lines to a new log file. I used opentelemetry-log-collection ...
Bhavana Matala's user avatar
0 votes
0 answers
23 views

X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42) num_features, bin_features, cat_features = split_features(X) preprocessor = ColumnTransformer([ ('num', ...
Nikola's user avatar
  • 1
1 vote
2 answers
70 views

I have a yml pipeline and I would like to have a dict variable like the 'files' variable below variables: - template: ../../ci-cd/ado_variables/vars.yml - template: ../../ci-cd/ado_variables/${{ ...
Alberto B's user avatar
  • 650

1
2 3 4 5
114