gpt4 book ai didi

WIndows Gitlab-runner : Failed to requeue the runner

转载 作者:行者123 更新时间:2023-12-05 07:12:37 30 4
gpt4 key购买 nike

我有一个包含2 个作业的管道。

我在 windows 上使用 Debug模式以 super 用户身份启动用户并收到下一个输出:

Checking for jobs... received                       job=24173 repo_url=https://scm-01.oursite.com/theproject/theproject-tests.git runner=ub7wf5mg
Failed to requeue the runner builds=1 runner=ub7wf5mg
Running with gitlab-runner 12.8.0 (1b659122) job=24173 project=789 runner=ub7wf5mg
on vm14rkwEggplant ub7wf5mg job=24173 project=789 runner=ub7wf5mg
Shell configuration: environment: []
dockercommand:
- PowerShell
- -NoProfile
- -NoLogo
- -InputFormat
- text
- -OutputFormat
- text
- -NonInteractive
- -ExecutionPolicy
- Bypass
- -Command
- '-'
command: powershell
arguments:
- -noprofile
- -noninteractive
- -executionpolicy
- Bypass
- -command
passfile: true
extension: ps1
job=24173 project=789 runner=ub7wf5mg
Using Shell executor... job=24173 project=789 runner=ub7wf5mg
Waiting for signals... job=24173 project=789 runner=ub7wf5mg
No referees configured job=24173 project=789 runner=ub7wf5mg
Executing build stage build_stage=prepare_script job=24173 project=789 runner=ub7wf5mg
Executing build stage build_stage=get_sources job=24173 project=789 runner=ub7wf5mg
Feeding runners to channel builds=1
WARNING: Failed to parse "X-GitLab-Trace-Update-Interval" header error=strconv.Atoi: parsing "": invalid syntax header-value= job=24173 runner=ub7wf5mg
Appending trace to coordinator... ok code=202 job=24173 job-log=0-536 job-status=running runner=ub7wf5mg sent-log=0-535 status=202 Accepted update-interval=0s
Executing build stage build_stage=upload_artifacts_on_failure job=24173 project=789 runner=ub7wf5mg
Skipping referees execution job=24173 project=789 runner=ub7wf5mg
WARNING: Job failed: exit status 1 duration=4.9592837s job=24173 project=789 runner=ub7wf5mg
WARNING: Failed to parse "X-GitLab-Trace-Update-Interval" header error=strconv.Atoi: parsing "": invalid syntax header-value= job=24173 runner=ub7wf5mg
Appending trace to coordinator... ok code=202 job=24173 job-log=0-2526 job-status=running runner=ub7wf5mg sent-log=536-2525 status=202 Accepted update-interval=0s
Submitting job to coordinator... ok code=200 job=24173 job-status= runner=ub7wf5mg
WARNING: Failed to process runner builds=0 error=exit status 1 executor=shell runner=ub7wf5mg

接下来是gitlab中流水线的输出:

Running with gitlab-runner 12.8.0 (1b659122)
on vm14rkwEggplant ub7wf5mg
Using Shell executor...
Running on KS-IDE-TS4...
Fetching changes with git depth set to 50...
Reinitialized existing Git repository in C:/GitLab-Runner/builds/ub7wf5mg/0/ourproject/ourproject-winappdriver-tests/.git/
From https://scm-01.ourproject.com/ourproject/ourproject-winappdriver-tests
* [new ref] refs/pipelines/5813 -> refs/pipelines/5813
Checking out c924c09b as master...
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/Microsoft.CodeAnalysis.CSharp.dll: Invalid argument
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/Microsoft.CodeAnalysis.dll: Invalid argument
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/Microsoft.CodeAnalysis.VisualBasic.dll: Invalid argument
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/Microsoft.DiaSymReader.Native.amd64.dll: Invalid argument
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/System.Buffers.dll: Invalid argument
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/System.Collections.Immutable.dll: Permission denied
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/System.Memory.dll: Permission denied
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/System.Numerics.Vectors.dll: Permission denied
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/System.Reflection.Metadata.dll: Permission denied
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/System.Runtime.CompilerServices.Unsafe.dll: Permission denied
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/System.Threading.Tasks.Extensions.dll: Permission denied
warning: failed to remove packages/Microsoft.Net.Compilers.Toolset.3.4.0/tasks/net472/VBCSCompiler.exe: Invalid argument
ERROR: Job failed: exit status 1

如果我重新启动运行者,第一个工作就成功了,但是第二个工作再次失败并出现非常相似的错误。

git版本是git 版本 2.25.1.windows.1

这个问题有解决办法吗?运行者的降级是否可以帮助我?

最佳答案

所以问题是我有一个正在运行的进程在我的存储库中有一个位置。首先,我手动杀死它,工作开始正常工作。然后我从我的解决方案中完全删除了这个包并开始使用相同的文件但来自存储库之外。

它是 VBCSCompiler.exe 文件。

要尝试,您可以先从 runner 或通过 cmd 命令手动杀死它:

 tasklist | find /i "VBCSCompiler.exe" && taskkill /im VBCSCompiler.exe /F \|| echo process "VBCSCompiler.exe" not running.

然后我删除了nuget包Microsoft.Net.Compilers.Toolset,因此这个进程路径被更改为

C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\Roslyn

关于WIndows Gitlab-runner : Failed to requeue the runner,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60392447/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com