Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to download debian packages from self hosted runners #884

Closed
ausias-armesto opened this issue Jun 20, 2023 · 4 comments
Closed

Unable to download debian packages from self hosted runners #884

ausias-armesto opened this issue Jun 20, 2023 · 4 comments

Comments

@ausias-armesto
Copy link

ausias-armesto commented Jun 20, 2023

Troubleshooting

Behaviour

I cannot build a simple docker image using self hosted runners because access to http://deb.debian.org/debian/dists/bullseye/InRelease is failing due to a timeout

Steps to reproduce this issue

  1. Create a self-hosted runner, and rename the github-workflow runner to use yours
  2. Execute the provided github workflow
  3. Check that the build has failed
  4. If I use a runner from Github instead of self-hosted runner it works fine.

Expected behaviour

I would expect the networking to be working the same from outside the docker container.

Actual behaviour

As it can be seen from the github workflow provided, the job has internet access and is able to get the contents of the above mentioned URL.
As it can be seen from the logs, the command RUN curl http://www.ifconfig.me works fine so means that from within the container is also able to download things.
But when executes the second command RUN curl -v http://deb.debian.org/debian/dists/bullseye/InRelease it fails due to a timeout.

The reason for executing this command is because it is internally executed by the RUN apt-get update command.

Configuration

