docker / build-push-action

GitHub Action to build and push Docker images with Buildx
https://github.com/marketplace/actions/build-and-push-docker-images
Apache License 2.0
4.27k stars 546 forks source link

Fatal error when trying to use local cache #608

Closed adnaanbheda closed 2 years ago

adnaanbheda commented 2 years ago

Troubleshooting

Before submitting a bug report please read the Troubleshooting doc.

Behaviour

Steps to reproduce this issue

  1. Use the Local Cache workflow here https://github.com/docker/build-push-action/blob/master/docs/advanced/cache.md#local-cache

Expected behaviour

Should build the image

Actual behaviour

Throws a fatal error

WARNING: local cache import at /tmp/.buildx-cache not found due to err: could not read /tmp/.buildx-cache/index.json: open /tmp/.buildx-cache/index.json: no such file or directory

Configuration

env:
  TAG: ${{ github.ref_name }}
  PROJECT_NAME: blah-blah

jobs:
  build-image:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Docker Buildx
        id: buildx
        # Use the action from the master, as we've seen some inconsistencies with @v1
        # Issue: https://github.com/docker/build-push-action/issues/286
        uses: docker/setup-buildx-action@master
        # Only worked for us with this option on 🤷‍♂️
        with:
          install: true
      - name: Cache Docker layers
        uses: actions/cache@v2
        with:
          path: /tmp/.buildx-cache
          # Key is named differently to avoid collision
          key: ${{ runner.os }}-multi-buildx-${{ github.sha }}
          restore-keys: |
            ${{ runner.os }}-multi-buildx
      - name: Configure AWS credentials
        uses: aws-actions/configure-aws-credentials@v1
        with:
          aws-access-key-id: blah blah
          aws-secret-access-key: blah blah
          aws-region: ap-south-1
      - name: Login to Amazon ECR
        id: login-ecr
        uses: aws-actions/amazon-ecr-login@v1
      - name: Prepare
        id: prep
        env:
          ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }}
        run: |
          export IMAGE="some-project"
          echo ::set-output name=tagged_image::${ECR_REGISTRY}/${IMAGE}:${TAG}
          echo ::set-output name=tag::${TAG}
      - name: Build production image
        uses: docker/build-push-action@v2
        with:
          context: .
          builder: ${{ steps.buildx.outputs.name }}
          # Set the desired build target here
          push: true
          tags: ${{ steps.prep.outputs.tagged_image }}
          cache-from: type=local,src=/tmp/.buildx-cache
          # Note the mode=max here
          # More: https://github.com/moby/buildkit#--export-cache-options
          # And: https://github.com/docker/buildx#--cache-tonametypetypekeyvalue
          cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-new
      - name: Move cache
        run: |
          rm -rf /tmp/.buildx-cache
          mv /tmp/.buildx-cache-new /tmp/.buildx-cache

Logs

Download the log file of your build and attach it to this issue.

adnaanbheda commented 2 years ago

This happens without docker push action as well, so I'm not sure what the problem is, maybe with buildx itself ?

crazy-max commented 2 years ago
        # Use the action from the master, as we've seen some inconsistencies with @v1
        # Issue: https://github.com/docker/build-push-action/issues/286
        uses: docker/setup-buildx-action@master

What do you mean by "some inconsistencies"? v1 is a mutable tag that always points to the latest stable release. This is not recommended to use master.

        # Only worked for us with this option on 🤷‍♂️
        with:
          install: true

How? installed will only create an alias for docker build so it will run docker buildx build and will not be used by the build-push-action anyway. I don't think it solves anything. Can you explain what it fixes on your side?

WARNING: local cache import at /tmp/.buildx-cache not found due to err: could not read /tmp/.buildx-cache/index.json: open /tmp/.buildx-cache/index.json: no such file or directory

Would need more logs from the build push action. I would say your cache folder has been tampered by something else. Can you add this step after the name: Cache Docker layers one and give me the output?:

- name: Cache folder content
  run: |
    tree -f -pug -h -D /tmp/.buildx-cache
devshah1 commented 2 years ago

I have faced a similar error when trying to use local cache. As far as the code comments are concerned I believe the reporter was testing out the functionality from this blog article which is where the comments are coming from.

crazy-max commented 2 years ago

Closing as there is no relevant activity on this issue. Leave a comment if you have more information relative to https://github.com/docker/build-push-action/issues/608#issuecomment-1118526404. Thanks.

IgorKrupenja commented 1 year ago

@crazy-max

We are alo running into this in one project only (Angular front-end). Relevant part of the config below, largely similar to this example.

