繁体   English   中英

Github 操作:因“失去连接”而失败

[英]Github Action : failed with "lost connection"

我们正在尝试使用 GitHub 操作构建模板化的 gcp 实例。

我们尝试构建我们的 java 档案并将其从 GitHub Ubuntu 机器传输到 GCP 实例。

我们已将 sshkey 设置为使用 ssh-keygen -t rsa -f ~/.ssh/temp -C root -q -N "" && chmod 400 ~/.ssh/temp && chmod 400 ~/ 从 Ubuntu 机器访问 GCP 实例.ssh/temp.pub && echo root: cat ~/.ssh/temp.pub > ~/.ssh/temp-formated.pub && chmod 700 /home/runner/.ssh/temp-formated.pub

当我们尝试运行以下命令时,我们得到错误响应 scp -o StrictHostKeyChecking=no -i /home/runner/.ssh/temp./code-web/target/code.war root@:/opt/code.war

该脚本在 2022 年 12 月 5 日之前运行良好,并从 2022 年 12 月 6 日开始出现错误。

我们曾经遇到过一些失败,但当我们重新运行构建时,同样的工作正常。

构建.yml

# This is a basic workflow to help you get started with Actions

name: build-web

# Controls when the workflow will run
on:
  # Triggers the workflow on push or pull request events but only for the develop branch
 
  # Allows you to run this workflow manually from the Actions tab
  workflow_dispatch:
    inputs:
      short_sha:
        description: 'Git sha on which build will be created'     
        required: true
        default: ''

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
  build:
    # The type of runner that the job will run on
    runs-on: ubuntu-latest

    # Steps represent a sequence of tasks that will be executed as part of the job
    steps:
      # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
      - uses: actions/checkout@v2
        with:
          ref: ${{ github.event.inputs.short_sha }}
     
     # Build using mvn
      - name: Set up JDK 8
        uses: actions/setup-java@v2
        with:
          java-version: '8'
          distribution: 'adopt'
          cache: 'maven'
      - name: Build with Maven
        run: mvn --batch-mode --update-snapshots verify

      - name: Set up Cloud SDK
        uses: google-github-actions/setup-gcloud@v0
        with:
          service_account_key: ${{ secrets.GCP_SA_KEY }}
          export_default_credentials: true

      - name: Gcloud Version
        run: gcloud --version

      - name: Run build script
        run: python ./.github/workflows/build.py ${{ github.event.inputs.short_sha }}

以下是错误日志。

我们已经为同一存储库中其他构建中的其他构建尝试了多个构建——那些也失败了我们已经确认这个秘密仍然有效。 并且构建也成功因此文件“code.war”存在

关于如何找出根本原因的任何想法或面临类似问题的任何人

###Running: ssh-keygen -t  rsa  -f ~/.ssh/temp -C root -q -N "" && chmod 400 ~/.ssh/temp && chmod 400 ~/.ssh/temp.pub && echo root:`cat ~/.ssh/temp.pub` > ~/.ssh/temp-formated.pub && chmod 700 /home/runner/.ssh/temp-formated.pub
###Exit Code: 0
###RESPONSE:(b'', b'')
####################################
#########Transfer public key to instance############
###Running: cd ~/ && pwd
###Exit Code: 0
###RESPONSE:(b'/home/runner\n', b'')
###Running: gcloud compute instances add-metadata dummy-temp-web --project=projectname --zone=us-east1-b --metadata-from-file ssh-keys=/home/runner/.ssh/temp-formated.pub
###Exit Code: 0
###RESPONSE:(b'', b'Updated [https://www.googleapis.com/compute/v1/projects/projectname/zones/us-east1-b/instances/dummy-temp-web].\n')
####################################
#Give time for key to propogate
#########copy to remote############
###Running: scp -o StrictHostKeyChecking=no -i /home/runner/.ssh/temp ./code-web/target/code.war root@<ip>:/opt/code.war
###Exit Code: 1
###RESPONSE:(b'', b"Warning: Permanently added '<ip>' (ECDSA) to the list of known hosts.\r\nPermission denied, please try again.\r\nPermission denied, please try again.\r\nroot@<ip>: Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).\r\nlost connection\n")
Traceback (most recent call last):
  File "/home/runner/work/code/code/./.github/workflows/gcloudBuild.py", line 100, in <module>
    execute(f'***copyBuldFileToRemoteCMD***', False)
  File "/home/runner/work/code/code/./.github/workflows/gcloudBuild.py", line [30](https://github.com/company/code/actions/runs/3628509641/jobs/6119611343#step:7:31), in execute
    raise Exception(f'Sorry, bad exit code***process.returncode***')
Exception: Sorry, bad exit code1

当我在 yml 文件中使用 ubuntu-latest 作为作业运行器时,我也遇到了类似的问题。 我使用ubuntu-20.04而不是ubuntu-latest然后问题为我解决了。

你可以在你的 yml 文件中试试这个

jobs:
# This workflow contains a single job called "build"
  build:
    # The type of runner that the job will run on
    runs-on: ubuntu-20.04

它对我有用。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM