pipeline Questions

2

Solved

I have this GitLab CI-Component: spec: inputs: message: default: test --- .test-component: script: - echo "$[[ inputs.message ]]" Also I have this Pipeline: stages: - test include...

6

Solved

I have folder structure this way in source code. f1 f2 f3 f4 I have added gitcopy diff task in my pipeline which lists and copies files which are modified to a destination folder. Now, I want to ha...
Electrum asked 1/12, 2020 at 10:6

4

Solved

I have a problem in the ADOS system that the pipeline fails because there is no "pool" specified. Also the validation shows this error. However, I have defined a pool. trigger: branches...

3

Solved

I got this from the sklearn webpage: Pipeline: Pipeline of transforms with a final estimator Make_pipeline: Construct a Pipeline from the given estimators. This is a shorthand for the Pipeline co...
Harriettharrietta asked 20/11, 2016 at 18:56

12

I'm trying to deploy my stack to aws using cdk deploy my-stack. When doing it in my terminal window it works perfectly, but when im doing it in my pipeline i get this error: Need to perform AWS cal...
Favourable asked 22/6, 2021 at 7:4

3

Solved

I am currently trying to build a bitbucket pipeline which is supposed to run a docker-compose file to test a microservice before deployment. The docker compose file is supposed to build my microser...
Willin asked 28/9, 2022 at 13:56

4

I am working on a multi-pipeline project, and using trigger keyword to trigger a downstream pipeline, but I'm not able to pass artifacts created in the upstream project. I am using needs to get the...
Tsarevna asked 24/2, 2021 at 17:48

4

Is there a method for converting Hugging Face Transformer embeddings back to text? Suppose that I have text embeddings created using Hugging Face's ClipTextModel using the following method: import ...
Examination asked 6/11, 2022 at 11:45

6

Solved

I want to get feature names after I fit the pipeline. categorical_features = ['brand', 'category_name', 'sub_category'] categorical_transformer = Pipeline(steps=[ ('imputer', SimpleImputer(strateg...
Dansby asked 12/2, 2019 at 9:27

8

Solved

I have two environments on azure. One difference between them is only environment variables that came from variable groups. Is it possible to set up group name dynamically for one pipeline instead ...
Directive asked 20/5, 2019 at 16:24

18

Solved

I want to copy data with scp in a GitLab pipeline using PRIVATE_KEY. The error is: kex_exchange_identification: read: Connection reset by peer Connection reset by x.x.x.x port 22 lost connection P...
Extravert asked 30/9, 2021 at 14:28

4

Solved

I am using the Azure Pipelines GitHub add-on to ensure that pull requests pass my linting. However, I have just made a test pull request which fails my linting, but the Azure Pipeline succeeds. He...
Cupped asked 16/3, 2019 at 7:28

5

Solved

I has the two repositories in bitbucket pipelines, both with pipelines enable. How to execute the pipeline after the other pipeline complete?
Shotgun asked 17/4, 2020 at 19:47

2

Solved

I have two ReadableStreams, and I want to pipe them into one WritableStream, where any data that comes through the ReadableStreams goes directly into the WritableStream right then. I can do the opp...
Serles asked 11/8, 2022 at 1:30

2

Solved

Renovate is updating the packages as soon as there is a new version. But renovate also creates a seperate PR/branch for each update. So if new versions released for 5 of my packages renovate will c...
Marquet asked 4/3, 2021 at 8:29

2

Solved

I've created a workflow on GitHub actions. The first run worked well, but the next time I push to the main branch fails at install dependencies step. It throws me the following error ##[debug]Evalu...
Olpe asked 21/2, 2023 at 3:22

8

Solved

When a non-owner dev pushes a branch to our Gitlab repo, it returns a "pipeline failed" message, with the detail "Pipeline failed due to the user not being verified". On the dev...

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...

3

I am using System.Management.Automation with reference assemblies 4.0 with C# I need to see the output of Write-Host. Documentation says that Write-Host will be outputted in the output stream. What...
Injudicious asked 30/8, 2018 at 15:51

6

Solved

I need to pipe some data to a program's stdin: First 4 bytes are a 32-bit unsigned int representing the length of the data. These 4 bytes are exactly the same as C would store an unsigned int in m...
Wool asked 12/7, 2014 at 1:50

5

Solved

Similar to How to pass a parameter to only one part of a pipeline object in scikit learn? I want to pass parameters to only one part of a pipeline. Usually, it should work fine like: estimator = X...
Azoth asked 30/10, 2016 at 13:22

3

Solved

For some obscure reason I have written a bash script which generates some source code, then compiles it, using ... whatever ... | gcc -x c -o /dev/stdout Now, I want to execute the result on the c...
Tetrarch asked 17/11, 2016 at 21:22

3

Solved

I'm using a scikit-learn custom pipeline (sklearn.pipeline.Pipeline) in conjunction with RandomizedSearchCV for hyper-parameter optimization. This works great. Now I would like to insert a keras mo...
Systematic asked 23/2, 2017 at 11:54

3

What I'm trying to do is get a function to stop the pipeline feed when a time limit has been reached. I've created a test function as follows : function Test-PipelineStuff { [cmdletbinding()] Pa...
Claver asked 3/6, 2015 at 17:11

2

Solved

I came across several references to the concept of a dual issue processor (I hope this even makes sense in a sentence). I can't find any explanation of what exactly dual issue is. Google gives me l...
Kriss asked 4/11, 2011 at 19:28

© 2022 - 2024 — McMap. All rights reserved.