YAML config ```yaml jobs: designer-www-build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: docker/setup-buildx-action@v2 - uses: actions/cache@v3 with: path: /tmp/.buildx-cache key: designer-www-buildx-${{ github.sha }} restore-keys: designer-www-buildx- - name: Cache folder content run: | tree -f -pug -h -D /tmp/.buildx-cache - uses: docker/build-push-action@v3 with: context: ./designer-www cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max # The build-push-action action doesn't clean up the cache automatically. Therefore we have to do it manually. # [https://github.com/docker/build-push-action/blob/v3.1.1/docs/advanced/cache.md#local-cache] - run: | rm -rf /tmp/.buildx-cache mv /tmp/.buildx-cache-new /tmp/.buildx-cache ```
Raw logs from action ```log 2022-11-28T14:28:59.6139591Z Requested labels: ubuntu-latest 2022-11-28T14:28:59.6139646Z Job defined at: Devtailor/trimtex-v2/.github/workflows/designer-www.yml@refs/pull/706/merge 2022-11-28T14:28:59.6139661Z Waiting for a runner to pick up this job... 2022-11-28T14:29:03.7317486Z Job is waiting for a hosted runner to come online. 2022-11-28T14:29:05.3246062Z Job is about to start running on the hosted runner: GitHub Actions 11 (hosted) 2022-11-28T14:29:08.6683263Z Current runner version: '2.299.1' 2022-11-28T14:29:08.6712653Z ##[group]Operating System 2022-11-28T14:29:08.6713322Z Ubuntu 2022-11-28T14:29:08.6713648Z 20.04.5 2022-11-28T14:29:08.6713893Z LTS 2022-11-28T14:29:08.6714197Z ##[endgroup] 2022-11-28T14:29:08.6714563Z ##[group]Runner Image 2022-11-28T14:29:08.6714877Z Image: ubuntu-20.04 2022-11-28T14:29:08.6715218Z Version: 20221119.2 2022-11-28T14:29:08.6715739Z Included Software: https://github.com/actions/runner-images/blob/ubuntu20/20221119.2/images/linux/Ubuntu2004-Readme.md 2022-11-28T14:29:08.6716413Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu20%2F20221119.2 2022-11-28T14:29:08.6716853Z ##[endgroup] 2022-11-28T14:29:08.6717218Z ##[group]Runner Image Provisioner 2022-11-28T14:29:08.6717564Z 2.0.91.1 2022-11-28T14:29:08.6717815Z ##[endgroup] 2022-11-28T14:29:08.6718836Z ##[group]GITHUB_TOKEN Permissions 2022-11-28T14:29:08.6719443Z Actions: write 2022-11-28T14:29:08.6719767Z Checks: write 2022-11-28T14:29:08.6720228Z Contents: write 2022-11-28T14:29:08.6720657Z Deployments: write 2022-11-28T14:29:08.6720957Z Discussions: write 2022-11-28T14:29:08.6721292Z Issues: write 2022-11-28T14:29:08.6721619Z Metadata: read 2022-11-28T14:29:08.6721899Z Packages: write 2022-11-28T14:29:08.6722261Z Pages: write 2022-11-28T14:29:08.6722597Z PullRequests: write 2022-11-28T14:29:08.6722915Z RepositoryProjects: write 2022-11-28T14:29:08.6723300Z SecurityEvents: write 2022-11-28T14:29:08.6723679Z Statuses: write 2022-11-28T14:29:08.6724008Z ##[endgroup] 2022-11-28T14:29:08.6727567Z Secret source: Actions 2022-11-28T14:29:08.6728074Z Prepare workflow directory 2022-11-28T14:29:08.7715806Z Prepare all required actions 2022-11-28T14:29:08.7901512Z Getting action download info 2022-11-28T14:29:09.1167821Z Download action repository 'actions/checkout@v2' (SHA:e2f20e631ae6d7dd3b768f56a5d2af784dd54791) 2022-11-28T14:29:09.5252698Z Download action repository 'docker/setup-buildx-action@v2' (SHA:8c0edbc76e98fa90f69d9a2c020dcb50019dc325) 2022-11-28T14:29:09.7134871Z Download action repository 'actions/cache@v3' (SHA:9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7) 2022-11-28T14:29:09.9607303Z Download action repository 'docker/build-push-action@v3' (SHA:c56af957549030174b10d6867f20e78cfd7debc5) 2022-11-28T14:29:10.3548285Z ##[group]Run actions/checkout@v2 2022-11-28T14:29:10.3548596Z with: 2022-11-28T14:29:10.3548833Z repository: Devtailor/trimtex-v2 2022-11-28T14:29:10.3549307Z token: *** 2022-11-28T14:29:10.3549503Z ssh-strict: true 2022-11-28T14:29:10.3549736Z persist-credentials: true 2022-11-28T14:29:10.3549963Z clean: true 2022-11-28T14:29:10.3550153Z fetch-depth: 1 2022-11-28T14:29:10.3550362Z lfs: false 2022-11-28T14:29:10.3550559Z submodules: false 2022-11-28T14:29:10.3550782Z set-safe-directory: true 2022-11-28T14:29:10.3551015Z ##[endgroup] 2022-11-28T14:29:10.7021837Z Syncing repository: Devtailor/trimtex-v2 2022-11-28T14:29:10.7023746Z ##[group]Getting Git version info 2022-11-28T14:29:10.7024265Z Working directory is '/home/runner/work/trimtex-v2/trimtex-v2' 2022-11-28T14:29:10.7025826Z [command]/usr/bin/git version 2022-11-28T14:29:10.7185899Z git version 2.38.1 2022-11-28T14:29:10.7186902Z ##[endgroup] 2022-11-28T14:29:10.7200256Z Temporarily overriding HOME='/home/runner/work/_temp/d6103e59-56a0-4268-bfca-da227cabea10' before making global git config changes 2022-11-28T14:29:10.7200754Z Adding repository directory to the temporary git global config as a safe directory 2022-11-28T14:29:10.7201285Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/trimtex-v2/trimtex-v2 2022-11-28T14:29:10.7240200Z Deleting the contents of '/home/runner/work/trimtex-v2/trimtex-v2' 2022-11-28T14:29:10.7240891Z ##[group]Initializing the repository 2022-11-28T14:29:10.7241309Z [command]/usr/bin/git init /home/runner/work/trimtex-v2/trimtex-v2 2022-11-28T14:29:10.7411283Z hint: Using 'master' as the name for the initial branch. This default branch name 2022-11-28T14:29:10.7411937Z hint: is subject to change. To configure the initial branch name to use in all 2022-11-28T14:29:10.7412719Z hint: of your new repositories, which will suppress this warning, call: 2022-11-28T14:29:10.7413077Z hint: 2022-11-28T14:29:10.7413495Z hint: git config --global init.defaultBranch 2022-11-28T14:29:10.7413751Z hint: 2022-11-28T14:29:10.7414208Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and 2022-11-28T14:29:10.7414755Z hint: 'development'. The just-created branch can be renamed via this command: 2022-11-28T14:29:10.7415102Z hint: 2022-11-28T14:29:10.7415387Z hint: git branch -m 2022-11-28T14:29:10.7415898Z Initialized empty Git repository in /home/runner/work/trimtex-v2/trimtex-v2/.git/ 2022-11-28T14:29:10.7416515Z [command]/usr/bin/git remote add origin https://github.com/Devtailor/trimtex-v2 2022-11-28T14:29:10.7499297Z ##[endgroup] 2022-11-28T14:29:10.7499772Z ##[group]Disabling automatic garbage collection 2022-11-28T14:29:10.7500291Z [command]/usr/bin/git config --local gc.auto 0 2022-11-28T14:29:10.7534081Z ##[endgroup] 2022-11-28T14:29:10.7534471Z ##[group]Setting up auth 2022-11-28T14:29:10.7540276Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2022-11-28T14:29:10.7572825Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || : 2022-11-28T14:29:10.8031539Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2022-11-28T14:29:10.8077556Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || : 2022-11-28T14:29:10.8299746Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic *** 2022-11-28T14:29:10.8332323Z ##[endgroup] 2022-11-28T14:29:10.8333236Z ##[group]Fetching the repository 2022-11-28T14:29:10.8343803Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +10063d0d281ec32d79ac9a1481ab5977d3e4c245:refs/remotes/pull/706/merge 2022-11-28T14:29:11.1284547Z remote: Enumerating objects: 1202, done. 2022-11-28T14:29:11.1290977Z remote: Counting objects: 0% (1/1202) 2022-11-28T14:29:11.1295252Z remote: Counting objects: 1% (13/1202) 2022-11-28T14:29:11.1299080Z remote: Counting objects: 2% (25/1202) 2022-11-28T14:29:11.1303442Z remote: Counting objects: 3% (37/1202) 2022-11-28T14:29:11.1306911Z remote: Counting objects: 4% (49/1202) 2022-11-28T14:29:11.1326576Z remote: Counting objects: 5% (61/1202) 2022-11-28T14:29:11.1330241Z remote: Counting objects: 6% (73/1202) 2022-11-28T14:29:11.1333573Z remote: Counting objects: 7% (85/1202) 2022-11-28T14:29:11.1337178Z remote: Counting objects: 8% (97/1202) 2022-11-28T14:29:11.1340901Z remote: Counting objects: 9% (109/1202) 2022-11-28T14:29:11.1344957Z remote: Counting objects: 10% (121/1202) 2022-11-28T14:29:11.1348252Z remote: Counting objects: 11% (133/1202) 2022-11-28T14:29:11.1351678Z remote: Counting objects: 12% (145/1202) 2022-11-28T14:29:11.1354897Z remote: Counting objects: 13% (157/1202) 2022-11-28T14:29:11.1358786Z remote: Counting objects: 14% (169/1202) 2022-11-28T14:29:11.1362434Z remote: Counting objects: 15% (181/1202) 2022-11-28T14:29:11.1366144Z remote: Counting objects: 16% (193/1202) 2022-11-28T14:29:11.1369788Z remote: Counting objects: 17% (205/1202) 2022-11-28T14:29:11.1373417Z remote: Counting objects: 18% (217/1202) 2022-11-28T14:29:11.1378095Z remote: Counting objects: 19% (229/1202) 2022-11-28T14:29:11.1381932Z remote: Counting objects: 20% (241/1202) 2022-11-28T14:29:11.1385573Z remote: Counting objects: 21% (253/1202) 2022-11-28T14:29:11.1389214Z remote: Counting objects: 22% (265/1202) 2022-11-28T14:29:11.1393301Z remote: Counting objects: 23% (277/1202) 2022-11-28T14:29:11.1397034Z remote: Counting objects: 24% (289/1202) 2022-11-28T14:29:11.1400677Z remote: Counting objects: 25% (301/1202) 2022-11-28T14:29:11.1405114Z remote: Counting objects: 26% (313/1202) 2022-11-28T14:29:11.1408737Z remote: Counting objects: 27% (325/1202) 2022-11-28T14:29:11.1412453Z remote: Counting objects: 28% (337/1202) 2022-11-28T14:29:11.1416003Z remote: Counting objects: 29% (349/1202) 2022-11-28T14:29:11.1420675Z remote: Counting objects: 30% (361/1202) 2022-11-28T14:29:11.1424375Z remote: Counting objects: 31% (373/1202) 2022-11-28T14:29:11.1428002Z remote: Counting objects: 32% (385/1202) 2022-11-28T14:29:11.1431561Z remote: Counting objects: 33% (397/1202) 2022-11-28T14:29:11.1435231Z remote: Counting objects: 34% (409/1202) 2022-11-28T14:29:11.1439184Z remote: Counting objects: 35% (421/1202) 2022-11-28T14:29:11.1441985Z remote: Counting objects: 36% (433/1202) 2022-11-28T14:29:11.1446397Z remote: Counting objects: 37% (445/1202) 2022-11-28T14:29:11.1449968Z remote: Counting objects: 38% (457/1202) 2022-11-28T14:29:11.1452573Z remote: Counting objects: 39% (469/1202) 2022-11-28T14:29:11.1456349Z remote: Counting objects: 40% (481/1202) 2022-11-28T14:29:11.1459441Z remote: Counting objects: 41% (493/1202) 2022-11-28T14:29:11.1462304Z remote: Counting objects: 42% (505/1202) 2022-11-28T14:29:11.1465135Z remote: Counting objects: 43% (517/1202) 2022-11-28T14:29:11.1467555Z remote: Counting objects: 44% (529/1202) 2022-11-28T14:29:11.1469386Z remote: Counting objects: 45% (541/1202) 2022-11-28T14:29:11.1471926Z remote: Counting objects: 46% (553/1202) 2022-11-28T14:29:11.1473885Z remote: Counting objects: 47% (565/1202) 2022-11-28T14:29:11.1475691Z remote: Counting objects: 48% (577/1202) 2022-11-28T14:29:11.1477510Z remote: Counting objects: 49% (589/1202) 2022-11-28T14:29:11.1479272Z remote: Counting objects: 50% (601/1202) 2022-11-28T14:29:11.1481286Z remote: Counting objects: 51% (614/1202) 2022-11-28T14:29:11.1483127Z remote: Counting objects: 52% (626/1202) 2022-11-28T14:29:11.1485508Z remote: Counting objects: 53% (638/1202) 2022-11-28T14:29:11.1487471Z remote: Counting objects: 54% (650/1202) 2022-11-28T14:29:11.1489333Z remote: Counting objects: 55% (662/1202) 2022-11-28T14:29:11.1491926Z remote: Counting objects: 56% (674/1202) 2022-11-28T14:29:11.1493801Z remote: Counting objects: 57% (686/1202) 2022-11-28T14:29:11.1495659Z remote: Counting objects: 58% (698/1202) 2022-11-28T14:29:11.1497682Z remote: Counting objects: 59% (710/1202) 2022-11-28T14:29:11.1499599Z remote: Counting objects: 60% (722/1202) 2022-11-28T14:29:11.1502033Z remote: Counting objects: 61% (734/1202) 2022-11-28T14:29:11.1504618Z remote: Counting objects: 62% (746/1202) 2022-11-28T14:29:11.1507829Z remote: Counting objects: 63% (758/1202) 2022-11-28T14:29:11.1526807Z remote: Counting objects: 64% (770/1202) 2022-11-28T14:29:11.1527138Z remote: Counting objects: 65% (782/1202) 2022-11-28T14:29:11.1527411Z remote: Counting objects: 66% (794/1202) 2022-11-28T14:29:11.1527664Z remote: Counting objects: 67% (806/1202) 2022-11-28T14:29:11.1527930Z remote: Counting objects: 68% (818/1202) 2022-11-28T14:29:11.1528224Z remote: Counting objects: 69% (830/1202) 2022-11-28T14:29:11.1528484Z remote: Counting objects: 70% (842/1202) 2022-11-28T14:29:11.1528735Z remote: Counting objects: 71% (854/1202) 2022-11-28T14:29:11.1528999Z remote: Counting objects: 72% (866/1202) 2022-11-28T14:29:11.1529259Z remote: Counting objects: 73% (878/1202) 2022-11-28T14:29:11.1529506Z remote: Counting objects: 74% (890/1202) 2022-11-28T14:29:11.1529960Z remote: Counting objects: 75% (902/1202) 2022-11-28T14:29:11.1530224Z remote: Counting objects: 76% (914/1202) 2022-11-28T14:29:11.1530476Z remote: Counting objects: 77% (926/1202) 2022-11-28T14:29:11.1530739Z remote: Counting objects: 78% (938/1202) 2022-11-28T14:29:11.1530998Z remote: Counting objects: 79% (950/1202) 2022-11-28T14:29:11.1531260Z remote: Counting objects: 80% (962/1202) 2022-11-28T14:29:11.1531509Z remote: Counting objects: 81% (974/1202) 2022-11-28T14:29:11.1531768Z remote: Counting objects: 82% (986/1202) 2022-11-28T14:29:11.1532023Z remote: Counting objects: 83% (998/1202) 2022-11-28T14:29:11.1532275Z remote: Counting objects: 84% (1010/1202) 2022-11-28T14:29:11.1532549Z remote: Counting objects: 85% (1022/1202) 2022-11-28T14:29:11.1532820Z remote: Counting objects: 86% (1034/1202) 2022-11-28T14:29:11.1533544Z remote: Counting objects: 87% (1046/1202) 2022-11-28T14:29:11.1533853Z remote: Counting objects: 88% (1058/1202) 2022-11-28T14:29:11.1534121Z remote: Counting objects: 89% (1070/1202) 2022-11-28T14:29:11.1534380Z remote: Counting objects: 90% (1082/1202) 2022-11-28T14:29:11.1534648Z remote: Counting objects: 91% (1094/1202) 2022-11-28T14:29:11.1534913Z remote: Counting objects: 92% (1106/1202) 2022-11-28T14:29:11.1535183Z remote: Counting objects: 93% (1118/1202) 2022-11-28T14:29:11.1535434Z remote: Counting objects: 94% (1130/1202) 2022-11-28T14:29:11.1535700Z remote: Counting objects: 95% (1142/1202) 2022-11-28T14:29:11.1541028Z remote: Counting objects: 96% (1154/1202) 2022-11-28T14:29:11.1541317Z remote: Counting objects: 97% (1166/1202) 2022-11-28T14:29:11.1541586Z remote: Counting objects: 98% (1178/1202) 2022-11-28T14:29:11.1541852Z remote: Counting objects: 99% (1190/1202) 2022-11-28T14:29:11.1542116Z remote: Counting objects: 100% (1202/1202) 2022-11-28T14:29:11.1542398Z remote: Counting objects: 100% (1202/1202), done. 2022-11-28T14:29:11.1542690Z remote: Compressing objects: 0% (1/1020) 2022-11-28T14:29:11.1543116Z remote: Compressing objects: 1% (11/1020) 2022-11-28T14:29:11.1543407Z remote: Compressing objects: 2% (21/1020) 2022-11-28T14:29:11.1543689Z remote: Compressing objects: 3% (31/1020) 2022-11-28T14:29:11.1543969Z remote: Compressing objects: 4% (41/1020) 2022-11-28T14:29:11.1544232Z remote: Compressing objects: 5% (51/1020) 2022-11-28T14:29:11.1544511Z remote: Compressing objects: 6% (62/1020) 2022-11-28T14:29:11.1544786Z remote: Compressing objects: 7% (72/1020) 2022-11-28T14:29:11.1545047Z remote: Compressing objects: 8% (82/1020) 2022-11-28T14:29:11.1545325Z remote: Compressing objects: 9% (92/1020) 2022-11-28T14:29:11.1545603Z remote: Compressing objects: 10% (102/1020) 2022-11-28T14:29:11.1545875Z remote: Compressing objects: 11% (113/1020) 2022-11-28T14:29:11.1546155Z remote: Compressing objects: 12% (123/1020) 2022-11-28T14:29:11.1546441Z remote: Compressing objects: 13% (133/1020) 2022-11-28T14:29:11.1546704Z remote: Compressing objects: 14% (143/1020) 2022-11-28T14:29:11.1599812Z remote: Compressing objects: 15% (153/1020) 2022-11-28T14:29:11.1600154Z remote: Compressing objects: 16% (164/1020) 2022-11-28T14:29:11.1600445Z remote: Compressing objects: 17% (174/1020) 2022-11-28T14:29:11.1600780Z remote: Compressing objects: 18% (184/1020) 2022-11-28T14:29:11.1601065Z remote: Compressing objects: 19% (194/1020) 2022-11-28T14:29:11.1601347Z remote: Compressing objects: 20% (204/1020) 2022-11-28T14:29:11.1601611Z remote: Compressing objects: 21% (215/1020) 2022-11-28T14:29:11.1604924Z remote: Compressing objects: 22% (225/1020) 2022-11-28T14:29:11.1629135Z remote: Compressing objects: 23% (235/1020) 2022-11-28T14:29:11.1629491Z remote: Compressing objects: 24% (245/1020) 2022-11-28T14:29:11.1629778Z remote: Compressing objects: 25% (255/1020) 2022-11-28T14:29:11.1630076Z remote: Compressing objects: 26% (266/1020) 2022-11-28T14:29:11.1635490Z remote: Compressing objects: 27% (276/1020) 2022-11-28T14:29:11.1635810Z remote: Compressing objects: 28% (286/1020) 2022-11-28T14:29:11.1649976Z remote: Compressing objects: 29% (296/1020) 2022-11-28T14:29:11.1650288Z remote: Compressing objects: 30% (306/1020) 2022-11-28T14:29:11.1650573Z remote: Compressing objects: 31% (317/1020) 2022-11-28T14:29:11.1650854Z remote: Compressing objects: 32% (327/1020) 2022-11-28T14:29:11.1651117Z remote: Compressing objects: 33% (337/1020) 2022-11-28T14:29:11.1653699Z remote: Compressing objects: 34% (347/1020) 2022-11-28T14:29:11.1654084Z remote: Compressing objects: 35% (357/1020) 2022-11-28T14:29:11.1654376Z remote: Compressing objects: 36% (368/1020) 2022-11-28T14:29:11.1659632Z remote: Compressing objects: 37% (378/1020) 2022-11-28T14:29:11.1659961Z remote: Compressing objects: 38% (388/1020) 2022-11-28T14:29:11.1660243Z remote: Compressing objects: 39% (398/1020) 2022-11-28T14:29:11.1660576Z remote: Compressing objects: 40% (408/1020) 2022-11-28T14:29:11.1660855Z remote: Compressing objects: 41% (419/1020) 2022-11-28T14:29:11.1671806Z remote: Compressing objects: 42% (429/1020) 2022-11-28T14:29:11.1679599Z remote: Compressing objects: 43% (439/1020) 2022-11-28T14:29:11.1685689Z remote: Compressing objects: 44% (449/1020) 2022-11-28T14:29:11.1686001Z remote: Compressing objects: 45% (459/1020) 2022-11-28T14:29:11.1686280Z remote: Compressing objects: 46% (470/1020) 2022-11-28T14:29:11.1686546Z remote: Compressing objects: 47% (480/1020) 2022-11-28T14:29:11.1706685Z remote: Compressing objects: 48% (490/1020) 2022-11-28T14:29:11.1734445Z remote: Compressing objects: 49% (500/1020) 2022-11-28T14:29:11.1754991Z remote: Compressing objects: 50% (510/1020) 2022-11-28T14:29:11.1755618Z remote: Compressing objects: 51% (521/1020) 2022-11-28T14:29:11.1755921Z remote: Compressing objects: 52% (531/1020) 2022-11-28T14:29:11.1790420Z remote: Compressing objects: 53% (541/1020) 2022-11-28T14:29:11.1801905Z remote: Compressing objects: 54% (551/1020) 2022-11-28T14:29:11.2732224Z remote: Compressing objects: 55% (561/1020) 2022-11-28T14:29:11.2732557Z remote: Compressing objects: 56% (572/1020) 2022-11-28T14:29:11.2739815Z remote: Compressing objects: 57% (582/1020) 2022-11-28T14:29:11.2757326Z remote: Compressing objects: 58% (592/1020) 2022-11-28T14:29:11.2766411Z remote: Compressing objects: 59% (602/1020) 2022-11-28T14:29:11.2775073Z remote: Compressing objects: 60% (612/1020) 2022-11-28T14:29:11.2784288Z remote: Compressing objects: 61% (623/1020) 2022-11-28T14:29:11.2784687Z remote: Compressing objects: 62% (633/1020) 2022-11-28T14:29:11.2800975Z remote: Compressing objects: 63% (643/1020) 2022-11-28T14:29:11.2801297Z remote: Compressing objects: 64% (653/1020) 2022-11-28T14:29:11.2801590Z remote: Compressing objects: 65% (663/1020) 2022-11-28T14:29:11.2801880Z remote: Compressing objects: 66% (674/1020) 2022-11-28T14:29:11.2802146Z remote: Compressing objects: 67% (684/1020) 2022-11-28T14:29:11.2802426Z remote: Compressing objects: 68% (694/1020) 2022-11-28T14:29:11.2802704Z remote: Compressing objects: 69% (704/1020) 2022-11-28T14:29:11.2802968Z remote: Compressing objects: 70% (714/1020) 2022-11-28T14:29:11.2803377Z remote: Compressing objects: 71% (725/1020) 2022-11-28T14:29:11.2803681Z remote: Compressing objects: 72% (735/1020) 2022-11-28T14:29:11.2804375Z remote: Compressing objects: 73% (745/1020) 2022-11-28T14:29:11.2805522Z remote: Compressing objects: 74% (755/1020) 2022-11-28T14:29:11.2808700Z remote: Compressing objects: 75% (765/1020) 2022-11-28T14:29:11.2809079Z remote: Compressing objects: 76% (776/1020) 2022-11-28T14:29:11.2809405Z remote: Compressing objects: 77% (786/1020) 2022-11-28T14:29:11.2812120Z remote: Compressing objects: 78% (796/1020) 2022-11-28T14:29:11.2812591Z remote: Compressing objects: 79% (806/1020) 2022-11-28T14:29:11.2813598Z remote: Compressing objects: 80% (816/1020) 2022-11-28T14:29:11.2815340Z remote: Compressing objects: 81% (827/1020) 2022-11-28T14:29:11.2815736Z remote: Compressing objects: 82% (837/1020) 2022-11-28T14:29:11.2816056Z remote: Compressing objects: 83% (847/1020) 2022-11-28T14:29:11.2818222Z remote: Compressing objects: 84% (857/1020) 2022-11-28T14:29:11.2820075Z remote: Compressing objects: 85% (867/1020) 2022-11-28T14:29:11.2820404Z remote: Compressing objects: 86% (878/1020) 2022-11-28T14:29:11.2820689Z remote: Compressing objects: 87% (888/1020) 2022-11-28T14:29:11.2820964Z remote: Compressing objects: 88% (898/1020) 2022-11-28T14:29:11.2821244Z remote: Compressing objects: 89% (908/1020) 2022-11-28T14:29:11.2821522Z remote: Compressing objects: 90% (918/1020) 2022-11-28T14:29:11.2821799Z remote: Compressing objects: 91% (929/1020) 2022-11-28T14:29:11.2822244Z remote: Compressing objects: 92% (939/1020) 2022-11-28T14:29:11.2823625Z remote: Compressing objects: 93% (949/1020) 2022-11-28T14:29:11.2824428Z remote: Compressing objects: 94% (959/1020) 2022-11-28T14:29:11.2824751Z remote: Compressing objects: 95% (969/1020) 2022-11-28T14:29:11.2825034Z remote: Compressing objects: 96% (980/1020) 2022-11-28T14:29:11.2825405Z remote: Compressing objects: 97% (990/1020) 2022-11-28T14:29:11.2826033Z remote: Compressing objects: 98% (1000/1020) 2022-11-28T14:29:11.2826645Z remote: Compressing objects: 99% (1010/1020) 2022-11-28T14:29:11.2827225Z remote: Compressing objects: 100% (1020/1020) 2022-11-28T14:29:11.2828062Z remote: Compressing objects: 100% (1020/1020), done. 2022-11-28T14:29:11.2880149Z Receiving objects: 0% (1/1202) 2022-11-28T14:29:11.2880427Z Receiving objects: 1% (13/1202) 2022-11-28T14:29:11.2884729Z Receiving objects: 2% (25/1202) 2022-11-28T14:29:11.3052475Z Receiving objects: 3% (37/1202) 2022-11-28T14:29:11.3258238Z Receiving objects: 4% (49/1202) 2022-11-28T14:29:11.3359439Z Receiving objects: 5% (61/1202) 2022-11-28T14:29:11.3360774Z Receiving objects: 6% (73/1202) 2022-11-28T14:29:11.3361640Z Receiving objects: 7% (85/1202) 2022-11-28T14:29:11.3362435Z Receiving objects: 8% (97/1202) 2022-11-28T14:29:11.3363184Z Receiving objects: 9% (109/1202) 2022-11-28T14:29:11.3363437Z Receiving objects: 10% (121/1202) 2022-11-28T14:29:11.3364770Z Receiving objects: 11% (133/1202) 2022-11-28T14:29:11.3365951Z Receiving objects: 12% (145/1202) 2022-11-28T14:29:11.3366210Z Receiving objects: 13% (157/1202) 2022-11-28T14:29:11.3371370Z Receiving objects: 14% (169/1202) 2022-11-28T14:29:11.3371642Z Receiving objects: 15% (181/1202) 2022-11-28T14:29:11.3371867Z Receiving objects: 16% (193/1202) 2022-11-28T14:29:11.3372108Z Receiving objects: 17% (205/1202) 2022-11-28T14:29:11.3379625Z Receiving objects: 18% (217/1202) 2022-11-28T14:29:11.3379925Z Receiving objects: 19% (229/1202) 2022-11-28T14:29:11.3380170Z Receiving objects: 20% (241/1202) 2022-11-28T14:29:11.3380411Z Receiving objects: 21% (253/1202) 2022-11-28T14:29:11.3384937Z Receiving objects: 22% (265/1202) 2022-11-28T14:29:11.3385217Z Receiving objects: 23% (277/1202) 2022-11-28T14:29:11.3385458Z Receiving objects: 24% (289/1202) 2022-11-28T14:29:11.3385696Z Receiving objects: 25% (301/1202) 2022-11-28T14:29:11.3385920Z Receiving objects: 26% (313/1202) 2022-11-28T14:29:11.3392719Z Receiving objects: 27% (325/1202) 2022-11-28T14:29:11.3392990Z Receiving objects: 28% (337/1202) 2022-11-28T14:29:11.3393215Z Receiving objects: 29% (349/1202) 2022-11-28T14:29:11.3393462Z Receiving objects: 30% (361/1202) 2022-11-28T14:29:11.3398929Z Receiving objects: 31% (373/1202) 2022-11-28T14:29:11.3399181Z Receiving objects: 32% (385/1202) 2022-11-28T14:29:11.3399423Z Receiving objects: 33% (397/1202) 2022-11-28T14:29:11.3399662Z Receiving objects: 34% (409/1202) 2022-11-28T14:29:11.3407394Z Receiving objects: 35% (421/1202) 2022-11-28T14:29:11.3407651Z Receiving objects: 36% (433/1202) 2022-11-28T14:29:11.3407893Z Receiving objects: 37% (445/1202) 2022-11-28T14:29:11.3408132Z Receiving objects: 38% (457/1202) 2022-11-28T14:29:11.3408355Z Receiving objects: 39% (469/1202) 2022-11-28T14:29:11.3408590Z Receiving objects: 40% (481/1202) 2022-11-28T14:29:11.3408827Z Receiving objects: 41% (493/1202) 2022-11-28T14:29:11.3409046Z Receiving objects: 42% (505/1202) 2022-11-28T14:29:11.3411448Z Receiving objects: 43% (517/1202) 2022-11-28T14:29:11.3416066Z Receiving objects: 44% (529/1202) 2022-11-28T14:29:11.3416315Z Receiving objects: 45% (541/1202) 2022-11-28T14:29:11.3416565Z Receiving objects: 46% (553/1202) 2022-11-28T14:29:11.3418449Z Receiving objects: 47% (565/1202) 2022-11-28T14:29:11.3418705Z Receiving objects: 48% (577/1202) 2022-11-28T14:29:11.3420444Z Receiving objects: 49% (589/1202) 2022-11-28T14:29:11.3429205Z Receiving objects: 50% (601/1202) 2022-11-28T14:29:11.3431376Z Receiving objects: 51% (614/1202) 2022-11-28T14:29:11.3431619Z Receiving objects: 52% (626/1202) 2022-11-28T14:29:11.3604238Z Receiving objects: 53% (638/1202) 2022-11-28T14:29:11.3776849Z Receiving objects: 54% (650/1202) 2022-11-28T14:29:11.3985076Z Receiving objects: 55% (662/1202) 2022-11-28T14:29:11.6779716Z Receiving objects: 56% (674/1202) 2022-11-28T14:29:11.9351770Z Receiving objects: 57% (686/1202) 2022-11-28T14:29:11.9498028Z Receiving objects: 58% (698/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9500212Z Receiving objects: 59% (710/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9501890Z Receiving objects: 60% (722/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9502689Z Receiving objects: 61% (734/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9504431Z Receiving objects: 62% (746/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9504924Z Receiving objects: 63% (758/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9506549Z Receiving objects: 64% (770/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9507767Z Receiving objects: 65% (782/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9512666Z Receiving objects: 66% (794/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9515501Z Receiving objects: 67% (806/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9519025Z Receiving objects: 68% (818/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9522729Z Receiving objects: 69% (830/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9528882Z Receiving objects: 70% (842/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9534730Z Receiving objects: 71% (854/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9536777Z Receiving objects: 72% (866/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9539128Z Receiving objects: 73% (878/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9549313Z Receiving objects: 74% (890/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9550519Z Receiving objects: 75% (902/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9552933Z Receiving objects: 76% (914/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9555693Z Receiving objects: 77% (926/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9556232Z Receiving objects: 78% (938/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9557964Z Receiving objects: 79% (950/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9561190Z Receiving objects: 80% (962/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9563538Z Receiving objects: 81% (974/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9565127Z Receiving objects: 82% (986/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9567240Z Receiving objects: 83% (998/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9570083Z Receiving objects: 84% (1010/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9572789Z Receiving objects: 85% (1022/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9576754Z Receiving objects: 86% (1034/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9621271Z Receiving objects: 87% (1046/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9623313Z Receiving objects: 88% (1058/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9626916Z Receiving objects: 89% (1070/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9629237Z Receiving objects: 90% (1082/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9632206Z Receiving objects: 91% (1094/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9634951Z remote: Total 1202 (delta 233), reused 799 (delta 115), pack-reused 0 2022-11-28T14:29:11.9638088Z Receiving objects: 92% (1106/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9641027Z Receiving objects: 93% (1118/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9643334Z Receiving objects: 94% (1130/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9646324Z Receiving objects: 95% (1142/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9648647Z Receiving objects: 96% (1154/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9650230Z Receiving objects: 97% (1166/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9652339Z Receiving objects: 98% (1178/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9652836Z Receiving objects: 99% (1190/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9653148Z Receiving objects: 100% (1202/1202), 14.49 MiB | 28.98 MiB/s 2022-11-28T14:29:11.9653442Z Receiving objects: 100% (1202/1202), 19.11 MiB | 28.15 MiB/s, done. 2022-11-28T14:29:11.9655850Z Resolving deltas: 0% (0/233) 2022-11-28T14:29:11.9659316Z Resolving deltas: 1% (3/233) 2022-11-28T14:29:11.9667588Z Resolving deltas: 2% (5/233) 2022-11-28T14:29:11.9671682Z Resolving deltas: 3% (7/233) 2022-11-28T14:29:11.9672156Z Resolving deltas: 4% (10/233) 2022-11-28T14:29:11.9674620Z Resolving deltas: 5% (12/233) 2022-11-28T14:29:11.9676886Z Resolving deltas: 6% (14/233) 2022-11-28T14:29:11.9679101Z Resolving deltas: 7% (17/233) 2022-11-28T14:29:11.9680806Z Resolving deltas: 8% (19/233) 2022-11-28T14:29:11.9681226Z Resolving deltas: 9% (21/233) 2022-11-28T14:29:11.9681597Z Resolving deltas: 10% (24/233) 2022-11-28T14:29:11.9681982Z Resolving deltas: 11% (26/233) 2022-11-28T14:29:11.9682363Z Resolving deltas: 12% (28/233) 2022-11-28T14:29:11.9682779Z Resolving deltas: 13% (31/233) 2022-11-28T14:29:11.9683151Z Resolving deltas: 14% (33/233) 2022-11-28T14:29:11.9687798Z Resolving deltas: 15% (35/233) 2022-11-28T14:29:11.9688271Z Resolving deltas: 16% (38/233) 2022-11-28T14:29:11.9750661Z Resolving deltas: 17% (40/233) 2022-11-28T14:29:11.9750934Z Resolving deltas: 18% (42/233) 2022-11-28T14:29:11.9751296Z Resolving deltas: 19% (45/233) 2022-11-28T14:29:11.9751609Z Resolving deltas: 20% (47/233) 2022-11-28T14:29:11.9751919Z Resolving deltas: 21% (49/233) 2022-11-28T14:29:11.9752202Z Resolving deltas: 22% (52/233) 2022-11-28T14:29:11.9752618Z Resolving deltas: 23% (54/233) 2022-11-28T14:29:11.9752923Z Resolving deltas: 24% (56/233) 2022-11-28T14:29:11.9753176Z Resolving deltas: 25% (59/233) 2022-11-28T14:29:11.9753473Z Resolving deltas: 26% (61/233) 2022-11-28T14:29:11.9753790Z Resolving deltas: 27% (63/233) 2022-11-28T14:29:11.9754093Z Resolving deltas: 28% (66/233) 2022-11-28T14:29:11.9754391Z Resolving deltas: 29% (68/233) 2022-11-28T14:29:11.9754687Z Resolving deltas: 30% (70/233) 2022-11-28T14:29:11.9754936Z Resolving deltas: 31% (73/233) 2022-11-28T14:29:11.9755240Z Resolving deltas: 32% (75/233) 2022-11-28T14:29:11.9755586Z Resolving deltas: 33% (77/233) 2022-11-28T14:29:11.9755835Z Resolving deltas: 34% (80/233) 2022-11-28T14:29:11.9756133Z Resolving deltas: 35% (82/233) 2022-11-28T14:29:11.9756643Z Resolving deltas: 36% (84/233) 2022-11-28T14:29:11.9756898Z Resolving deltas: 37% (87/233) 2022-11-28T14:29:11.9757237Z Resolving deltas: 38% (89/233) 2022-11-28T14:29:11.9757540Z Resolving deltas: 39% (91/233) 2022-11-28T14:29:11.9757801Z Resolving deltas: 40% (94/233) 2022-11-28T14:29:11.9758105Z Resolving deltas: 41% (96/233) 2022-11-28T14:29:11.9758433Z Resolving deltas: 42% (98/233) 2022-11-28T14:29:11.9758735Z Resolving deltas: 43% (101/233) 2022-11-28T14:29:11.9758999Z Resolving deltas: 44% (103/233) 2022-11-28T14:29:11.9759313Z Resolving deltas: 45% (105/233) 2022-11-28T14:29:11.9759617Z Resolving deltas: 46% (108/233) 2022-11-28T14:29:11.9759906Z Resolving deltas: 47% (110/233) 2022-11-28T14:29:11.9760208Z Resolving deltas: 48% (112/233) 2022-11-28T14:29:11.9760525Z Resolving deltas: 49% (115/233) 2022-11-28T14:29:11.9760778Z Resolving deltas: 50% (117/233) 2022-11-28T14:29:11.9761076Z Resolving deltas: 51% (119/233) 2022-11-28T14:29:11.9761426Z Resolving deltas: 52% (122/233) 2022-11-28T14:29:11.9761677Z Resolving deltas: 53% (124/233) 2022-11-28T14:29:11.9761989Z Resolving deltas: 54% (126/233) 2022-11-28T14:29:11.9762290Z Resolving deltas: 55% (129/233) 2022-11-28T14:29:11.9762547Z Resolving deltas: 56% (131/233) 2022-11-28T14:29:11.9762877Z Resolving deltas: 57% (133/233) 2022-11-28T14:29:11.9763194Z Resolving deltas: 58% (136/233) 2022-11-28T14:29:11.9763446Z Resolving deltas: 59% (138/233) 2022-11-28T14:29:11.9763751Z Resolving deltas: 60% (140/233) 2022-11-28T14:29:11.9764078Z Resolving deltas: 61% (143/233) 2022-11-28T14:29:11.9764327Z Resolving deltas: 62% (145/233) 2022-11-28T14:29:11.9764639Z Resolving deltas: 63% (147/233) 2022-11-28T14:29:11.9764938Z Resolving deltas: 64% (150/233) 2022-11-28T14:29:11.9765239Z Resolving deltas: 65% (152/233) 2022-11-28T14:29:11.9765517Z Resolving deltas: 66% (154/233) 2022-11-28T14:29:11.9765827Z Resolving deltas: 67% (157/233) 2022-11-28T14:29:11.9766124Z Resolving deltas: 68% (159/233) 2022-11-28T14:29:11.9766378Z Resolving deltas: 69% (161/233) 2022-11-28T14:29:11.9766698Z Resolving deltas: 70% (164/233) 2022-11-28T14:29:11.9767041Z Resolving deltas: 71% (166/233) 2022-11-28T14:29:11.9767385Z Resolving deltas: 72% (168/233) 2022-11-28T14:29:11.9767689Z Resolving deltas: 73% (171/233) 2022-11-28T14:29:11.9767993Z Resolving deltas: 74% (173/233) 2022-11-28T14:29:11.9768243Z Resolving deltas: 75% (175/233) 2022-11-28T14:29:11.9768591Z Resolving deltas: 76% (178/233) 2022-11-28T14:29:11.9768896Z Resolving deltas: 77% (180/233) 2022-11-28T14:29:11.9769144Z Resolving deltas: 78% (182/233) 2022-11-28T14:29:11.9769444Z Resolving deltas: 79% (185/233) 2022-11-28T14:29:11.9769786Z Resolving deltas: 80% (187/233) 2022-11-28T14:29:11.9770036Z Resolving deltas: 81% (189/233) 2022-11-28T14:29:11.9770335Z Resolving deltas: 82% (192/233) 2022-11-28T14:29:11.9770650Z Resolving deltas: 83% (194/233) 2022-11-28T14:29:11.9770962Z Resolving deltas: 84% (196/233) 2022-11-28T14:29:11.9771294Z Resolving deltas: 85% (199/233) 2022-11-28T14:29:11.9771543Z Resolving deltas: 86% (201/233) 2022-11-28T14:29:11.9771840Z Resolving deltas: 87% (203/233) 2022-11-28T14:29:11.9772165Z Resolving deltas: 88% (206/233) 2022-11-28T14:29:11.9772420Z Resolving deltas: 89% (208/233) 2022-11-28T14:29:11.9772746Z Resolving deltas: 90% (210/233) 2022-11-28T14:29:11.9773048Z Resolving deltas: 91% (213/233) 2022-11-28T14:29:11.9773298Z Resolving deltas: 92% (215/233) 2022-11-28T14:29:11.9773612Z Resolving deltas: 93% (217/233) 2022-11-28T14:29:11.9773938Z Resolving deltas: 94% (220/233) 2022-11-28T14:29:11.9774236Z Resolving deltas: 95% (222/233) 2022-11-28T14:29:11.9774491Z Resolving deltas: 96% (224/233) 2022-11-28T14:29:11.9845318Z Resolving deltas: 97% (227/233) 2022-11-28T14:29:11.9853007Z Resolving deltas: 98% (229/233) 2022-11-28T14:29:11.9905093Z Resolving deltas: 99% (231/233) 2022-11-28T14:29:11.9911297Z Resolving deltas: 100% (233/233) 2022-11-28T14:29:11.9912145Z Resolving deltas: 100% (233/233), done. 2022-11-28T14:29:12.0317471Z From https://github.com/Devtailor/trimtex-v2 2022-11-28T14:29:12.0318288Z * [new ref] 10063d0d281ec32d79ac9a1481ab5977d3e4c245 -> pull/706/merge 2022-11-28T14:29:12.0340880Z ##[endgroup] 2022-11-28T14:29:12.0342501Z ##[group]Determining the checkout info 2022-11-28T14:29:12.0344990Z ##[endgroup] 2022-11-28T14:29:12.0345860Z ##[group]Checking out the ref 2022-11-28T14:29:12.0356672Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/706/merge 2022-11-28T14:29:12.3510773Z Note: switching to 'refs/remotes/pull/706/merge'. 2022-11-28T14:29:12.3513157Z 2022-11-28T14:29:12.3514164Z You are in 'detached HEAD' state. You can look around, make experimental 2022-11-28T14:29:12.3514597Z changes and commit them, and you can discard any commits you make in this 2022-11-28T14:29:12.3515043Z state without impacting any branches by switching back to a branch. 2022-11-28T14:29:12.3515280Z 2022-11-28T14:29:12.3515583Z If you want to create a new branch to retain commits you create, you may 2022-11-28T14:29:12.3516141Z do so (now or later) by using -c with the switch command. Example: 2022-11-28T14:29:12.3516364Z 2022-11-28T14:29:12.3516525Z git switch -c 2022-11-28T14:29:12.3516727Z 2022-11-28T14:29:12.3516867Z Or undo this operation with: 2022-11-28T14:29:12.3517047Z 2022-11-28T14:29:12.3517198Z git switch - 2022-11-28T14:29:12.3517394Z 2022-11-28T14:29:12.3517628Z Turn off this advice by setting config variable advice.detachedHead to false 2022-11-28T14:29:12.3517875Z 2022-11-28T14:29:12.3518074Z HEAD is now at 10063d0 Merge 428a9212b2f247d0e77d0be1efb7f78d978ba4cf into 34368828d04d868f578e31b48a5d970255177981 2022-11-28T14:29:12.3528476Z ##[endgroup] 2022-11-28T14:29:12.3574530Z [command]/usr/bin/git log -1 --format='%H' 2022-11-28T14:29:12.3604132Z '10063d0d281ec32d79ac9a1481ab5977d3e4c245' 2022-11-28T14:29:12.3904896Z ##[group]Run docker/setup-buildx-action@v2 2022-11-28T14:29:12.3905226Z with: 2022-11-28T14:29:12.3905516Z driver: docker-container 2022-11-28T14:29:12.3905976Z buildkitd-flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host 2022-11-28T14:29:12.3906405Z install: false 2022-11-28T14:29:12.3906665Z use: true 2022-11-28T14:29:12.3906880Z ##[endgroup] 2022-11-28T14:29:13.4651211Z ##[group]Docker info 2022-11-28T14:29:13.4665110Z [command]/usr/bin/docker version 2022-11-28T14:29:13.4971024Z Client: 2022-11-28T14:29:13.4972548Z Version: 20.10.21+azure-1 2022-11-28T14:29:13.4973001Z API version: 1.41 2022-11-28T14:29:13.4974296Z Go version: go1.18.7 2022-11-28T14:29:13.4974720Z Git commit: baeda1f82a10204ec5708d5fbba130ad76cfee49 2022-11-28T14:29:13.4975130Z Built: Tue Oct 25 17:53:02 UTC 2022 2022-11-28T14:29:13.5025721Z OS/Arch: linux/amd64 2022-11-28T14:29:13.5026077Z Context: default 2022-11-28T14:29:13.5026300Z Experimental: true 2022-11-28T14:29:13.5026447Z 2022-11-28T14:29:13.5026522Z Server: 2022-11-28T14:29:13.5026714Z Engine: 2022-11-28T14:29:13.5027087Z Version: 20.10.21+azure-1 2022-11-28T14:29:13.5027351Z API version: 1.41 (minimum version 1.12) 2022-11-28T14:29:13.5027600Z Go version: go1.18.7 2022-11-28T14:29:13.5027866Z Git commit: 3056208812eb5e792fa99736c9167d1e10f4ab49 2022-11-28T14:29:13.5028120Z Built: Tue Oct 25 11:44:15 2022 2022-11-28T14:29:13.5028357Z OS/Arch: linux/amd64 2022-11-28T14:29:13.5028588Z Experimental: false 2022-11-28T14:29:13.5028792Z containerd: 2022-11-28T14:29:13.5029040Z Version: 1.5.14+azure-1 2022-11-28T14:29:13.5029306Z GitCommit: b84d0b151c2395a5917996d602b192ce1e0fa461 2022-11-28T14:29:13.5029531Z runc: 2022-11-28T14:29:13.5029722Z Version: 1.1.4 2022-11-28T14:29:13.5029991Z GitCommit: 5fd4c4d144137e991c4acebb2146ab1483a97925 2022-11-28T14:29:13.5030277Z docker-init: 2022-11-28T14:29:13.5030484Z Version: 0.19.0 2022-11-28T14:29:13.5030958Z GitCommit: 2022-11-28T14:29:13.5031167Z [command]/usr/bin/docker info 2022-11-28T14:29:13.5821934Z Client: 2022-11-28T14:29:13.5822291Z Context: default 2022-11-28T14:29:13.5822516Z Debug Mode: false 2022-11-28T14:29:13.5822771Z Plugins: 2022-11-28T14:29:13.5823325Z buildx: Docker Buildx (Docker Inc., 0.9.1+azure-2) 2022-11-28T14:29:13.5823707Z compose: Docker Compose (Docker Inc., 2.12.2+azure-1) 2022-11-28T14:29:13.5823880Z 2022-11-28T14:29:13.5823956Z Server: 2022-11-28T14:29:13.5824134Z Containers: 0 2022-11-28T14:29:13.5824334Z Running: 0 2022-11-28T14:29:13.5824528Z Paused: 0 2022-11-28T14:29:13.5824708Z Stopped: 0 2022-11-28T14:29:13.5824903Z Images: 19 2022-11-28T14:29:13.5825162Z Server Version: 20.10.21+azure-1 2022-11-28T14:29:13.5825380Z Storage Driver: overlay2 2022-11-28T14:29:13.5825610Z Backing Filesystem: extfs 2022-11-28T14:29:13.5825856Z Supports d_type: true 2022-11-28T14:29:13.5826071Z Native Overlay Diff: false 2022-11-28T14:29:13.5826291Z userxattr: false 2022-11-28T14:29:13.5826569Z Logging Driver: json-file 2022-11-28T14:29:13.5826791Z Cgroup Driver: cgroupfs 2022-11-28T14:29:13.5827007Z Cgroup Version: 1 2022-11-28T14:29:13.5827207Z Plugins: 2022-11-28T14:29:13.5827387Z Volume: local 2022-11-28T14:29:13.5827637Z Network: bridge host ipvlan macvlan null overlay 2022-11-28T14:29:13.5828087Z Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog 2022-11-28T14:29:13.5828374Z Swarm: inactive 2022-11-28T14:29:13.5828716Z Runtimes: runc io.containerd.runc.v2 io.containerd.runtime.v1.linux 2022-11-28T14:29:13.5829023Z Default Runtime: runc 2022-11-28T14:29:13.5829292Z Init Binary: docker-init 2022-11-28T14:29:13.5829557Z containerd version: b84d0b151c2395a5917996d602b192ce1e0fa461 2022-11-28T14:29:13.5829870Z runc version: 5fd4c4d144137e991c4acebb2146ab1483a97925 2022-11-28T14:29:13.5830400Z init version: 2022-11-28T14:29:13.5830601Z Security Options: 2022-11-28T14:29:13.5830803Z apparmor 2022-11-28T14:29:13.5830994Z seccomp 2022-11-28T14:29:13.5831178Z Profile: default 2022-11-28T14:29:13.5831470Z Kernel Version: 5.15.0-1023-azure 2022-11-28T14:29:13.5831720Z Operating System: Ubuntu 20.04.5 LTS 2022-11-28T14:29:13.5831936Z OSType: linux 2022-11-28T14:29:13.5832148Z Architecture: x86_64 2022-11-28T14:29:13.5832353Z CPUs: 2 2022-11-28T14:29:13.5832536Z Total Memory: 6.781GiB 2022-11-28T14:29:13.5832788Z Name: fv-az72-392 2022-11-28T14:29:13.5833058Z ID: BGOD:34Y3:W4DV:CLAE:3Y4S:JQ7R:7PQU:NQHB:JJ6O:KGSI:O2DB:X4MI 2022-11-28T14:29:13.5833331Z Docker Root Dir: /var/lib/docker 2022-11-28T14:29:13.5833557Z Debug Mode: false 2022-11-28T14:29:13.5833775Z Username: githubactions 2022-11-28T14:29:13.5834037Z Registry: https://index.docker.io/v1/ 2022-11-28T14:29:13.5834274Z Labels: 2022-11-28T14:29:13.5834476Z Experimental: false 2022-11-28T14:29:13.5834687Z Insecure Registries: 2022-11-28T14:29:13.5834895Z 127.0.0.0/8 2022-11-28T14:29:13.5835104Z Live Restore Enabled: false 2022-11-28T14:29:13.5835252Z 2022-11-28T14:29:13.5851915Z ##[endgroup] 2022-11-28T14:29:13.7381628Z ##[group]Buildx version 2022-11-28T14:29:13.7413727Z [command]/usr/bin/docker buildx version 2022-11-28T14:29:13.8090381Z github.com/docker/buildx 0.9.1+azure-2 ed00243a0ce2a0aee75311b06e32d33b44729689 2022-11-28T14:29:13.8116285Z ##[endgroup] 2022-11-28T14:29:13.8124496Z ##[group]Creating a new builder instance 2022-11-28T14:29:13.8173062Z [command]/usr/bin/docker buildx create --name builder-710d6de2-565d-43b3-8496-f6e0d8c62e02 --driver docker-container --buildkitd-flags --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host --use 2022-11-28T14:29:13.8989681Z builder-710d6de2-565d-43b3-8496-f6e0d8c62e02 2022-11-28T14:29:13.9030575Z ##[endgroup] 2022-11-28T14:29:13.9031098Z ##[group]Booting builder 2022-11-28T14:29:13.9041118Z [command]/usr/bin/docker buildx inspect --bootstrap --builder builder-710d6de2-565d-43b3-8496-f6e0d8c62e02 2022-11-28T14:29:13.9797211Z #1 [internal] booting buildkit 2022-11-28T14:29:14.1306938Z #1 pulling image moby/buildkit:buildx-stable-1 2022-11-28T14:29:16.0531287Z #1 pulling image moby/buildkit:buildx-stable-1 2.1s done 2022-11-28T14:29:16.2036412Z #1 creating container buildx_buildkit_builder-710d6de2-565d-43b3-8496-f6e0d8c62e020 2022-11-28T14:29:16.7138224Z #1 creating container buildx_buildkit_builder-710d6de2-565d-43b3-8496-f6e0d8c62e020 0.7s done 2022-11-28T14:29:16.7138942Z #1 DONE 2.7s 2022-11-28T14:29:16.9406791Z Name: builder-710d6de2-565d-43b3-8496-f6e0d8c62e02 2022-11-28T14:29:16.9439660Z Driver: docker-container 2022-11-28T14:29:16.9445642Z 2022-11-28T14:29:16.9446154Z Nodes: 2022-11-28T14:29:16.9446850Z Name: builder-710d6de2-565d-43b3-8496-f6e0d8c62e020 2022-11-28T14:29:16.9447362Z Endpoint: unix:///var/run/docker.sock 2022-11-28T14:29:16.9448061Z Status: running 2022-11-28T14:29:16.9453818Z Flags: --allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host 2022-11-28T14:29:16.9457849Z Buildkit: v0.10.5 2022-11-28T14:29:16.9462691Z Platforms: linux/amd64, linux/amd64/v2, linux/amd64/v3, linux/amd64/v4, linux/386 2022-11-28T14:29:16.9510115Z ##[endgroup] 2022-11-28T14:29:16.9530652Z ##[group]Inspect builder 2022-11-28T14:29:17.2010342Z { 2022-11-28T14:29:17.2010922Z "nodes": [ 2022-11-28T14:29:17.2011507Z { 2022-11-28T14:29:17.2012212Z "name": "builder-710d6de2-565d-43b3-8496-f6e0d8c62e020", 2022-11-28T14:29:17.2012540Z "endpoint": "unix:///var/run/docker.sock", 2022-11-28T14:29:17.2012811Z "status": "running", 2022-11-28T14:29:17.2013351Z "buildkitd-flags": "--allow-insecure-entitlement security.insecure --allow-insecure-entitlement network.host", 2022-11-28T14:29:17.2013719Z "buildkit": "v0.10.5", 2022-11-28T14:29:17.2014020Z "platforms": "linux/amd64,linux/amd64/v2,linux/amd64/v3,linux/amd64/v4,linux/386" 2022-11-28T14:29:17.2014508Z } 2022-11-28T14:29:17.2014674Z ], 2022-11-28T14:29:17.2015032Z "name": "builder-710d6de2-565d-43b3-8496-f6e0d8c62e02", 2022-11-28T14:29:17.2015384Z "driver": "docker-container" 2022-11-28T14:29:17.2015596Z } 2022-11-28T14:29:17.2016129Z ##[endgroup] 2022-11-28T14:29:17.2016526Z ##[group]BuildKit version 2022-11-28T14:29:17.6982407Z builder-710d6de2-565d-43b3-8496-f6e0d8c62e020: moby/buildkit:buildx-stable-1 => buildkitd github.com/moby/buildkit v0.10.5 bc26045116045516ff2427201abd299043eaf8f7 2022-11-28T14:29:17.6983564Z ##[endgroup] 2022-11-28T14:29:17.7138840Z ##[group]Run actions/cache@v3 2022-11-28T14:29:17.7139073Z with: 2022-11-28T14:29:17.7139282Z path: /tmp/.buildx-cache 2022-11-28T14:29:17.7139597Z key: designer-www-buildx-10063d0d281ec32d79ac9a1481ab5977d3e4c245 2022-11-28T14:29:17.7139945Z restore-keys: designer-www-buildx- 2022-11-28T14:29:17.7140188Z ##[endgroup] 2022-11-28T14:29:18.0543632Z Cache not found for input keys: designer-www-buildx-10063d0d281ec32d79ac9a1481ab5977d3e4c245, designer-www-buildx- 2022-11-28T14:29:18.0713295Z ##[group]Run tree -f -pug -h -D /tmp/.buildx-cache 2022-11-28T14:29:18.0713698Z tree -f -pug -h -D /tmp/.buildx-cache 2022-11-28T14:29:18.0771026Z shell: /usr/bin/bash -e {0} 2022-11-28T14:29:18.0771287Z ##[endgroup] 2022-11-28T14:29:18.1179603Z /tmp/.buildx-cache [error opening dir] 2022-11-28T14:29:18.1179843Z 2022-11-28T14:29:18.1181673Z 0 directories, 0 files 2022-11-28T14:29:18.1244855Z ##[group]Run docker/build-push-action@v3 2022-11-28T14:29:18.1245108Z with: 2022-11-28T14:29:18.1245297Z context: ./designer-www 2022-11-28T14:29:18.1245558Z cache-from: type=local,src=/tmp/.buildx-cache 2022-11-28T14:29:18.1245875Z cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max 2022-11-28T14:29:18.1246131Z load: false 2022-11-28T14:29:18.1246331Z no-cache: false 2022-11-28T14:29:18.1246534Z pull: false 2022-11-28T14:29:18.1246716Z push: false 2022-11-28T14:29:18.1247076Z github-token: *** 2022-11-28T14:29:18.1247285Z ##[endgroup] 2022-11-28T14:29:18.3179297Z ##[group]Docker info 2022-11-28T14:29:18.3201065Z [command]/usr/bin/docker version 2022-11-28T14:29:18.3517118Z Client: 2022-11-28T14:29:18.3517932Z Version: 20.10.21+azure-1 2022-11-28T14:29:18.3519560Z API version: 1.41 2022-11-28T14:29:18.3520038Z Go version: go1.18.7 2022-11-28T14:29:18.3520457Z Git commit: baeda1f82a10204ec5708d5fbba130ad76cfee49 2022-11-28T14:29:18.3520820Z Built: Tue Oct 25 17:53:02 UTC 2022 2022-11-28T14:29:18.3521081Z OS/Arch: linux/amd64 2022-11-28T14:29:18.3521287Z Context: default 2022-11-28T14:29:18.3521518Z Experimental: true 2022-11-28T14:29:18.3521661Z 2022-11-28T14:29:18.3521735Z Server: 2022-11-28T14:29:18.3521903Z Engine: 2022-11-28T14:29:18.3522156Z Version: 20.10.21+azure-1 2022-11-28T14:29:18.3522412Z API version: 1.41 (minimum version 1.12) 2022-11-28T14:29:18.3522643Z Go version: go1.18.7 2022-11-28T14:29:18.3522903Z Git commit: 3056208812eb5e792fa99736c9167d1e10f4ab49 2022-11-28T14:29:18.3523167Z Built: Tue Oct 25 11:44:15 2022 2022-11-28T14:29:18.3523389Z OS/Arch: linux/amd64 2022-11-28T14:29:18.3523616Z Experimental: false 2022-11-28T14:29:18.3523830Z containerd: 2022-11-28T14:29:18.3524058Z Version: 1.5.14+azure-1 2022-11-28T14:29:18.3524323Z GitCommit: b84d0b151c2395a5917996d602b192ce1e0fa461 2022-11-28T14:29:18.3524559Z runc: 2022-11-28T14:29:18.3524747Z Version: 1.1.4 2022-11-28T14:29:18.3525000Z GitCommit: 5fd4c4d144137e991c4acebb2146ab1483a97925 2022-11-28T14:29:18.3525296Z docker-init: 2022-11-28T14:29:18.3525499Z Version: 0.19.0 2022-11-28T14:29:18.3525697Z GitCommit: 2022-11-28T14:29:18.3560203Z [command]/usr/bin/docker info 2022-11-28T14:29:18.4374052Z Client: 2022-11-28T14:29:18.4374421Z Context: default 2022-11-28T14:29:18.4374716Z Debug Mode: false 2022-11-28T14:29:18.4374948Z Plugins: 2022-11-28T14:29:18.4375467Z buildx: Docker Buildx (Docker Inc., 0.9.1+azure-2) 2022-11-28T14:29:18.4375929Z compose: Docker Compose (Docker Inc., 2.12.2+azure-1) 2022-11-28T14:29:18.4376207Z 2022-11-28T14:29:18.4376484Z Server: 2022-11-28T14:29:18.4376677Z Containers: 1 2022-11-28T14:29:18.4376864Z Running: 1 2022-11-28T14:29:18.4377189Z Paused: 0 2022-11-28T14:29:18.4377649Z Stopped: 0 2022-11-28T14:29:18.4377828Z Images: 20 2022-11-28T14:29:18.4378103Z Server Version: 20.10.21+azure-1 2022-11-28T14:29:18.4378335Z Storage Driver: overlay2 2022-11-28T14:29:18.4378556Z Backing Filesystem: extfs 2022-11-28T14:29:18.4378788Z Supports d_type: true 2022-11-28T14:29:18.4379015Z Native Overlay Diff: false 2022-11-28T14:29:18.4379226Z userxattr: false 2022-11-28T14:29:18.4379495Z Logging Driver: json-file 2022-11-28T14:29:18.4379732Z Cgroup Driver: cgroupfs 2022-11-28T14:29:18.4390213Z Cgroup Version: 1 2022-11-28T14:29:18.4392016Z Plugins: 2022-11-28T14:29:18.4392365Z Volume: local 2022-11-28T14:29:18.4392774Z Network: bridge host ipvlan macvlan null overlay 2022-11-28T14:29:18.4393586Z Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog 2022-11-28T14:29:18.4394083Z Swarm: inactive 2022-11-28T14:29:18.4394566Z Runtimes: io.containerd.runc.v2 io.containerd.runtime.v1.linux runc 2022-11-28T14:29:18.4397241Z Default Runtime: runc 2022-11-28T14:29:18.4397845Z Init Binary: docker-init 2022-11-28T14:29:18.4398801Z containerd version: b84d0b151c2395a5917996d602b192ce1e0fa461 2022-11-28T14:29:18.4470804Z runc version: 5fd4c4d144137e991c4acebb2146ab1483a97925 2022-11-28T14:29:18.4471069Z init version: 2022-11-28T14:29:18.4471285Z Security Options: 2022-11-28T14:29:18.4471490Z apparmor 2022-11-28T14:29:18.4471663Z seccomp 2022-11-28T14:29:18.4471863Z Profile: default 2022-11-28T14:29:18.4472238Z Kernel Version: 5.15.0-1023-azure 2022-11-28T14:29:18.4472475Z Operating System: Ubuntu 20.04.5 LTS 2022-11-28T14:29:18.4472706Z OSType: linux 2022-11-28T14:29:18.4472916Z Architecture: x86_64 2022-11-28T14:29:18.4473107Z CPUs: 2 2022-11-28T14:29:18.4473306Z Total Memory: 6.781GiB 2022-11-28T14:29:18.4473566Z Name: fv-az72-392 2022-11-28T14:29:18.4474046Z ID: BGOD:34Y3:W4DV:CLAE:3Y4S:JQ7R:7PQU:NQHB:JJ6O:KGSI:O2DB:X4MI 2022-11-28T14:29:18.4474326Z Docker Root Dir: /var/lib/docker 2022-11-28T14:29:18.4474552Z Debug Mode: false 2022-11-28T14:29:18.4474767Z Username: githubactions 2022-11-28T14:29:18.4475030Z Registry: https://index.docker.io/v1/ 2022-11-28T14:29:18.4475269Z Labels: 2022-11-28T14:29:18.4475466Z Experimental: false 2022-11-28T14:29:18.4475672Z Insecure Registries: 2022-11-28T14:29:18.4475878Z 127.0.0.0/8 2022-11-28T14:29:18.4476087Z Live Restore Enabled: false 2022-11-28T14:29:18.4476218Z 2022-11-28T14:29:18.4476786Z ##[endgroup] 2022-11-28T14:29:18.5906819Z ##[group]Buildx version 2022-11-28T14:29:18.5917933Z [command]/usr/bin/docker buildx version 2022-11-28T14:29:18.6544157Z github.com/docker/buildx 0.9.1+azure-2 ed00243a0ce2a0aee75311b06e32d33b44729689 2022-11-28T14:29:18.6567608Z ##[endgroup] 2022-11-28T14:29:18.6667261Z [command]/usr/bin/docker buildx build --cache-from type=local,src=/tmp/.buildx-cache --cache-to type=local,dest=/tmp/.buildx-cache-new,mode=max --iidfile /tmp/docker-build-push-1X95VB/iidfile --metadata-file /tmp/docker-build-push-1X95VB/metadata-file ./designer-www 2022-11-28T14:29:18.7425091Z WARNING: No output specified with docker-container driver. Build result will only remain in the build cache. To push result image into registry use --push or to load image into docker use --load 2022-11-28T14:29:18.8906823Z #1 [internal] load .dockerignore 2022-11-28T14:29:18.8907302Z #1 transferring context: 2B done 2022-11-28T14:29:18.8907599Z #1 DONE 0.0s 2022-11-28T14:29:18.8907801Z 2022-11-28T14:29:18.8908013Z #2 [internal] load build definition from Dockerfile 2022-11-28T14:29:18.8908429Z #2 transferring dockerfile: 2B done 2022-11-28T14:29:18.8908731Z #2 DONE 0.0s 2022-11-28T14:29:18.8909590Z WARNING: local cache import at /tmp/.buildx-cache not found due to err: could not read /tmp/.buildx-cache/index.json: open /tmp/.buildx-cache/index.json: no such file or directory 2022-11-28T14:29:18.8928347Z ERROR: failed to solve: failed to read dockerfile: open /tmp/buildkit-mount2171077648/Dockerfile: no such file or directory 2022-11-28T14:29:18.9036035Z ##[error]buildx failed with: ERROR: failed to solve: failed to read dockerfile: open /tmp/buildkit-mount2171077648/Dockerfile: no such file or directory 2022-11-28T14:29:18.9173321Z Post job cleanup. 2022-11-28T14:29:19.0226555Z ##[group]Removing temp folder /tmp/docker-build-push-1X95VB 2022-11-28T14:29:19.0235034Z ##[endgroup] 2022-11-28T14:29:19.0315940Z Post job cleanup. 2022-11-28T14:29:19.1165431Z ##[group]Removing builder 2022-11-28T14:29:19.1213413Z [command]/usr/bin/docker buildx rm builder-710d6de2-565d-43b3-8496-f6e0d8c62e02 2022-11-28T14:29:19.3456002Z builder-710d6de2-565d-43b3-8496-f6e0d8c62e02 removed 2022-11-28T14:29:19.3487696Z ##[endgroup] 2022-11-28T14:29:19.3489084Z Cleaning up credentials 2022-11-28T14:29:19.3638685Z Post job cleanup. 2022-11-28T14:29:19.4994494Z [command]/usr/bin/git version 2022-11-28T14:29:19.5044054Z git version 2.38.1 2022-11-28T14:29:19.5087298Z Temporarily overriding HOME='/home/runner/work/_temp/00442166-0121-4a53-a471-bcfb3b981db8' before making global git config changes 2022-11-28T14:29:19.5088703Z Adding repository directory to the temporary git global config as a safe directory 2022-11-28T14:29:19.5094471Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/trimtex-v2/trimtex-v2 2022-11-28T14:29:19.5138833Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand 2022-11-28T14:29:19.5174758Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'core\.sshCommand' && git config --local --unset-all 'core.sshCommand' || : 2022-11-28T14:29:19.5410001Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader 2022-11-28T14:29:19.5440432Z http.https://github.com/.extraheader 2022-11-28T14:29:19.5449992Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader 2022-11-28T14:29:19.5487101Z [command]/usr/bin/git submodule foreach --recursive git config --local --name-only --get-regexp 'http\.https\:\/\/github\.com\/\.extraheader' && git config --local --unset-all 'http.https://github.com/.extraheader' || : 2022-11-28T14:29:19.5980419Z Cleaning up orphan processes ```

Also, I have added the following:

- name: Cache folder content
  run: |
    tree -f -pug -h -D /tmp/.buildx-cache

And the output is just this, directory does not exist:

/tmp/.buildx-cache [error opening dir]

0 directories, 0 files

Interestingly, we are not having this issue with our other projects where configuration is almost identical. Any ideas what else we can do to troubleshoot?

wanghongda-0624 commented 1 year ago

is this issue solved? thanks a lot

orhun commented 1 year ago

Still having this issue..

fang19911030 commented 10 months ago

I have the same issue

KevinMind commented 6 months ago

Same issue https://github.com/mozilla/addons-server/actions/runs/8022184481/job/21915931646?pr=21893 build.

KevinMind commented 6 months ago

Interesting I'm seeing differences in the ci

 #0 building with "builder-317bb61c-7b9a-4977-bc30-b54f9728d056" instance using docker-container driver
#1 [internal] load git source https://github.com/mozilla/addons-server.git#refs/pull/21893/merge
#1 0.125 Initialized empty Git repository in /var/lib/buildkit/runc-overlayfs/snapshots/snapshots/1/fs/
#1 1.218 e6fcbc1b7d3bee494da7246f83eb02822f0bec20   refs/pull/21893/merge
#1 2.350 From https://github.com/mozilla/addons-server
#1 2.350  * [new ref]         refs/pull/21893/merge -> refs/pull/21893/merge
#1 DONE 4.2s
#2 [internal] load metadata for docker.io/library/python:3.10-slim-buster
#2 ...
#3 [auth] library/python:pull token for registry-1.docker.io
#3 DONE 0.0s
#2 [internal] load metadata for docker.io/library/python:3.10-slim-buster
#2 DONE 0.7s
#4 [internal] settings cache mount permissions
#4 DONE 0.0s

And the local logs

DOCKER_BUILDKIT=1 docker build -t test_amo --platform linux/amd64 --progress=plain -f ./Dockerfile.test --cache-to=type=local,dest=./docker-cache --cache-from=type=local,src=./docker-cache,mode=max --builder=container  .

I understand this isn't 1:1 but I get

#7 importing cache manifest from local:11960011465921662817
#7 inferred cache manifest type: application/vnd.oci.image.index.v1+json done
#7 DONE 0.0s

This seems to be confirming that the cache mount is there, I don't get that log in CI.

kSzajo commented 5 months ago

I have same issue while using woodpecker buildx plugin https://woodpecker-ci.org/plugins/Docker%20Buildx

I have a following pipeline

  - name: frontend:build-and-publish
    image: woodpeckerci/plugin-docker-buildx:3.2.0
    settings:
      platforms: linux/amd64
      repo: gitea.example.com/user/repo-name/frontend
      tags_file:
        - .tags
      env_file:
        - .build-env
      registry: gitea.example.com
      username: user
      password:
        from_secret: token
      custom_dns:
        - 10.10.10.1
        - 8.8.8.8
      context: ./repo-name-fe
      dockerfile: repo-name-fe/Dockerfile
      cache_from: type=local,src=/tmp/docker-cache
      cache_to: type=local,dest=/tmp/docker-cache