Dockerfile
FROM osexp2000/ubuntu-with-utils
RUN curl http://www.ifconfig.me
RUN curl -v http://deb.debian.org/debian/dists/bullseye/InRelease
RUN apt-get update
Workflow
---
name: Build Debian
on:
  pull_request:
    branches:
      - master
      - release/*
    types:
      - synchronize
      - opened
concurrency:
  group: ${{ github.head_ref }}
  cancel-in-progress: true
jobs:
  build:
    name: docker
    runs-on: ubuntu-2-core
    steps:
      - name: Checkout hoprnet repository
        uses: actions/checkout@v3
      - name: Set up QEMU
        uses: docker/setup-qemu-action@v2
      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v2
      - run: curl -v http://deb.debian.org/debian/dists/bullseye/InRelease
      - name: Build and push docker image
        uses: docker/build-push-action@v4
        with:
          file: packages/ethereum/Dockerfile.test
          tags: europe-west3-docker.pkg.dev/${{ secrets.GOOGLE_HOPRASSOCIATION_PROJECT }}/docker-images/anvil:pr-${{ github.event.pull_request.number }}
Logs
2023-06-20T10:51:57.7809367Z Requested labels: ubuntu-2-core
2023-06-20T10:51:57.7809586Z Job defined at: hoprnet/hoprnet/.github/workflows/build-debian.yaml@refs/pull/5152/merge
2023-06-20T10:51:57.7809671Z Waiting for a runner to pick up this job...
2023-06-20T10:51:57.8929221Z Job is about to start running on the runner: self-hosted-ubuntu-2cpu-h85hh-4vcfw (repository)
2023-06-20T10:52:03.3731628Z Current runner version: '2.305.0'
2023-06-20T10:52:03.3736578Z Runner name: 'self-hosted-ubuntu-2cpu-h85hh-4vcfw'
2023-06-20T10:52:03.3736994Z Runner group name: 'Default'
2023-06-20T10:52:03.3737556Z Machine name: 'self-hosted-ubuntu-2cpu-h85hh-4vcfw'
2023-06-20T10:52:03.3739115Z ##[group]GITHUB_TOKEN Permissions
...
2023-06-20T10:52:03.7808225Z Download action repository 'actions/checkout@v3' (SHA:c85c95e3d7251135ab7dc9ce3241c5835cc595a9)
2023-06-20T10:52:04.3591198Z Download action repository 'docker/setup-qemu-action@v2' (SHA:2b82ce82d56a2a04d2637cd93a637ae1b359c0a7)
2023-06-20T10:52:04.7359520Z Download action repository 'docker/setup-buildx-action@v2' (SHA:ecf95283f03858871ff00b787d79c419715afc34)
2023-06-20T10:52:05.1582998Z Download action repository 'docker/build-push-action@v4' (SHA:2eb1c1961a95fc15694676618e422e8ba1d63825)
2023-06-20T10:52:05.7055142Z Complete job name: docker
2023-06-20T10:52:05.7419089Z A job started hook has been configured by the self-hosted runner administrator
2023-06-20T10:52:05.7637641Z ##[group]Run '/etc/arc/hooks/job-started.sh'
2023-06-20T10:52:05.7653017Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2023-06-20T10:52:05.7653232Z ##[endgroup]
2023-06-20T10:52:05.7881526Z �[0;37m2023-06-20 10:52:05.783  DEBUG --- Running ARC Job Started Hooks�[0m
2023-06-20T10:52:05.7881946Z �[0;37m2023-06-20 10:52:05.786  DEBUG --- Running hook: /etc/arc/hooks/job-started.d/update-status�[0m
2023-06-20T10:52:05.8430080Z ##[group]Run actions/checkout@v3
2023-06-20T10:52:05.8430278Z with:
2023-06-20T10:52:05.8430441Z   repository: hoprnet/hoprnet
2023-06-20T10:52:05.8430782Z   token: ***
2023-06-20T10:52:05.8430938Z   ssh-strict: true
2023-06-20T10:52:05.8431100Z   persist-credentials: true
2023-06-20T10:52:05.8431263Z   clean: true
2023-06-20T10:52:05.8431439Z   sparse-checkout-cone-mode: true
2023-06-20T10:52:05.8431611Z   fetch-depth: 1
2023-06-20T10:52:05.8431747Z   lfs: false
2023-06-20T10:52:05.8431894Z   submodules: false
2023-06-20T10:52:05.8432059Z   set-safe-directory: true
2023-06-20T10:52:05.8432322Z ##[endgroup]
2023-06-20T10:52:05.9833031Z Syncing repository: hoprnet/hoprnet
2023-06-20T10:52:05.9834769Z ##[group]Getting Git version info
2023-06-20T10:52:05.9835319Z Working directory is '/runner/_work/hoprnet/hoprnet'
2023-06-20T10:52:05.9835877Z [command]/usr/bin/git version
2023-06-20T10:52:05.9836166Z git version 2.40.1
2023-06-20T10:52:05.9837237Z ##[endgroup]
2023-06-20T10:52:05.9851295Z Temporarily overriding HOME='/runner/_work/_temp/403d35d6-9e71-4e0c-aaef-03386c69791c' before making global git config changes
2023-06-20T10:52:05.9851847Z Adding repository directory to the temporary git global config as a safe directory
2023-06-20T10:52:05.9852502Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/hoprnet/hoprnet
2023-06-20T10:52:05.9853436Z Deleting the contents of '/runner/_work/hoprnet/hoprnet'
2023-06-20T10:52:05.9854002Z ##[group]Initializing the repository
2023-06-20T10:52:05.9854344Z [command]/usr/bin/git init /runner/_work/hoprnet/hoprnet
2023-06-20T10:52:05.9854838Z hint: Using 'master' as the name for the initial branch. This default branch name
2023-06-20T10:52:05.9855269Z hint: is subject to change. To configure the initial branch name to use in all
2023-06-20T10:52:05.9855939Z hint: of your new repositories, which will suppress this warning, call:
2023-06-20T10:52:05.9856246Z hint: 
2023-06-20T10:52:05.9856629Z hint: 	git config --global init.defaultBranch <name>
2023-06-20T10:52:05.9856909Z hint: 
2023-06-20T10:52:05.9857313Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2023-06-20T10:52:05.9857832Z hint: 'development'. The just-created branch can be renamed via this command:
2023-06-20T10:52:05.9858143Z hint: 
2023-06-20T10:52:05.9858425Z hint: 	git branch -m <name>
2023-06-20T10:52:05.9858784Z Initialized empty Git repository in /runner/_work/hoprnet/hoprnet/.git/
2023-06-20T10:52:05.9859615Z [command]/usr/bin/git remote add origin https://github.com/hoprnet/hoprnet
2023-06-20T10:52:05.9899554Z ##[endgroup]
2023-06-20T10:52:05.9900149Z ##[group]Disabling automatic garbage collection
2023-06-20T10:52:05.9902359Z [command]/usr/bin/git config --local gc.auto 0
2023-06-20T10:52:05.9950778Z ##[endgroup]
2023-06-20T10:52:05.9951798Z ##[group]Setting up auth
2023-06-20T10:52:05.9957708Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2023-06-20T10:52:06.0008574Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2023-06-20T10:52:06.0451435Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2023-06-20T10:52:06.0515878Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2023-06-20T10:52:06.0983827Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2023-06-20T10:52:06.1061059Z ##[endgroup]
2023-06-20T10:52:06.1062260Z ##[group]Fetching the repository
2023-06-20T10:52:06.1083988Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +0206ad1cf6765075efa233f3b510c0c235f401ff:refs/remotes/pull/5152/merge
2023-06-20T10:52:06.6455571Z remote: Enumerating objects: 34647, done.        
...
2023-06-20T10:52:21.8845153Z Note: switching to 'refs/remotes/pull/5152/merge'.
2023-06-20T10:52:21.8845704Z 
2023-06-20T10:52:21.8846397Z You are in 'detached HEAD' state. You can look around, make experimental
2023-06-20T10:52:21.8847391Z changes and commit them, and you can discard any commits you make in this
2023-06-20T10:52:21.8848842Z state without impacting any branches by switching back to a branch.
2023-06-20T10:52:21.8849366Z 
2023-06-20T10:52:21.8849793Z If you want to create a new branch to retain commits you create, you may
2023-06-20T10:52:21.8850939Z do so (now or later) by using -c with the switch command. Example:
2023-06-20T10:52:21.8851422Z 
2023-06-20T10:52:21.8851842Z   git switch -c <new-branch-name>
2023-06-20T10:52:21.8852233Z 
2023-06-20T10:52:21.8852485Z Or undo this operation with:
2023-06-20T10:52:21.8852846Z 
2023-06-20T10:52:21.8853050Z   git switch -
2023-06-20T10:52:21.8853358Z 
2023-06-20T10:52:21.8853826Z Turn off this advice by setting config variable advice.detachedHead to false
2023-06-20T10:52:21.8854366Z 
2023-06-20T10:52:21.8854924Z HEAD is now at 0206ad1c Merge 53124eafa95f110c82583059b6809284a34c0b02 into 1aacce7e9baf5a73300317e063fdb9ba22a1a87c
2023-06-20T10:52:21.8988415Z ##[endgroup]
2023-06-20T10:52:21.9076223Z [command]/usr/bin/git log -1 --format='%H'
2023-06-20T10:52:21.9131101Z '0206ad1cf6765075efa233f3b510c0c235f401ff'
2023-06-20T10:52:21.9358703Z ##[group]Run docker/setup-qemu-action@v2
2023-06-20T10:52:21.9359108Z with:
2023-06-20T10:52:21.9359459Z   image: tonistiigi/binfmt:latest
2023-06-20T10:52:21.9359842Z   platforms: all
2023-06-20T10:52:21.9360397Z ##[endgroup]
2023-06-20T10:52:22.0042366Z ##[group]Docker info
2023-06-20T10:52:22.0068998Z [command]/usr/local/bin/docker version
2023-06-20T10:52:22.0305261Z Client:
2023-06-20T10:52:22.0306636Z  Version:           20.10.23
2023-06-20T10:52:22.0307195Z  API version:       1.41
2023-06-20T10:52:22.0307823Z  Go version:        go1.18.10
2023-06-20T10:52:22.0308383Z  Git commit:        7155243
2023-06-20T10:52:22.0308953Z  Built:             Thu Jan 19 17:30:35 2023
2023-06-20T10:52:22.0309536Z  OS/Arch:           linux/amd64
2023-06-20T10:52:22.0310586Z  Context:           default
2023-06-20T10:52:22.0311121Z  Experimental:      true
2023-06-20T10:52:22.0311470Z 
2023-06-20T10:52:22.0312098Z Server: Docker Engine - Community
2023-06-20T10:52:22.0312621Z  Engine:
2023-06-20T10:52:22.0313193Z   Version:          24.0.2
2023-06-20T10:52:22.0313827Z   API version:      1.43 (minimum version 1.12)
2023-06-20T10:52:22.0314423Z   Go version:       go1.20.4
2023-06-20T10:52:22.0314955Z   Git commit:       659604f
2023-06-20T10:52:22.0315509Z   Built:            Thu May 25 21:35:04 2023
2023-06-20T10:52:22.0316071Z   OS/Arch:          linux/amd64
2023-06-20T10:52:22.0316620Z   Experimental:     false
2023-06-20T10:52:22.0317136Z  containerd:
2023-06-20T10:52:22.0317638Z   Version:          v1.7.1
2023-06-20T10:52:22.0318322Z   GitCommit:        1677a17964311325ed1c31e2c0a3589ce6d5c30d
2023-06-20T10:52:22.0318894Z  runc:
2023-06-20T10:52:22.0319349Z   Version:          1.1.7
2023-06-20T10:52:22.0320068Z   GitCommit:        v1.1.7-0-g860f061
2023-06-20T10:52:22.0320725Z  docker-init:
2023-06-20T10:52:22.0321215Z   Version:          0.19.0
2023-06-20T10:52:22.0321758Z   GitCommit:        de40ad0
2023-06-20T10:52:22.0346533Z [command]/usr/local/bin/docker info
2023-06-20T10:52:22.1071433Z Client:
2023-06-20T10:52:22.1072340Z  Context:    default
2023-06-20T10:52:22.1073197Z  Debug Mode: false
2023-06-20T10:52:22.1073758Z  Plugins:
2023-06-20T10:52:22.1074353Z   compose: Docker Compose (Docker Inc., v2.16.0)
2023-06-20T10:52:22.1074941Z 
2023-06-20T10:52:22.1075233Z Server:
2023-06-20T10:52:22.1076052Z  Containers: 0
2023-06-20T10:52:22.1076769Z   Running: 0
2023-06-20T10:52:22.1077234Z   Paused: 0
2023-06-20T10:52:22.1077690Z   Stopped: 0
2023-06-20T10:52:22.1078140Z  Images: 0
2023-06-20T10:52:22.1078617Z  Server Version: 24.0.2
2023-06-20T10:52:22.1079186Z  Storage Driver: overlay2
2023-06-20T10:52:22.1079783Z   Backing Filesystem: extfs
2023-06-20T10:52:22.1080348Z   Supports d_type: true
2023-06-20T10:52:22.1080873Z   Using metacopy: false
2023-06-20T10:52:22.1081440Z   Native Overlay Diff: true
2023-06-20T10:52:22.1081975Z   userxattr: false
2023-06-20T10:52:22.1082862Z  Logging Driver: json-file
2023-06-20T10:52:22.1083415Z  Cgroup Driver: cgroupfs
2023-06-20T10:52:22.1083982Z  Cgroup Version: 2
2023-06-20T10:52:22.1084478Z  Plugins:
2023-06-20T10:52:22.1084925Z   Volume: local
2023-06-20T10:52:22.1085544Z   Network: bridge host ipvlan macvlan null overlay
2023-06-20T10:52:22.1086694Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2023-06-20T10:52:22.1087433Z  Swarm: inactive
2023-06-20T10:52:22.1088011Z  Runtimes: io.containerd.runc.v2 runc
2023-06-20T10:52:22.1088627Z  Default Runtime: runc
2023-06-20T10:52:22.1089307Z  Init Binary: docker-init
2023-06-20T10:52:22.1090006Z  containerd version: 1677a17964311325ed1c31e2c0a3589ce6d5c30d
2023-06-20T10:52:22.1090824Z  runc version: v1.1.7-0-g860f061
2023-06-20T10:52:22.1091382Z  init version: de40ad0
2023-06-20T10:52:22.1091892Z  Security Options:
2023-06-20T10:52:22.1092379Z   apparmor
2023-06-20T10:52:22.1092827Z   seccomp
2023-06-20T10:52:22.1093313Z    Profile: builtin
2023-06-20T10:52:22.1093804Z   cgroupns
2023-06-20T10:52:22.1094451Z  Kernel Version: 5.10.0-23-amd64
2023-06-20T10:52:22.1095738Z  Operating System: Alpine Linux v3.18 (containerized)
2023-06-20T10:52:22.1096420Z  OSType: linux
2023-06-20T10:52:22.1096935Z  Architecture: x86_64
2023-06-20T10:52:22.1097422Z  CPUs: 36
2023-06-20T10:52:22.1097905Z  Total Memory: 125.5GiB
2023-06-20T10:52:22.1098770Z  Name: self-hosted-ubuntu-2cpu-h85hh-4vcfw
2023-06-20T10:52:22.1099907Z  ID: 55f90eef-0d92-4df1-8d18-fc77a4527b70
2023-06-20T10:52:22.1100663Z  Docker Root Dir: /var/lib/docker
2023-06-20T10:52:22.1101199Z  Debug Mode: false
2023-06-20T10:52:22.1101837Z  Registry: https://index.docker.io/v1/
2023-06-20T10:52:22.1102412Z  Labels:
2023-06-20T10:52:22.1102896Z  Experimental: false
2023-06-20T10:52:22.1103448Z  Insecure Registries:
2023-06-20T10:52:22.1103947Z   127.0.0.0/8
2023-06-20T10:52:22.1104460Z  Live Restore Enabled: false
2023-06-20T10:52:22.1105345Z  Product License: Community Engine
2023-06-20T10:52:22.1105728Z 
2023-06-20T10:52:22.1106535Z ##[endgroup]
2023-06-20T10:52:22.1107501Z ##[group]Pulling binfmt Docker image
2023-06-20T10:52:22.1114363Z [command]/usr/local/bin/docker pull tonistiigi/binfmt:latest
2023-06-20T10:52:24.5068727Z latest: Pulling from tonistiigi/binfmt
2023-06-20T10:52:24.8426764Z 8d4d64c318a5: Pulling fs layer
2023-06-20T10:52:24.8427445Z e9c608ddc3cb: Pulling fs layer
2023-06-20T10:52:25.3137355Z e9c608ddc3cb: Verifying Checksum
2023-06-20T10:52:25.3138096Z e9c608ddc3cb: Download complete
2023-06-20T10:52:25.4800303Z 8d4d64c318a5: Verifying Checksum
2023-06-20T10:52:25.4801096Z 8d4d64c318a5: Download complete
2023-06-20T10:52:26.0585164Z 8d4d64c318a5: Pull complete
2023-06-20T10:52:26.1396668Z e9c608ddc3cb: Pull complete
2023-06-20T10:52:26.1443199Z Digest: sha256:66e11bea77a5ea9d6f0fe79b57cd2b189b5d15b93a2bdb925be22949232e4e55
2023-06-20T10:52:26.1449476Z Status: Downloaded newer image for tonistiigi/binfmt:latest
2023-06-20T10:52:26.1463797Z docker.io/tonistiigi/binfmt:latest
2023-06-20T10:52:26.1495918Z ##[endgroup]
2023-06-20T10:52:26.1496925Z ##[group]Image info
2023-06-20T10:52:26.1519455Z [command]/usr/local/bin/docker image inspect tonistiigi/binfmt:latest
2023-06-20T10:52:26.1882013Z [
2023-06-20T10:52:26.1882717Z     {
2023-06-20T10:52:26.1883902Z         "Id": "sha256:354472a378935adfe74a19600b89bd9ada7bb058306fff23b3d6613405852faf",
2023-06-20T10:52:26.1885020Z         "RepoTags": [
2023-06-20T10:52:26.1885583Z             "tonistiigi/binfmt:latest"
2023-06-20T10:52:26.1886110Z         ],
2023-06-20T10:52:26.1886648Z         "RepoDigests": [
2023-06-20T10:52:26.1888001Z             "tonistiigi/binfmt@sha256:66e11bea77a5ea9d6f0fe79b57cd2b189b5d15b93a2bdb925be22949232e4e55"
2023-06-20T10:52:26.1889219Z         ],
2023-06-20T10:52:26.1889713Z         "Parent": "",
2023-06-20T10:52:26.1890354Z         "Comment": "buildkit.dockerfile.v0",
2023-06-20T10:52:26.1891578Z         "Created": "2022-08-02T19:13:20.178433831Z",
2023-06-20T10:52:26.1892188Z         "Container": "",
2023-06-20T10:52:26.1892740Z         "ContainerConfig": {
2023-06-20T10:52:26.1893291Z             "Hostname": "",
2023-06-20T10:52:26.1893860Z             "Domainname": "",
2023-06-20T10:52:26.1894381Z             "User": "",
2023-06-20T10:52:26.1894941Z             "AttachStdin": false,
2023-06-20T10:52:26.1895529Z             "AttachStdout": false,
2023-06-20T10:52:26.1896106Z             "AttachStderr": false,
2023-06-20T10:52:26.1896623Z             "Tty": false,
2023-06-20T10:52:26.1897356Z             "OpenStdin": false,
2023-06-20T10:52:26.1897908Z             "StdinOnce": false,
2023-06-20T10:52:26.1898435Z             "Env": null,
2023-06-20T10:52:26.1898939Z             "Cmd": null,
2023-06-20T10:52:26.1899455Z             "Image": "",
2023-06-20T10:52:26.1900363Z             "Volumes": null,
2023-06-20T10:52:26.1901065Z             "WorkingDir": "",
2023-06-20T10:52:26.1901739Z             "Entrypoint": null,
2023-06-20T10:52:26.1902286Z             "OnBuild": null,
2023-06-20T10:52:26.1902805Z             "Labels": null
2023-06-20T10:52:26.1903293Z         },
2023-06-20T10:52:26.1903808Z         "DockerVersion": "",
2023-06-20T10:52:26.1904993Z         "Author": "",
2023-06-20T10:52:26.1905521Z         "Config": {
2023-06-20T10:52:26.1906025Z             "Hostname": "",
2023-06-20T10:52:26.1906541Z             "Domainname": "",
2023-06-20T10:52:26.1907054Z             "User": "",
2023-06-20T10:52:26.1907584Z             "AttachStdin": false,
2023-06-20T10:52:26.1908183Z             "AttachStdout": false,
2023-06-20T10:52:26.1908758Z             "AttachStderr": false,
2023-06-20T10:52:26.1909290Z             "Tty": false,
2023-06-20T10:52:26.1909817Z             "OpenStdin": false,
2023-06-20T10:52:26.1910362Z             "StdinOnce": false,
2023-06-20T10:52:26.1910851Z             "Env": [
2023-06-20T10:52:26.1911565Z                 "PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
2023-06-20T10:52:26.1912629Z                 "QEMU_PRESERVE_ARGV0=1"
2023-06-20T10:52:26.1913172Z             ],
2023-06-20T10:52:26.1913638Z             "Cmd": null,
2023-06-20T10:52:26.1914135Z             "Image": "",
2023-06-20T10:52:26.1914774Z             "Volumes": {
2023-06-20T10:52:26.1915278Z                 "/tmp": {}
2023-06-20T10:52:26.1915736Z             },
2023-06-20T10:52:26.1916235Z             "WorkingDir": "/",
2023-06-20T10:52:26.1916798Z             "Entrypoint": [
2023-06-20T10:52:26.1917354Z                 "/usr/bin/binfmt"
2023-06-20T10:52:26.1917830Z             ],
2023-06-20T10:52:26.1918313Z             "OnBuild": null,
2023-06-20T10:52:26.1918828Z             "Labels": {
2023-06-20T10:52:26.1919914Z                 "org.opencontainers.image.created": "2022-08-02T18:32:39.936Z",
2023-06-20T10:52:26.1921452Z                 "org.opencontainers.image.description": "Cross-platform emulator collection distributed with Docker images",
2023-06-20T10:52:26.1922569Z                 "org.opencontainers.image.licenses": "MIT",
2023-06-20T10:52:26.1923609Z                 "org.opencontainers.image.revision": "a161c41c7aeaf3ef1c5b97f91aa02a12cca73432",
2023-06-20T10:52:26.1924774Z                 "org.opencontainers.image.source": "https://github.com/tonistiigi/binfmt",
2023-06-20T10:52:26.1925729Z                 "org.opencontainers.image.title": "Binfmt",
2023-06-20T10:52:26.1926802Z                 "org.opencontainers.image.url": "https://github.com/tonistiigi/binfmt",
2023-06-20T10:52:26.1928032Z                 "org.opencontainers.image.version": "qemu-v7.0.0-28"
2023-06-20T10:52:26.1928707Z             }
2023-06-20T10:52:26.1929139Z         },
2023-06-20T10:52:26.1929676Z         "Architecture": "amd64",
2023-06-20T10:52:26.1930225Z         "Os": "linux",
2023-06-20T10:52:26.1930722Z         "Size": 60182964,
2023-06-20T10:52:26.1931245Z         "VirtualSize": 60182964,
2023-06-20T10:52:26.1931789Z         "GraphDriver": {
2023-06-20T10:52:26.1932299Z             "Data": {
2023-06-20T10:52:26.1933158Z                 "LowerDir": "/var/lib/docker/overlay2/803aee145b733ca67155260d1730a2fe983b3f0b414824f9d35b88eeb4604b44/diff",
2023-06-20T10:52:26.1934399Z                 "MergedDir": "/var/lib/docker/overlay2/9eb2310534b618982626fc2afa2ecc15ad7094bdf4c171177b1e44ec3eaca2dd/merged",
2023-06-20T10:52:26.1935628Z                 "UpperDir": "/var/lib/docker/overlay2/9eb2310534b618982626fc2afa2ecc15ad7094bdf4c171177b1e44ec3eaca2dd/diff",
2023-06-20T10:52:26.1936819Z                 "WorkDir": "/var/lib/docker/overlay2/9eb2310534b618982626fc2afa2ecc15ad7094bdf4c171177b1e44ec3eaca2dd/work"
2023-06-20T10:52:26.1937607Z             },
2023-06-20T10:52:26.1938105Z             "Name": "overlay2"
2023-06-20T10:52:26.1938584Z         },
2023-06-20T10:52:26.1939037Z         "RootFS": {
2023-06-20T10:52:26.1939544Z             "Type": "layers",
2023-06-20T10:52:26.1940846Z             "Layers": [
2023-06-20T10:52:26.1941932Z                 "sha256:4c67e4044f8c0fe3e3efaf76f2a3d5d3d866f8ef2e8a9da756949d90e576baa0",
2023-06-20T10:52:26.1942993Z                 "sha256:949acf1cb73a60306e050836deb85a26fe23e226f6bcc499872b057efbf22dd1"
2023-06-20T10:52:26.1943703Z             ]
2023-06-20T10:52:26.1944144Z         },
2023-06-20T10:52:26.1945059Z         "Metadata": {
2023-06-20T10:52:26.1945985Z             "LastTagTime": "0001-01-01T00:00:00Z"
2023-06-20T10:52:26.1946540Z         }
2023-06-20T10:52:26.1946973Z     }
2023-06-20T10:52:26.1947393Z ]
2023-06-20T10:52:26.1948489Z ##[endgroup]
2023-06-20T10:52:26.1949504Z ##[group]Installing QEMU static binaries
2023-06-20T10:52:26.1951212Z [command]/usr/local/bin/docker run --rm --privileged tonistiigi/binfmt:latest --install all
2023-06-20T10:52:26.7615391Z installing: mips64le OK
2023-06-20T10:52:26.7626196Z installing: s390x OK
2023-06-20T10:52:26.7628290Z installing: riscv64 OK
2023-06-20T10:52:26.7628836Z installing: arm64 OK
2023-06-20T10:52:26.7629368Z installing: arm OK
2023-06-20T10:52:26.7629910Z installing: ppc64le OK
2023-06-20T10:52:26.7630471Z installing: mips64 OK
2023-06-20T10:52:26.8079096Z {
2023-06-20T10:52:26.8079987Z   "supported": [
2023-06-20T10:52:26.8080679Z     "linux/amd64",
2023-06-20T10:52:26.8081807Z     "linux/arm64",
2023-06-20T10:52:26.8082938Z     "linux/riscv64",
2023-06-20T10:52:26.8084495Z     "linux/ppc64le",
2023-06-20T10:52:26.8085471Z     "linux/s390x",
2023-06-20T10:52:26.8086404Z     "linux/386",
2023-06-20T10:52:26.8087293Z     "linux/mips64le",
2023-06-20T10:52:26.8087984Z     "linux/mips64",
2023-06-20T10:52:26.8088901Z     "linux/arm/v7",
2023-06-20T10:52:26.8089774Z     "linux/arm/v6"
2023-06-20T10:52:26.8090597Z   ],
2023-06-20T10:52:26.8091474Z   "emulators": [
2023-06-20T10:52:26.8092865Z     "qemu-aarch64",
2023-06-20T10:52:26.8093650Z     "qemu-arm",
2023-06-20T10:52:26.8094410Z     "qemu-mips64",
2023-06-20T10:52:26.8095190Z     "qemu-mips64el",
2023-06-20T10:52:26.8095974Z     "qemu-ppc64le",
2023-06-20T10:52:26.8096734Z     "qemu-riscv64",
2023-06-20T10:52:26.8097479Z     "qemu-s390x"
2023-06-20T10:52:26.8098075Z   ]
2023-06-20T10:52:26.8098944Z }
2023-06-20T10:52:27.0277788Z ##[endgroup]
2023-06-20T10:52:27.0279507Z ##[group]Extracting available platforms
2023-06-20T10:52:27.6821408Z linux/amd64,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6
2023-06-20T10:52:27.6827849Z ##[endgroup]
2023-06-20T10:52:27.7043627Z ##[group]Run docker/setup-buildx-action@v2
2023-06-20T10:52:27.7044263Z with:
2023-06-20T10:52:27.7044775Z   driver: docker-container
2023-06-20T10:52:27.7045769Z   buildkitd-flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
2023-06-20T10:52:27.7046677Z   install: false
2023-06-20T10:52:27.7047153Z   use: true
2023-06-20T10:52:27.7047604Z   cleanup: true
2023-06-20T10:52:27.7048077Z ##[endgroup]
2023-06-20T10:52:27.8524057Z ##[group]Docker info
2023-06-20T10:52:27.8550705Z [command]/usr/local/bin/docker version
2023-06-20T10:52:27.8795963Z Client:
2023-06-20T10:52:27.8801314Z  Version:           20.10.23
2023-06-20T10:52:27.8802110Z  API version:       1.41
2023-06-20T10:52:27.8802807Z  Go version:        go1.18.10
2023-06-20T10:52:27.8803487Z  Git commit:        7155243
2023-06-20T10:52:27.8804199Z  Built:             Thu Jan 19 17:30:35 2023
2023-06-20T10:52:27.8804902Z  OS/Arch:           linux/amd64
2023-06-20T10:52:27.8805646Z  Context:           default
2023-06-20T10:52:27.8806320Z  Experimental:      true
2023-06-20T10:52:27.8806778Z 
2023-06-20T10:52:27.8807582Z Server: Docker Engine - Community
2023-06-20T10:52:27.8808131Z  Engine:
2023-06-20T10:52:27.8808612Z   Version:          24.0.2
2023-06-20T10:52:27.8809222Z   API version:      1.43 (minimum version 1.12)
2023-06-20T10:52:27.8809959Z   Go version:       go1.20.4
2023-06-20T10:52:27.8810764Z   Git commit:       659604f
2023-06-20T10:52:27.8811466Z   Built:            Thu May 25 21:35:04 2023
2023-06-20T10:52:27.8812160Z   OS/Arch:          linux/amd64
2023-06-20T10:52:27.8812857Z   Experimental:     false
2023-06-20T10:52:27.8813499Z  containerd:
2023-06-20T10:52:27.8814137Z   Version:          v1.7.1
2023-06-20T10:52:27.8814920Z   GitCommit:        1677a17964311325ed1c31e2c0a3589ce6d5c30d
2023-06-20T10:52:27.8815604Z  runc:
2023-06-20T10:52:27.8816444Z   Version:          1.1.7
2023-06-20T10:52:27.8817354Z   GitCommit:        v1.1.7-0-g860f061
2023-06-20T10:52:27.8818153Z  docker-init:
2023-06-20T10:52:27.8818803Z   Version:          0.19.0
2023-06-20T10:52:27.8819453Z   GitCommit:        de40ad0
2023-06-20T10:52:27.8864716Z [command]/usr/local/bin/docker info
2023-06-20T10:52:27.9571700Z Client:
2023-06-20T10:52:27.9572790Z  Context:    default
2023-06-20T10:52:27.9574168Z  Debug Mode: false
2023-06-20T10:52:27.9574963Z  Plugins:
2023-06-20T10:52:27.9575611Z   compose: Docker Compose (Docker Inc., v2.16.0)
2023-06-20T10:52:27.9576123Z 
2023-06-20T10:52:27.9576297Z Server:
2023-06-20T10:52:27.9576757Z  Containers: 0
2023-06-20T10:52:27.9577229Z   Running: 0
2023-06-20T10:52:27.9577692Z   Paused: 0
2023-06-20T10:52:27.9578157Z   Stopped: 0
2023-06-20T10:52:27.9579229Z  Images: 1
2023-06-20T10:52:27.9579942Z  Server Version: 24.0.2
2023-06-20T10:52:27.9580606Z  Storage Driver: overlay2
2023-06-20T10:52:27.9581191Z   Backing Filesystem: extfs
2023-06-20T10:52:27.9581748Z   Supports d_type: true
2023-06-20T10:52:27.9582286Z   Using metacopy: false
2023-06-20T10:52:27.9582862Z   Native Overlay Diff: true
2023-06-20T10:52:27.9583398Z   userxattr: false
2023-06-20T10:52:27.9584329Z  Logging Driver: json-file
2023-06-20T10:52:27.9584918Z  Cgroup Driver: cgroupfs
2023-06-20T10:52:27.9585452Z  Cgroup Version: 2
2023-06-20T10:52:27.9585943Z  Plugins:
2023-06-20T10:52:27.9586395Z   Volume: local
2023-06-20T10:52:27.9587013Z   Network: bridge host ipvlan macvlan null overlay
2023-06-20T10:52:27.9588165Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2023-06-20T10:52:27.9588921Z  Swarm: inactive
2023-06-20T10:52:27.9589520Z  Runtimes: io.containerd.runc.v2 runc
2023-06-20T10:52:27.9590133Z  Default Runtime: runc
2023-06-20T10:52:27.9590798Z  Init Binary: docker-init
2023-06-20T10:52:27.9591504Z  containerd version: 1677a17964311325ed1c31e2c0a3589ce6d5c30d
2023-06-20T10:52:27.9592321Z  runc version: v1.1.7-0-g860f061
2023-06-20T10:52:27.9592889Z  init version: de40ad0
2023-06-20T10:52:27.9593413Z  Security Options:
2023-06-20T10:52:27.9593918Z   apparmor
2023-06-20T10:52:27.9594872Z   seccomp
2023-06-20T10:52:27.9595357Z    Profile: builtin
2023-06-20T10:52:27.9595838Z   cgroupns
2023-06-20T10:52:27.9596494Z  Kernel Version: 5.10.0-23-amd64
2023-06-20T10:52:27.9597186Z  Operating System: Alpine Linux v3.18 (containerized)
2023-06-20T10:52:27.9597811Z  OSType: linux
2023-06-20T10:52:27.9598343Z  Architecture: x86_64
2023-06-20T10:52:27.9598854Z  CPUs: 36
2023-06-20T10:52:27.9599344Z  Total Memory: 125.5GiB
2023-06-20T10:52:27.9600186Z  Name: self-hosted-ubuntu-2cpu-h85hh-4vcfw
2023-06-20T10:52:27.9601087Z  ID: 55f90eef-0d92-4df1-8d18-fc77a4527b70
2023-06-20T10:52:27.9601710Z  Docker Root Dir: /var/lib/docker
2023-06-20T10:52:27.9602259Z  Debug Mode: false
2023-06-20T10:52:27.9602906Z  Registry: https://index.docker.io/v1/
2023-06-20T10:52:27.9603503Z  Labels:
2023-06-20T10:52:27.9603983Z  Experimental: false
2023-06-20T10:52:27.9604527Z  Insecure Registries:
2023-06-20T10:52:27.9605020Z   127.0.0.0/8
2023-06-20T10:52:27.9605526Z  Live Restore Enabled: false
2023-06-20T10:52:27.9606149Z  Product License: Community Engine
2023-06-20T10:52:27.9606536Z 
2023-06-20T10:52:27.9607653Z ##[endgroup]
2023-06-20T10:52:27.9956915Z ##[group]Download buildx from GitHub Releases
2023-06-20T10:52:28.0809640Z Downloading https://github.com/docker/buildx/releases/download/v0.11.0/buildx-v0.11.0.linux-amd64
2023-06-20T10:52:28.9771805Z ##[endgroup]
2023-06-20T10:52:28.9772770Z ##[group]Install buildx
2023-06-20T10:52:28.9773328Z Docker plugin mode
2023-06-20T10:52:29.0152458Z Fixing perms
2023-06-20T10:52:29.0154639Z Plugin path: /home/runner/.docker/cli-plugins/docker-buildx
2023-06-20T10:52:29.0155951Z ##[endgroup]
2023-06-20T10:52:29.0156911Z ##[group]Buildx version
2023-06-20T10:52:29.0168638Z [command]/usr/local/bin/docker buildx version
2023-06-20T10:52:29.1374234Z github.com/docker/buildx v0.11.0 687feca9e8dcd1534ac4c026bc4db5a49de0dd6e
2023-06-20T10:52:29.1422057Z ##[endgroup]
2023-06-20T10:52:29.1442190Z ##[group]Creating a new builder instance
2023-06-20T10:52:29.2855318Z [command]/usr/local/bin/docker buildx create --name builder-be02a497-c245-4925-8038-853ab592c84f --driver docker-container --buildkitd-flags --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host --use
2023-06-20T10:52:29.4171173Z builder-be02a497-c245-4925-8038-853ab592c84f
2023-06-20T10:52:29.4232549Z ##[endgroup]
2023-06-20T10:52:29.4233814Z ##[group]Booting builder
2023-06-20T10:52:29.4291312Z [command]/usr/local/bin/docker buildx inspect --bootstrap --builder builder-be02a497-c245-4925-8038-853ab592c84f
2023-06-20T10:52:29.5458548Z #1 [internal] booting buildkit
2023-06-20T10:52:29.6965806Z #1 pulling image moby/buildkit:buildx-stable-1
2023-06-20T10:52:34.3587034Z #1 pulling image moby/buildkit:buildx-stable-1 4.8s done
2023-06-20T10:52:34.5093969Z #1 creating container buildx_buildkit_builder-be02a497-c245-4925-8038-853ab592c84f0
2023-06-20T10:52:35.0867735Z #1 creating container buildx_buildkit_builder-be02a497-c245-4925-8038-853ab592c84f0 0.7s done
2023-06-20T10:52:35.0890515Z #1 DONE 5.5s
2023-06-20T10:52:35.2570035Z Name:          builder-be02a497-c245-4925-8038-853ab592c84f
2023-06-20T10:52:35.2571441Z Driver:        docker-container
2023-06-20T10:52:35.2572465Z Last Activity: 2023-06-20 10:52:29 +0000 UTC
2023-06-20T10:52:35.2573012Z 
2023-06-20T10:52:35.2573376Z Nodes:
2023-06-20T10:52:35.2574673Z Name:      builder-be02a497-c245-4925-8038-853ab592c84f0
2023-06-20T10:52:35.2575664Z Endpoint:  unix:///run/docker/docker.sock
2023-06-20T10:52:35.2576422Z Status:    running
2023-06-20T10:52:35.2578098Z Flags:     --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host
2023-06-20T10:52:35.2579137Z Buildkit:  v0.11.6
2023-06-20T10:52:35.2580628Z Platforms: linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/amd64/v4, linux/arm64, linux/riscv64, linux/ppc64le, linux/s390x, linux/386, linux/mips64le, linux/mips64, linux/arm/v7, linux/arm/v6
2023-06-20T10:52:35.2581736Z Labels:
2023-06-20T10:52:35.2583606Z  org.mobyproject.buildkit.worker.executor:         oci
2023-06-20T10:52:35.2584798Z  org.mobyproject.buildkit.worker.hostname:         c4e784fd0bf5
2023-06-20T10:52:35.2585925Z  org.mobyproject.buildkit.worker.network:          host
2023-06-20T10:52:35.2587303Z  org.mobyproject.buildkit.worker.oci.process-mode: sandbox
2023-06-20T10:52:35.2588493Z  org.mobyproject.buildkit.worker.selinux.enabled:  false
2023-06-20T10:52:35.2589651Z  org.mobyproject.buildkit.worker.snapshotter:      overlayfs
2023-06-20T10:52:35.2590584Z GC Policy rule#0:
2023-06-20T10:52:35.2591250Z  All:           false
2023-06-20T10:52:35.2592502Z  Filters:       type==source.local,type==exec.cachemount,type==source.git.checkout
2023-06-20T10:52:35.2593479Z  Keep Duration: 48h0m0s
2023-06-20T10:52:35.2594214Z  Keep Bytes:    488.3MiB
2023-06-20T10:52:35.2594891Z GC Policy rule#1:
2023-06-20T10:52:35.2595552Z  All:           false
2023-06-20T10:52:35.2596488Z  Keep Duration: 1440h0m0s
2023-06-20T10:52:35.2597183Z  Keep Bytes:    9.313GiB
2023-06-20T10:52:35.2597866Z GC Policy rule#2:
2023-06-20T10:52:35.2598512Z  All:        false
2023-06-20T10:52:35.2599482Z  Keep Bytes: 9.313GiB
2023-06-20T10:52:35.2600142Z GC Policy rule#3:
2023-06-20T10:52:35.2601008Z  All:        true
2023-06-20T10:52:35.2601895Z  Keep Bytes: 9.313GiB
2023-06-20T10:52:35.2641727Z ##[endgroup]
2023-06-20T10:52:35.5554090Z ##[group]Inspect builder
2023-06-20T10:52:35.5554848Z {
2023-06-20T10:52:35.5556033Z   "nodes": [
2023-06-20T10:52:35.5557084Z     {
2023-06-20T10:52:35.5558981Z       "name": "builder-be02a497-c245-4925-8038-853ab592c84f0",
2023-06-20T10:52:35.5560145Z       "endpoint": "unix:///run/docker/docker.sock",
2023-06-20T10:52:35.5561358Z       "status": "running",
2023-06-20T10:52:35.5563381Z       "buildkitd-flags": "--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host",
2023-06-20T10:52:35.5564523Z       "buildkit": "v0.11.6",
2023-06-20T10:52:35.5565797Z       "platforms": "linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/amd64/v4,linux/arm64,linux/riscv64,linux/ppc64le,linux/s390x,linux/386,linux/mips64le,linux/mips64,linux/arm/v7,linux/arm/v6"
2023-06-20T10:52:35.5566878Z     }
2023-06-20T10:52:35.5567739Z   ],
2023-06-20T10:52:35.5569018Z   "name": "builder-be02a497-c245-4925-8038-853ab592c84f",
2023-06-20T10:52:35.5570021Z   "driver": "docker-container",
2023-06-20T10:52:35.5571015Z   "lastActivity": "2023-06-20T10:52:29.000Z"
2023-06-20T10:52:35.5571720Z }
2023-06-20T10:52:35.5573187Z ##[endgroup]
2023-06-20T10:52:35.5574469Z ##[group]BuildKit version
2023-06-20T10:52:35.5575555Z builder-be02a497-c245-4925-8038-853ab592c84f0: v0.11.6
2023-06-20T10:52:35.5576731Z ##[endgroup]
2023-06-20T10:52:35.5910624Z ##[group]Run curl -v http://deb.debian.org/debian/dists/bullseye/InRelease
2023-06-20T10:52:35.5912192Z �[36;1mcurl -v http://deb.debian.org/debian/dists/bullseye/InRelease�[0m
2023-06-20T10:52:35.5950352Z shell: /usr/bin/bash -e {0}
2023-06-20T10:52:35.5950985Z ##[endgroup]
2023-06-20T10:52:35.6275499Z   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
2023-06-20T10:52:35.6276694Z                                  Dload  Upload   Total   Spent    Left  Speed
2023-06-20T10:52:35.6277304Z 
2023-06-20T10:52:35.6428886Z   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0*   Trying 146.75.118.132:80...
2023-06-20T10:52:35.6429880Z * TCP_NODELAY set
2023-06-20T10:52:35.6487088Z * Connected to deb.debian.org (146.75.118.132) port 80 (#0)
2023-06-20T10:52:35.6488172Z > GET /debian/dists/bullseye/InRelease HTTP/1.1
2023-06-20T10:52:35.6488949Z > Host: deb.debian.org
2023-06-20T10:52:35.6489997Z > User-Agent: curl/7.68.0
2023-06-20T10:52:35.6490803Z > Accept: */*
2023-06-20T10:52:35.6491396Z > 
2023-06-20T10:52:35.6546851Z * Mark bundle as not supporting multiuse
2023-06-20T10:52:35.6547801Z < HTTP/1.1 200 OK
2023-06-20T10:52:35.6548701Z -----BEGIN PGP SIGNED MESSAGE-----
2023-06-20T10:52:35.6549267Z Hash: SHA256
2023-06-20T10:52:35.6549566Z 
2023-06-20T10:52:35.6549782Z Origin: Debian
2023-06-20T10:52:35.6550277Z Label: Debian
2023-06-20T10:52:35.6550773Z Suite: oldstable
2023-06-20T10:52:35.6551265Z Version: 11.7
2023-06-20T10:52:35.6551740Z Codename: bullseye
2023-06-20T10:52:35.6552888Z Changelogs: https://metadata.ftp-master.debian.org/changelogs/@CHANGEPATH@_changelog
2023-06-20T10:52:35.6553781Z Date: Sat, 10 Jun 2023 08:52:21 UTC
2023-06-20T10:52:35.6554440Z Acquire-By-Hash: yes
2023-06-20T10:52:35.6555282Z No-Support-for-Architecture-all: Packages
2023-06-20T10:52:35.6556182Z Architectures: all amd64 arm64 armel armhf i386 mips64el mipsel ppc64el s390x
2023-06-20T10:52:35.6557086Z Components: main contrib non-free
2023-06-20T10:52:35.6557777Z Description: Debian 11.7 Released 29 April 2023
2023-06-20T10:52:35.6558367Z MD5Sum:
2023-06-20T10:52:35.6559239Z  7fdf4db15250af5368cc52a91e8edbce   738242 contrib/Contents-all
2023-06-20T10:52:35.6560317Z  cbd7bc4d3eb517ac2b22f929dfc07b47    57319 contrib/Contents-all.gz
2023-06-20T10:52:35.6561397Z  6e4ef0f159fa08f5ba74067e0a94b5e6   787321 contrib/Contents-amd64
2023-06-20T10:52:35.6562660Z  98583d055424774c060fdf4b02291da5    54668 contrib/Contents-amd64.gz
2023-06-20T10:52:35.6563688Z  61e10f1703d718d584f381a943bfe4d7   370915 contrib/Contents-arm64
2023-06-20T10:52:35.6564705Z  86a145a0d8d7346449f2cf62098a5553    29596 contrib/Contents-arm64.gz
2023-06-20T10:52:35.6565744Z  b6d2673f17fbdb3a5ce92404a62c2d7e   359292 contrib/Contents-armel
2023-06-20T10:52:35.6566798Z  d02d94be587d56a1246b407669d2a24c    28039 contrib/Contents-armel.gz
2023-06-20T10:52:35.6567850Z  d272ba9da0f302b6c09a36899e738115   367655 contrib/Contents-armhf
2023-06-20T10:52:35.6569030Z < Connection: keep-alive
2023-06-20T10:52:35.6569763Z < Content-Length: 115946
2023-06-20T10:52:35.6570299Z < Server: Apache
2023-06-20T10:52:35.6571038Z < X-Content-Type-Options: nosniff
2023-06-20T10:52:35.6571814Z < X-Frame-Options: sameorigin
2023-06-20T10:52:35.6572563Z < Referrer-Policy: no-referrer
2023-06-20T10:52:35.6573243Z < X-Xss-Protection: 1
2023-06-20T10:52:35.6574041Z < Permissions-Policy: interest-cohort=()
2023-06-20T10:52:35.6574941Z < Last-Modified: Sat, 10 Jun 2023 10:06:38 GMT
2023-06-20T10:52:35.6575714Z < ETag: "1c4ea-5fdc3a42d1916"
2023-06-20T10:52:35.6576494Z < X-Clacks-Overhead: GNU Terry Pratchett
2023-06-20T10:52:35.6577304Z < Cache-Control: public, max-age=120
2023-06-20T10:52:35.6577918Z < Via: 1.1 varnish, 1.1 varnish
2023-06-20T10:52:35.6578580Z < Accept-Ranges: bytes
2023-06-20T10:52:35.6579135Z < Date: Tue, 20 Jun 2023 10:52:35 GMT
2023-06-20T10:52:35.6579898Z < Age: 75
2023-06-20T10:52:35.6581420Z < X-Served-By: cache-ams21057-AMS, cache-fra-eddf8230062-FRA
2023-06-20T10:52:35.6582703Z < X-Cache: HIT, HIT
2023-06-20T10:52:35.6584597Z < X-Cache-Hits: 1000103, 15
2023-06-20T10:52:35.6586242Z < X-Timer: S1687258356.651518,VS0,VE0
2023-06-20T10:52:35.6587110Z < 
2023-06-20T10:52:35.6587863Z { [10784 bytes data]
[CONTENT OMITTED]
2023-06-20T10:52:35.7287387Z ##[group]Run docker/build-push-action@v4
2023-06-20T10:52:35.7287448Z with:
2023-06-20T10:52:35.7287541Z   file: packages/ethereum/Dockerfile.test
2023-06-20T10:52:35.7287769Z   tags: europe-west3-docker.pkg.dev/***/docker-images/anvil:pr-5152
2023-06-20T10:52:35.7287828Z   load: false
2023-06-20T10:52:35.7287886Z   no-cache: false
2023-06-20T10:52:35.7287941Z   pull: false
2023-06-20T10:52:35.7287994Z   push: false
2023-06-20T10:52:35.7288150Z   github-token: ***
2023-06-20T10:52:35.7288203Z ##[endgroup]
2023-06-20T10:52:35.8680717Z ##[group]GitHub Actions runtime token ACs
2023-06-20T10:52:35.8689517Z refs/pull/5152/merge: read/write
2023-06-20T10:52:35.8690213Z refs/heads/master: read
2023-06-20T10:52:35.8691209Z ##[endgroup]
2023-06-20T10:52:35.8692136Z ##[group]Docker info
2023-06-20T10:52:35.8721720Z [command]/usr/local/bin/docker version
2023-06-20T10:52:35.9078822Z Client:
2023-06-20T10:52:35.9086252Z  Version:           20.10.23
2023-06-20T10:52:35.9087458Z  API version:       1.41
2023-06-20T10:52:35.9088433Z  Go version:        go1.18.10
2023-06-20T10:52:35.9089421Z  Git commit:        7155243
2023-06-20T10:52:35.9090434Z  Built:             Thu Jan 19 17:30:35 2023
2023-06-20T10:52:35.9091423Z  OS/Arch:           linux/amd64
2023-06-20T10:52:35.9092328Z  Context:           default
2023-06-20T10:52:35.9093304Z  Experimental:      true
2023-06-20T10:52:35.9093920Z 
2023-06-20T10:52:35.9094848Z Server: Docker Engine - Community
2023-06-20T10:52:35.9095760Z  Engine:
2023-06-20T10:52:35.9096600Z   Version:          24.0.2
2023-06-20T10:52:35.9097752Z   API version:      1.43 (minimum version 1.12)
2023-06-20T10:52:35.9098804Z   Go version:       go1.20.4
2023-06-20T10:52:35.9099979Z   Git commit:       659604f
2023-06-20T10:52:35.9100970Z   Built:            Thu May 25 21:35:04 2023
2023-06-20T10:52:35.9101976Z   OS/Arch:          linux/amd64
2023-06-20T10:52:35.9102938Z   Experimental:     false
2023-06-20T10:52:35.9103849Z  containerd:
2023-06-20T10:52:35.9104791Z   Version:          v1.7.1
2023-06-20T10:52:35.9105951Z   GitCommit:        1677a17964311325ed1c31e2c0a3589ce6d5c30d
2023-06-20T10:52:35.9106953Z  runc:
2023-06-20T10:52:35.9107759Z   Version:          1.1.7
2023-06-20T10:52:35.9109156Z   GitCommit:        v1.1.7-0-g860f061
2023-06-20T10:52:35.9110328Z  docker-init:
2023-06-20T10:52:35.9111178Z   Version:          0.19.0
2023-06-20T10:52:35.9112114Z   GitCommit:        de40ad0
2023-06-20T10:52:35.9167753Z [command]/usr/local/bin/docker info
2023-06-20T10:52:36.0185486Z Client:
2023-06-20T10:52:36.0186132Z  Context:    default
2023-06-20T10:52:36.0186708Z  Debug Mode: false
2023-06-20T10:52:36.0187205Z  Plugins:
2023-06-20T10:52:36.0187799Z   buildx: Docker Buildx (Docker Inc., v0.11.0)
2023-06-20T10:52:36.0188546Z   compose: Docker Compose (Docker Inc., v2.16.0)
2023-06-20T10:52:36.0188987Z 
2023-06-20T10:52:36.0189166Z Server:
2023-06-20T10:52:36.0189616Z  Containers: 1
2023-06-20T10:52:36.0190092Z   Running: 1
2023-06-20T10:52:36.0190560Z   Paused: 0
2023-06-20T10:52:36.0191045Z   Stopped: 0
2023-06-20T10:52:36.0191519Z  Images: 2
2023-06-20T10:52:36.0192006Z  Server Version: 24.0.2
2023-06-20T10:52:36.0192577Z  Storage Driver: overlay2
2023-06-20T10:52:36.0193153Z   Backing Filesystem: extfs
2023-06-20T10:52:36.0193720Z   Supports d_type: true
2023-06-20T10:52:36.0194265Z   Using metacopy: false
2023-06-20T10:52:36.0194815Z   Native Overlay Diff: true
2023-06-20T10:52:36.0195415Z   userxattr: false
2023-06-20T10:52:36.0196300Z  Logging Driver: json-file
2023-06-20T10:52:36.0196878Z  Cgroup Driver: cgroupfs
2023-06-20T10:52:36.0197423Z  Cgroup Version: 2
2023-06-20T10:52:36.0197913Z  Plugins:
2023-06-20T10:52:36.0198375Z   Volume: local
2023-06-20T10:52:36.0199055Z   Network: bridge host ipvlan macvlan null overlay
2023-06-20T10:52:36.0200621Z   Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog
2023-06-20T10:52:36.0201355Z  Swarm: inactive
2023-06-20T10:52:36.0201944Z  Runtimes: io.containerd.runc.v2 runc
2023-06-20T10:52:36.0203314Z  Default Runtime: runc
2023-06-20T10:52:36.0204023Z  Init Binary: docker-init
2023-06-20T10:52:36.0204702Z  containerd version: 1677a17964311325ed1c31e2c0a3589ce6d5c30d
2023-06-20T10:52:36.0205530Z  runc version: v1.1.7-0-g860f061
2023-06-20T10:52:36.0206092Z  init version: de40ad0
2023-06-20T10:52:36.0206609Z  Security Options:
2023-06-20T10:52:36.0207084Z   apparmor
2023-06-20T10:52:36.0207540Z   seccomp
2023-06-20T10:52:36.0208018Z    Profile: builtin
2023-06-20T10:52:36.0208499Z   cgroupns
2023-06-20T10:52:36.0209140Z  Kernel Version: 5.10.0-23-amd64
2023-06-20T10:52:36.0210096Z  Operating System: Alpine Linux v3.18 (containerized)
2023-06-20T10:52:36.0210719Z  OSType: linux
2023-06-20T10:52:36.0211221Z  Architecture: x86_64
2023-06-20T10:52:36.0211711Z  CPUs: 36
2023-06-20T10:52:36.0212215Z  Total Memory: 125.5GiB
2023-06-20T10:52:36.0213062Z  Name: self-hosted-ubuntu-2cpu-h85hh-4vcfw
2023-06-20T10:52:36.0213945Z  ID: 55f90eef-0d92-4df1-8d18-fc77a4527b70
2023-06-20T10:52:36.0214594Z  Docker Root Dir: /var/lib/docker
2023-06-20T10:52:36.0215146Z  Debug Mode: false
2023-06-20T10:52:36.0215775Z  Registry: https://index.docker.io/v1/
2023-06-20T10:52:36.0216343Z  Labels:
2023-06-20T10:52:36.0216830Z  Experimental: false
2023-06-20T10:52:36.0217384Z  Insecure Registries:
2023-06-20T10:52:36.0217881Z   127.0.0.0/8
2023-06-20T10:52:36.0218379Z  Live Restore Enabled: false
2023-06-20T10:52:36.0218985Z  Product License: Community Engine
2023-06-20T10:52:36.0219366Z 
2023-06-20T10:52:36.0221033Z ##[endgroup]
2023-06-20T10:52:36.1228942Z ##[group]Buildx version
2023-06-20T10:52:36.1285146Z [command]/usr/local/bin/docker buildx version
2023-06-20T10:52:36.2308897Z github.com/docker/buildx v0.11.0 687feca9e8dcd1534ac4c026bc4db5a49de0dd6e
2023-06-20T10:52:36.2346409Z ##[endgroup]
2023-06-20T10:52:36.6428716Z [command]/usr/local/bin/docker buildx build --file packages/ethereum/Dockerfile.test --iidfile /tmp/docker-actions-toolkit-w3Hg8F/iidfile --provenance mode=max,builder-id=https://github.com/hoprnet/hoprnet/actions/runs/5321651593 --secret id=GIT_AUTH_TOKEN,src=/tmp/docker-actions-toolkit-w3Hg8F/tmp-694-m0hMP6tJ4prf --tag europe-west3-docker.pkg.dev/***/docker-images/anvil:pr-5152 --metadata-file /tmp/docker-actions-toolkit-w3Hg8F/metadata-file https://github.com/hoprnet/hoprnet.git#refs/pull/5152/merge
2023-06-20T10:52:37.0544820Z #0 building with "builder-be02a497-c245-4925-8038-853ab592c84f" instance using docker-container driver
2023-06-20T10:52:37.0545580Z 
2023-06-20T10:52:37.0546156Z #1 [internal] load git source https://github.com/hoprnet/hoprnet.git#refs/pull/5152/merge
2023-06-20T10:52:37.0547675Z #1 0.047 Initialized empty Git repository in /var/lib/buildkit/runc-overlayfs/snapshots/snapshots/1/fs/
2023-06-20T10:52:37.6553841Z #1 0.569 0206ad1cf6765075efa233f3b510c0c235f401ff	refs/pull/5152/merge
2023-06-20T10:52:50.1369198Z #1 12.51 From https://github.com/hoprnet/hoprnet
2023-06-20T10:52:50.1370664Z #1 12.51  * [new ref]           refs/pull/5152/merge -> refs/pull/5152/merge
2023-06-20T10:52:52.9723484Z #1 DONE 16.0s
2023-06-20T10:52:53.1235068Z 
2023-06-20T10:52:53.1237572Z #2 [internal] load metadata for docker.io/osexp2000/ubuntu-with-utils:latest
2023-06-20T10:53:06.9385594Z #2 DONE 13.9s
2023-06-20T10:53:07.0894218Z 
2023-06-20T10:53:07.0896083Z #3 [1/4] FROM docker.io/osexp2000/ubuntu-with-utils@sha256:c1b7e52df456a8cd9aa88a0114d67e82505ba2593a38b5c26e9fbadc433667ff
2023-06-20T10:53:07.0897907Z #3 resolve docker.io/osexp2000/ubuntu-with-utils@sha256:c1b7e52df456a8cd9aa88a0114d67e82505ba2593a38b5c26e9fbadc433667ff done
...
2023-06-20T10:53:21.0802929Z #3 DONE 14.1s
2023-06-20T10:53:21.0803248Z 
2023-06-20T10:53:21.0803601Z #4 [2/4] RUN curl http://www.ifconfig.me
2023-06-20T10:53:21.2310057Z #4 0.126   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
2023-06-20T10:53:21.2311095Z #4 0.126                                  Dload  Upload   Total   Spent    Left  Speed
2023-06-20T10:53:21.2311729Z #4 0.126 
2023-06-20T10:53:22.7362278Z   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
2023-06-20T10:53:22.8868961Z   0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
2023-06-20T10:53:22.8869707Z 100    14  100    14    0     0      8      0  0:00:01  0:00:01 --:--:--     8
2023-06-20T10:53:23.1788383Z #4 1.762 142.132.140.85
2023-06-20T10:53:23.1788964Z #4 DONE 2.2s
2023-06-20T10:53:23.3065971Z 
2023-06-20T10:53:23.3066925Z #5 [3/4] RUN curl -v http://deb.debian.org/debian/dists/bullseye/InRelease
2023-06-20T10:53:23.3067833Z #5 0.127   % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
2023-06-20T10:53:23.3068276Z #5 0.127                                  Dload  Upload   Total   Spent    Left  Speed
2023-06-20T10:53:23.4575070Z #5 0.127 
2023-06-20T10:53:23.4576572Z   0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0*   Trying 146.75.122.132...
2023-06-20T10:53:23.4577283Z #5 0.156 * TCP_NODELAY set
2023-06-20T10:53:23.4578031Z #5 0.161 * Connected to deb.debian.org (146.75.122.132) port 80 (#0)
2023-06-20T10:53:23.4578825Z #5 0.161 > GET /debian/dists/bullseye/InRelease HTTP/1.1
2023-06-20T10:53:23.4580509Z #5 0.161 > Host: deb.debian.org
2023-06-20T10:53:23.4581356Z #5 0.161 > User-Agent: curl/7.58.0
2023-06-20T10:53:23.4581923Z #5 0.161 > Accept: */*
2023-06-20T10:53:23.4582408Z #5 0.161 > 
2023-06-20T10:53:23.4582893Z #5 0.167 < HTTP/1.1 200 OK
2023-06-20T10:53:23.4583602Z #5 0.167 < Connection: keep-alive
2023-06-20T10:53:23.4584348Z #5 0.167 < Content-Length: 115946
2023-06-20T10:53:23.4584914Z #5 0.167 < Server: Apache
2023-06-20T10:53:23.4585704Z #5 0.167 < X-Content-Type-Options: nosniff
2023-06-20T10:53:23.4586534Z #5 0.167 < X-Frame-Options: sameorigin
2023-06-20T10:53:23.4587327Z #5 0.167 < Referrer-Policy: no-referrer
2023-06-20T10:53:23.4588094Z #5 0.167 < X-Xss-Protection: 1
2023-06-20T10:53:23.4588945Z #5 0.167 < Permissions-Policy: interest-cohort=()
2023-06-20T10:53:23.4589875Z #5 0.167 < Last-Modified: Sat, 10 Jun 2023 10:06:38 GMT
2023-06-20T10:53:23.4590665Z #5 0.167 < ETag: "1c4ea-5fdc3a42d1916"
2023-06-20T10:53:23.4591529Z #5 0.167 < X-Clacks-Overhead: GNU Terry Pratchett
2023-06-20T10:53:23.4592410Z #5 0.167 < Cache-Control: public, max-age=120
2023-06-20T10:53:23.4593068Z #5 0.167 < Via: 1.1 varnish, 1.1 varnish
2023-06-20T10:53:23.4593780Z #5 0.167 < Accept-Ranges: bytes
2023-06-20T10:53:23.4594396Z #5 0.167 < Date: Tue, 20 Jun 2023 10:53:23 GMT
2023-06-20T10:53:23.4594929Z #5 0.167 < Age: 3
2023-06-20T10:53:23.4595881Z #5 0.167 < X-Served-By: cache-ams21057-AMS, cache-fra-etou8220111-FRA
2023-06-20T10:53:23.4596728Z #5 0.167 < X-Cache: HIT, HIT
2023-06-20T10:53:23.4597449Z #5 0.167 < X-Cache-Hits: 1000103, 2
2023-06-20T10:53:23.4598253Z #5 0.167 < X-Timer: S1687258403.343119,VS0,VE0
2023-06-20T10:53:23.4598788Z #5 0.167 < 
2023-06-20T10:53:24.6608888Z #5 1.358 
2023-06-20T10:53:25.5393105Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
2023-06-20T10:53:26.5915211Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:02 --:--:--     0
2023-06-20T10:53:27.6450497Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:03 --:--:--     0
2023-06-20T10:53:28.5430829Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:04 --:--:--     0
2023-06-20T10:53:29.5963433Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:05 --:--:--     0
2023-06-20T10:53:30.6497282Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:06 --:--:--     0
2023-06-20T10:53:31.5468190Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:07 --:--:--     0
2023-06-20T10:53:32.6024415Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:08 --:--:--     0
2023-06-20T10:53:33.6545750Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:09 --:--:--     0
2023-06-20T10:53:34.5502857Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:10 --:--:--     0
2023-06-20T10:53:35.6031117Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:11 --:--:--     0
2023-06-20T10:53:36.6566367Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:12 --:--:--     0
2023-06-20T10:53:37.5541918Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:13 --:--:--     0
2023-06-20T10:53:38.6064574Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:14 --:--:--     0
2023-06-20T10:53:39.6600476Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:15 --:--:--     0
2023-06-20T10:53:40.5571217Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:16 --:--:--     0
2023-06-20T10:53:41.6117575Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:17 --:--:--     0
2023-06-20T10:53:42.6646617Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:18 --:--:--     0
2023-06-20T10:53:43.5610276Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:19 --:--:--     0
2023-06-20T10:53:44.6143227Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:20 --:--:--     0
2023-06-20T10:53:45.6680141Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:21 --:--:--     0
2023-06-20T10:53:46.5639309Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:22 --:--:--     0
2023-06-20T10:53:47.6182995Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:23 --:--:--     0
2023-06-20T10:53:48.6718086Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:24 --:--:--     0
2023-06-20T10:53:49.5677608Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:25 --:--:--     0
2023-06-20T10:53:50.6212341Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:26 --:--:--     0
2023-06-20T10:53:51.6744878Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:27 --:--:--     0
2023-06-20T10:53:52.5718091Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:28 --:--:--     0
2023-06-20T10:53:53.6249139Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:29 --:--:--     0
2023-06-20T10:53:54.6784640Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:30 --:--:--     0
2023-06-20T10:53:55.5755272Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:31 --:--:--     0
2023-06-20T10:53:56.6289921Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:32 --:--:--     0
2023-06-20T10:53:57.6821974Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:33 --:--:--     0
2023-06-20T10:53:57.7638513Z   0  113k    0     0    0     0      0      0 --:--:--  0:00:34 --:--:--     0
2023-06-20T10:53:57.7702821Z ##[error]The operation was canceled.
2023-06-20T10:53:57.7783559Z Post job cleanup.
2023-06-20T10:53:57.9406659Z ##[group]Removing temp folder /tmp/docker-actions-toolkit-w3Hg8F
2023-06-20T10:53:57.9427348Z ##[endgroup]
2023-06-20T10:53:57.9575794Z Post job cleanup.
2023-06-20T10:53:58.0877304Z ##[group]Removing builder
2023-06-20T10:53:58.3294527Z [command]/usr/local/bin/docker buildx rm builder-be02a497-c245-4925-8038-853ab592c84f
2023-06-20T10:53:59.6575567Z builder-be02a497-c245-4925-8038-853ab592c84f removed
2023-06-20T10:53:59.6619231Z ##[endgroup]
2023-06-20T10:53:59.6620426Z ##[group]Cleaning up certificates
2023-06-20T10:53:59.6632143Z ##[endgroup]
2023-06-20T10:53:59.6786945Z Post job cleanup.
2023-06-20T10:53:59.7786817Z [command]/usr/bin/git version
2023-06-20T10:53:59.7838485Z git version 2.40.1
2023-06-20T10:53:59.7870443Z Temporarily overriding HOME='/runner/_work/_temp/b596da6e-ae73-426c-87e4-2e68128e529c' before making global git config changes
2023-06-20T10:53:59.7871618Z Adding repository directory to the temporary git global config as a safe directory
2023-06-20T10:53:59.7874501Z [command]/usr/bin/git config --global --add safe.directory /runner/_work/hoprnet/hoprnet
2023-06-20T10:53:59.7936044Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2023-06-20T10:53:59.8004663Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || :"
2023-06-20T10:53:59.8550992Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2023-06-20T10:53:59.8600452Z http.https://github.com/.extraheader
2023-06-20T10:53:59.8622909Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2023-06-20T10:53:59.8695990Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || :"
2023-06-20T10:53:59.9398315Z A job completed hook has been configured by the self-hosted runner administrator
2023-06-20T10:53:59.9457952Z ##[group]Run '/etc/arc/hooks/job-completed.sh'
2023-06-20T10:53:59.9490928Z shell: /usr/bin/bash --noprofile --norc -e -o pipefail {0}
2023-06-20T10:53:59.9491401Z ##[endgroup]
2023-06-20T10:53:59.9590064Z �[0;37m2023-06-20 10:53:59.957  DEBUG --- Running ARC Job Completed Hooks�[0m
2023-06-20T10:53:59.9619366Z �[0;37m2023-06-20 10:53:59.960  DEBUG --- Running hook: /etc/arc/hooks/job-completed.d/update-status�[0m
2023-06-20T10:53:59.9948127Z Cleaning up orphan processes
@crazy-max
Copy link
Member

Looks like docker is not properly installed on your self-hosted runner: https://github.com/hoprnet/hoprnet/actions/runs/5321651593/jobs/9637024279#step:7:18

  /usr/local/bin/docker version
  Client:
   Version:           20.10.23
   API version:       1.41
   Go version:        go1.18.10
   Git commit:        7155243
   Built:             Thu Jan 19 17:30:35 2023
   OS/Arch:           linux/amd64
   Context:           default
   Experimental:      true
  
  Server: Docker Engine - Community
   Engine:
    Version:          24.0.2
    API version:      1.43 (minimum version 1.12)
    Go version:       go1.20.4
    Git commit:       659604f
    Built:            Thu May 25 21:35:04 2023
    OS/Arch:          linux/amd64
    Experimental:     false
   containerd:
    Version:          v1.7.1
    GitCommit:        1677a17964311325ed1c31e2c0a3589ce6d5c30d
   runc:
    Version:          1.1.7
    GitCommit:        v1.1.7-0-g860f061
   docker-init:
    Version:          0.19.0
    GitCommit:        de40ad0

Client version is 20.10.23 but server 24.0.2.

@ausias-armesto
Copy link
Author

Thanks for pointing that, I've fixed the mismatching version on self-hosted runners, nevertheless doesn't seem to be the root cause. After changing the runners docker version is still not working.
You can have a look at here: https://github.com/hoprnet/hoprnet/actions/runs/5330854843/jobs/9658405939

Another interesting topic is that the raw docker command does not work either so I will focus more in the configuration of the self-hosted runners

@crazy-max
Copy link
Member

Looks like an issue with your self-hosted. Closing as it does not seem related to the action.

@ausias-armesto
Copy link
Author

ausias-armesto commented Jun 21, 2023

Hi @crazy-max ,
Thanks for the support, I finally got it. It was related to the MTU as mentioned here
actions/actions-runner-controller#1046
And configuring this step

      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v2
        with:
          driver: kubernetes

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants