Questions tagged [runner]
250 questions
5
votes
1 answer
Configuring ssh runner for gitlab ssh denied
I'm trying to set up a simple gitlab CI for an angular project
I just made a runner on staging server.
Here is an extract of config.toml in /etc/gitlab-runner
name = "awsTest10"
url = "http://gitlab.XXXXXXX/ci"
token =…

chd
- 141
- 3
- 9
4
votes
0 answers
flutter: library not found for -lBoringSSL-GRPC
trying to build my flutter app from XCode 12 Runner.xcworkspace on my iphone 11 iOS-14 as release, i have the latest flutter version 1.22.0 and it gives me this error.. here's my log
Ld…

azheen
- 897
- 4
- 15
- 30
4
votes
0 answers
Deploy Gitlab Runner stack with docker swarm
I'm trying to deploy a gitlab runner stack in docker-compose above:
version: '3.8'
services:
dind:
image: docker:stable
deploy:
mode: replicated
placement:
constraints:
- "node.role==worker"
…

Lucas Gabriel
- 41
- 3
4
votes
2 answers
@RunWith not compiling in JUnit5
My project is set up with JUnit 5, and I want to use a different Runner for my tests, but I can't even use the @RunWith annotation because it won't compile. In this guide, https://www.baeldung.com/junit-5-runwith, it says that RunWith should still…

jeffrey.d.m
- 616
- 8
- 23
4
votes
0 answers
Karma: cannot start chrome
For my angularjs project, trying to use karma+jamine for unit testing. I have installed karma @ local and trying to start from .bin folder. So i'm getting following issue; FYI I'm pasting folder structure along…

Nandha Kumar
- 41
- 1
- 3
4
votes
3 answers
Why does Visual Studio 2015 console runner not recognize MSpecs?
I've written some MSpecs, but Visual Studio (2015) test runner does not recognize them. I've added the Machine.Specifications.Runner.Console and all required Machine.Specification-packages using the NuGet-PM. But when I choose Test->Run Test, the…

krouch
- 105
- 9
4
votes
2 answers
SonarQube Runner throws NullPointerException during analysis
UPDATE:
I am running it on Fedora 21.
SonarQube - 5.0.
SonarQube Runner - 2.4
UPDATE2: Findbugs v3.1, Java Plugin v2.8
UPDATE3:
Analyzer fails on the following file:
import java.sql.Connection;
import java.sql.ResultSet;
import…

Timson
- 191
- 1
- 9
4
votes
4 answers
What are some good .net job scheduler and runner solutions?
I am looking for a solution, or a set of solutions with the following components:
Job Scheduler - run a specific job on a specific schedule. I have seen Quartz.NET and it seems like a good framework, however I have not found it to have integrations…

eulerfx
- 36,769
- 7
- 61
- 83
3
votes
2 answers
shell script to execute rails runner via cron with rvm
In crontab I have:
0,30 * * * * sh /path/to/my/script.sh
and in my script.sh I have:
#!/bin/bash
rvm use 1.9.2@r321
cd /path/to/my/proyect
rails runner rails_script.rb
But it doesn't load the rvm in 1.9.2, It stays on the system setting which is…

Mr_Nizzle
- 6,644
- 12
- 55
- 85
3
votes
1 answer
Docker Authentification: failed to fetch anonymous token
I got the following error inside my gitlab runner:
ERROR: failed to authorize: failed to fetch anonymous token: Get "https://auth.ipv6.docker.com/token?scope=repository%3Alibrary%2Fnode%3Apull&service=registry.docker.io": dial tcp…

Cliffe
- 107
- 1
- 9
3
votes
0 answers
Github shared and self-hosted runners
I came up an interesting situation recently and I couldn't find something on that, so maybe someone who knows can share this info.
We have a github repository in a github organization. This has a set of GHA jobs (eg release.yaml) which are supposed…

Mar0cR3am
- 81
- 4
3
votes
1 answer
How to run a GitHub Enterprise action runner as an administrator to allow scripts to run with elevated privileges?
I'm using GitHub Enterprise with a self-hosted runner that runs on my dev server to accept the build and deploy commands to that server. The build steps are running successfully, but I'm struggling with the deploy steps. The application that is…

junktrunk
- 71
- 7
3
votes
3 answers
How to create a variable that is the sum of consecutive rows within a given time frame and by id
I am trying to implement a sum of consecutive values that fall with 365 days of each other, grouped by a unique identifier in R. For example, for date 1 of a particular ID, we would add dates 2,3,4 (fall within 365 days) of the same ID to get a…

TexasMed
- 35
- 4
3
votes
1 answer
After updating from 0.9.2 to 0.9.5 getting the error "java.lang.IllegalArgumentException: Illegal group reference"
My test suite was working fine until it was using the version 0.9.2.
I have a test runner with KarateOptions in it to specify the feature files that are to be executed
@KarateOptions(tags = {"~@ignore"},
features = {
…

Vinod Baradwaj
- 118
- 8
3
votes
1 answer
Sbt run tests from src/main/scala instead of src/test/scala?
Say I have a scalatest class in main/scala, like
import org.scalatest.FunSuite
class q3 extends FunSuite {
test("6 5 4 3 2 1") {
val digits = Array(6,5,4,3,2,1)
assert(digits.sorted === Array(1,2,3,4,5,6))
}
}
How do I run…

Noam Eyal
- 318
- 2
- 7