which runs following

+ /usr/local/bin/dockerd --data-root /var/lib/docker --host=unix:///var/run/docker.sock --dns 10.10.10.1 --dns 8.8.8.8
 Version:           2[5](https://cicd.example.com/repos/1/pipeline/5/6#L5).0.4
 API version:       1.44
 Go version:        go1.21.8
 Git commit:        1a57[6](https://cicd.example.com/repos/1/pipeline/5/6#L6)c5
 Built:             Wed Mar  6 16:32:02 2024
 OS/Arch:           linux/amd64
 Context:           default

Server: Docker Engine - Community
 Engine:
  Version:          25.0.4
  API version:      1.44 (minimum version 1.24)
  Go version:       go1.21.8
  Git commit:       061aa95
  Built:            Wed Mar  6 15:36:46 2024
  OS/Arch:          linux/amd64
  Experimental:     false
 containerd:
  Version:          v1.[7](https://cicd.example.com/repos/1/pipeline/5/6#L7).13
  GitCommit:        7c3aca7a610df76212171d200ca3[8](https://cicd.example.com/repos/1/pipeline/5/6#L8)11ff60[9](https://cicd.example.com/repos/1/pipeline/5/6#L9)6eb8
 runc:
  Version:          1.1.12
  GitCommit:        v1.1.12-0-g51d5e94
 docker-init:
  Version:          0.19.0
  GitCommit:        de40ad0
+ /usr/local/bin/docker info
Client:
 Version:    25.0.4
 Context:    default
 Debug Mode: false
 Plugins:
  buildx: Docker Buildx (Docker Inc.)
    Version:  v0.13.0
    Path:     /usr/local/libexec/docker/cli-plugins/docker-buildx
  compose: Docker Compose (Docker Inc.)
    Version:  v2.24.7
    Path:     /usr/local/libexec/docker/cli-plugins/docker-compose

Server:
 Containers: 0
  Running: 0
  Paused: 0
  Stopped: 0
 Images: 0
 Server Version: 25.0.4
 Storage Driver: overlay2
  Backing Filesystem: extfs
  Supports d_type: true
  Using metacopy: false
  Native Overlay Diff: true
  userxattr: false
 Logging Driver: json-file
 Cgroup Driver: cgroupfs
 Cgroup Version: 2
 Plugins:
  Volume: local
  Network: bridge host ipvlan macvlan null overlay
  Log: awslogs fluentd gcplogs gelf journald json-file local splunk syslog
 Swarm: inactive
 Runtimes: io.containerd.runc.v2 runc
 Default Runtime: runc
 Init Binary: docker-init
 containerd version: 7c3aca7a6[10](https://cicd.example.com/repos/1/pipeline/5/6#L10)df76212171d200ca38[11](https://cicd.example.com/repos/1/pipeline/5/6#L11)ff6096eb8
 runc version: v1.1.[12](https://cicd.example.com/repos/1/pipeline/5/6#L12)-0-g51d5e94
 init version: de40ad0
 Security Options:
  seccomp
   Profile: builtin
  cgroupns
 Kernel Version: 5.15.0-101-generic
 Operating System: Alpine Linux v3.19
 OSType: linux
 Architecture: x86_64
 CPUs: 4
 Total Memory: 7.751GiB
 Name: 2fcf41bd946c
 ID: ec639642-b26d-4d33-b92b-3a69b1fbc120
 Docker Root Dir: /var/lib/docker
 Debug Mode: false
 Experimental: false
 Insecure Registries:
  127.0.0.0/8
 Live Restore Enabled: false
 Product License: Community Engine

+ /usr/local/bin/docker buildx create --use
clever_aryabhata
+ /usr/local/bin/docker buildx ls
NAME/NODE               DRIVER/ENDPOINT                   STATUS     BUILDKIT   PLATFORMS
clever_aryabhata*       docker-container                                        
 \_ clever_aryabhata0    \_ unix:///var/run/docker.sock   inactive              
default                 docker                                                  
 \_ default              \_ default                       running    v0.12.5    linux/amd64, linux/386
+ /usr/local/bin/docker buildx build --rm=true -f repo-name-fe/Dockerfile ./repo-name-fe --pull=true --cache-from type=local,src=/tmp/docker-cache --cache-to type=local,dest=/tmp/docker-cache --build-arg DOCKER_IMAGE_CREATED=2024-03-20T23:33:56Z --build-arg SOURCE_DATE_EPOCH=1710977256 --output type=image,push=true,rewrite-timestamp=true --platform linux/amd64 -t gitea.example.com/myuser/repo-name/frontend:latest -t gitea.example.com/myuser/repo-name/frontend:0.1.2 -t gitea.example.com/myuser/repo-name/frontend:d847576 --label org.opencontainers.image.created=2024-03-20T23:33:50Z --label org.opencontainers.image.source=https://gitea.example.com/myuser/repo-name.git --label org.opencontainers.image.url=https://gitea.example.com/myuser/repo-name --label org.opencontainers.image.revision=d84757693e7189a5bbfae9c667e58c6[13](https://cicd.example.com/repos/1/pipeline/5/6#L13)4cc37d3
#0 building with "clever_aryabhata" instance using docker-container driver

#1 [internal] booting buildkit
#1 pulling image moby/buildkit:buildx-stable-1
#1 pulling image moby/buildkit:buildx-stable-1 [22](https://cicd.example.com/repos/1/pipeline/5/6#L22).9s done
#1 creating container buildx_buildkit_clever_aryabhata0
#1 creating container buildx_buildkit_clever_aryabhata0 0.8s done
#1 DONE [23](https://cicd.example.com/repos/1/pipeline/5/6#L23).6s

#2 [internal] load build definition from Dockerfile
#2 transferring dockerfile: 7[70](https://cicd.example.com/repos/1/pipeline/5/6#L70)B done
#2 DONE 0.1s

[... steps logs ...]

#16 exporting to image
#16 exporting layers
#16 exporting layers 21.3s done
#16 rewriting layers with source-date-epoch 1710977256 (2024-03-20 23:27:36 +0000 UTC)
#16 rewriting layers with source-date-epoch 1710977256 (2024-03-20 23:27:36 +0000 UTC) 17.4s done
#16 exporting manifest sha256:b882daa29910a971f446bb49d3ed0b29f2d045be64dcda4742f5bc87a3c82fb5 0.0s done
#16 exporting config sha256:0b591a5f4ea7e1165dc3124ebcb0a2c78be0e4437dcb6e5b6894bb300e25ba73 0.0s done
#16 exporting attestation manifest sha256:18e5578173c7de0dc89fca3114491b84149147cf826e90ac7aedaad4b66442b2 0.0s done
#16 exporting manifest list sha256:e7692392632d993b8449dd8168f393ee82c268e43a43a84866062fc6f076c01c 0.0s done
#16 pushing layers
#16 ...

#17 [auth] *:: myuser/repo-name/frontend:pull,push token for gitea.example.com
#17 DONE 0.0s

#16 exporting to image
#16 pushing layers 1.2s done
#16 pushing manifest for gitea.example.com/myuser/repo-name/frontend:latest@sha256:e7692392632d993b8449dd8168f393ee82c268e43a43a84866062fc6f076c01c
#16 pushing manifest for gitea.example.com/myuser/repo-name/frontend:latest@sha256:e7692392632d993b8449dd8168f393ee82c268e43a43a84866062fc6f076c01c 0.1s done
#16 pushing layers 0.1s done
#16 pushing manifest for gitea.example.com/myuser/repo-name/frontend:0.1.2@sha256:e7692392632d993b8449dd8168f393ee82c268e43a43a84866062fc6f076c01c 0.0s done
#16 pushing layers 0.1s done
#16 pushing manifest for gitea.example.com/myuser/repo-name/frontend:d847576@sha256:e7692392632d993b8449dd8168f393ee82c268e43a43a84866062fc6f076c01c 0.0s done
#16 DONE 40.6s

#18 exporting cache to client directory
#18 preparing build cache for export
#18 writing layer sha256:0a31cd41b9386deacbfea8271ac595517861ae4af77fea38f586511e476a45c0
#18 writing layer sha256:0a31cd41b9386deacbfea8271ac595517861ae4af77fea38f586511e476a45c0 1.3s done
#18 writing layer sha256:3f72a72846173b6a02c1f73db9a74aca2af50fb39bf13ba2e4d12d13e5722d6c
#18 writing layer sha256:3f72a72846173b6a02c1f73db9a74aca2af50fb39bf13ba2e4d12d13e5722d6c 0.0s done
#18 writing layer sha256:4abcf20661432fb2d719aaf90656f55c287f8ca915dc1c92ec14ff61e67fbaf8 0.1s done
#18 writing layer sha256:7c215e7ef3945bd4fdac5a20f1e4a29c62f28c8493ad05d3e651d62cf069140d
#18 writing layer sha256:7c215e7ef3945bd4fdac5a20f1e4a29c62f28c8493ad05d3e651d62cf069140d 0.1s done
#18 writing layer sha256:ac94fbabe772e012cbc761da39548763cf63e9356e7db67427b5c86e2ff66674
#18 writing layer sha256:ac94fbabe772e012cbc761da39548763cf63e9356e7db67427b5c86e2ff66674 0.0s done
#18 writing layer sha256:bdd42133c604d646ca308b476ea000956ff9609dcb42c318d7f602f3fc966cc5
#18 writing layer sha256:bdd42133c604d646ca308b476ea000956ff9609dcb42c318d7f602f3fc966cc5 0.9s done
#18 writing layer sha256:c7835c9c0750cafd645efc0d33d45a43834bab99d437fee411b7482334ee6633
#18 writing layer sha256:c7835c9c0750cafd645efc0d33d45a43834bab99d437fee411b7482334ee6633 0.0s done
#18 writing layer sha256:ff171c16ee4e8ed3a0ae3edb6fb9558f281134a3879eedca7d79fc2e16e46073
#18 writing layer sha256:ff171c16ee4e8ed3a0ae3edb6fb9558f281134a3879eedca7d79fc2e16e46073 1.8s done
#18 writing config sha256:f3e63659748cbb197672e9a2eda3a455485e79797bc36c361abe75cc1e71c4c8
#18 writing config sha256:f3e63659748cbb197672e9a2eda3a455485e79797bc36c361abe75cc1e71c4c8 9.8s done
#18 writing cache manifest sha256:c731e3cc156b74ec199953d06008753e4ecadf9fb3722abcfc64ec01b5d64063
#18 preparing build cache for export 26.8s done
#18 writing cache manifest sha256:c731e3cc156b74ec199953d06008753e4ecadf9fb3722abcfc64ec01b5d64063 12.6s done
#18 DONE 26.8s
WARNING: local cache import at /tmp/docker-cache not found due to err: could not read /tmp/docker-cache/index.json: open /tmp/docker-cache/index.json: no such file or directory

This woodpecker-agent is a docker service with following compose setup

services:
  cicd:
    image: woodpeckerci/woodpecker-server:latest
    container_name: woodpecker-server
    restart: unless-stopped
    dns:
      - 10.10.10.1
      - 8.8.8.8
    volumes:
      - ./woodpecker-server-data:/var/lib/woodpecker/
    environment:
      - WOODPECKER_OPEN=$WOODPECKER_OPEN
      - WOODPECKER_HOST=$WOODPECKER_HOST
      - WOODPECKER_GITEA=$WOODPECKER_GITEA
      - WOODPECKER_GITEA_URL=$WOODPECKER_GITEA_URL
      - WOODPECKER_LOG_LEVEL=$WOODPECKER_LOG_LEVEL
      - WOODPECKER_GITEA_CLIENT=$WOODPECKER_GITEA_CLIENT
      - WOODPECKER_GITEA_SECRET=$WOODPECKER_GITEA_SECRET
      - WOODPECKER_AGENT_SECRET=$WOODPECKER_AGENT_SECRET

  woodpecker-agent:
    container_name: woodpecker-agent
    image: woodpeckerci/woodpecker-agent:latest
    dns:
      - 10.10.10.1
      - 8.8.8.8
    command: agent
    restart: unless-stopped
    depends_on:
      - cicd
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
      - woodpecker-cache:/tmp/docker-cache
    environment:
      - WOODPECKER_SERVER=cicd:9000
      - WOODPECKER_AGENT_SECRET=$WOODPECKER_AGENT_SECRET

volumes:
  woodpecker-cache:

I mounted cache: woodpecker-cache:/tmp/docker-cache

I know that its different piece of software but it is still using same tool under the hood