Questions tagged [runner]

250 questions
0
votes
0 answers

Problem with Dataflow runner and jaydebeapi (one-time problem)

Info on our data flow pipeline we're referring to in this incident: pipeline is responsible for moving data from Oracle source to BigQuery; pipeline is written in Python3.6; it uses ojdbc, jdk and jaydebeapi; it is ensured in our code that all…
0
votes
1 answer

Is DNS required to register gitlab runner?

When i register a runner with https://34.66.66.103/gitlab/ as url , it throws the below error. but when i add a dns to it. it works fine!. I'm just wondering is DNS really required for runner registration? Can't runners be registered to gitlab with…
headsha
  • 1
  • 1
0
votes
3 answers

Highest value since - finding the interval in R

I'm working right now at Forex project and I found a problem on my way. I'm trying to find when was the last time when current value was this high or this low. At the beginning I was trying to do that this way: length(c(1:10)) - max(which(c(1:10)…
Radbys
  • 400
  • 2
  • 10
0
votes
1 answer

GitLab Runner different Stages

I want to test files, for this I have a Java program with different packages. "checkFileSize" "checkFileLocation" and so on the tests return only true and false (the tests are main classes in the package) the individual packages are different…
0
votes
1 answer

gitlab: configure runner ci/cd

goes anyone knwos how to modify the ip_adress of a gitlab_runner ? Its is always grey, i can't modify it. Please if you can help don't hesitate. Thank you,
monkey2
  • 31
  • 1
  • 7
0
votes
1 answer

What is the best way to authenticate a Gitlab CI/CD Runner to Hashicorp Vault?

I want to bring this discussion over here. What's the best approach/way to authenticate a Gitlab Runner against Hashicorp Vault to pull secrets required to do a deployment in the pipeline?. What I've thought already Generate a TLS certificate from…
NTHINGs
  • 123
  • 1
  • 5
0
votes
2 answers

module 'firebase_auth not found"

Hello guys, I have been trying to run my flutter code in IOS 11 simulator but after integrating firebase into my project i'm getting this error while running for IOS simulator. Is there anything i can do to solve it?
0
votes
0 answers

#error when compiling flutter app from codemagic

When I am going to compile flutter project to ios from CodeMagic, then build failed with this error. Xcode's output: ↳ error: Multiple commands produce '/Users/builder/clone/build/ios/Debug-iphoneos/Runner.app/Frameworks/Flutter.framework': 1)…
Kasun Nirmala
  • 21
  • 1
  • 4
0
votes
1 answer

Cucumber Java - ExtentReports - IncompatibleClassChangeError: Implementing class

Hi community: I'm facing some issues with trying to implement Extent Reports in Cucumber. I'm receiving this issue after execution: java.lang.IncompatibleClassChangeError: Implementing class at java.lang.ClassLoader.defineClass1(Native Method) …
nosequeweaponer
  • 511
  • 10
  • 38
0
votes
1 answer

Is it possible to implement multiple test runners in pyunitest? while only running the test suite once

if __name__ == '__main__': if is_running_under_teamcity(): runner = TeamcityTestRunner() else: runner = HTMLTestRunner.HTMLTestRunner( stream=outfile, title='Test Report', …
Charlie
  • 75
  • 10
0
votes
1 answer

postman collection runner pass an array of values in data file

I have an api definition like this : { "myVar01": "{{myVar01}}", "myVar02": "{{myVar02}}", "myVar03": "{{}}", "myVar04": { "myVar04-01": "{{myVar04-01}}", "myVar04-02": "{{myVar04-02}}", "myDataArray": [ { …
user2776069
  • 109
  • 1
  • 2
  • 10
0
votes
1 answer

Android + Gitlab CI

I tryed setting gitlab ci for my android project. I want used sdk from local folder without loading from official server. I created runner my work station. Tell me please how write .gitlab-ci.yml for this?
user1854307
  • 580
  • 4
  • 8
  • 21
0
votes
1 answer

Trouble using Find and Prune Command to filter out file name in GitLab runner

So, this is strange and I'm not sure what is causing it.. (I'm very new to cli stuff) I have a directory ==> SomeDirectory I have two jar files ==> original-processor.jar and processor.jar I am looking to just return processor.jar and set it…
user8072194
0
votes
0 answers

Shared volume between Jobs ~ Gitlab Shared Runners

I am running a Gitlab pipeline on a Django + Postgres project and I am trying to build and then run my tests inside my gitlab pipeline. I am using a custom docker image in order to use docker-compose in my pipeline. I have 2 seperate jobs : build…
A. Ecrubit
  • 561
  • 6
  • 20
0
votes
2 answers

Fibonacci Sequence printing out all values in an array EDIT

Okay my new question is how I can let the array print out all numbers of the segment. At the moment I can input a number and the code will print out the corresponding value in Fibonacci. However, I would like the array to print out all values…
king
  • 11
  • 6