microsoft / playwright

Playwright is a framework for Web Testing and Automation. It allows testing Chromium, Firefox and WebKit with a single API.
https://playwright.dev
Apache License 2.0
67.22k stars 3.7k forks source link

[BUG] Fails in Github Action Workflow, Error: Process completed with exit code 1. #21048

Closed hreynier closed 1 year ago

hreynier commented 1 year ago

Context:

System:

Code Snippet//Bug Description I can run my playwright tests locally using this script in one of my workspaces

 "test:web-import-visual": "playwright test -c playwright-visual.config.ts && npx playwright show-report",

But when I try to run this in a workflow through github actions, I get a very nondescript error Error: Process completed with exit code 1.

The workflow file.

name: Visual Regression Tests
on:
  pull_request:
    branches:
      - '*'
jobs:
  Visual-Regression-Test:
    timeout-minutes: 60
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: set-up node
        uses: actions/setup-node@v3
        with:
          node-version: '19.5.0'
      - name: Install dependencies
        run: |
          npm install
          (cd backend/multiplayer-server && npm install)
          (cd frontend && npm install)
      - name: Install Playwright Browsers
        run: |
          cd shared/document
          npx playwright install --with-deps
      - name: Run Playwright Visual Regression Tests
        run: cd shared/document && npx playwright test -c playwright-visual.config.ts
      - name: Check test output against baseline
        run: |
          total_tests_current=$(grep "Total Tests in Suite:" test-summary/summary.txt | awk '{print $5}')
          failed_tests_current=$(grep "Tests Failed:" test-summary/summary.txt | awk '{print $3}')
          total_tests_baseline=$(grep "Total Tests in Suite:" test-summary/baseline.txt | awk '{print $5}')
          failed_tests_baseline=$(grep "Tests Failed:" test-summary/baseline.txt | awk '{print $3}')
          if [ "$failed_tests_current" -gt "$failed_tests_baseline" ] && [ "$total_tests_current" -eq "$total_tests_baseline" ]; then
              echo "Total tests ran: $total_tests_current, Total ran yesterday: $total_tests_baseline ."
              echo "More tests failed than expected: $failed_tests_current, expected: $failed_tests_baseline ."
              echo "Marked as failed due to regression in passing tests."
              exit 1
          elif [ "$total_tests_current" -ne "$total_tests_baseline" ]; then
              echo "Total tests ran is different that expected: $total_tests_current, expected: $total_tests_baseline ."
              echo "Failed tests: $failed_tests_current, expected: $failed_tests_baseline ."
              echo "Marked as passing due to changed number of tests."
              exit 0
          else
              echo "Total tests ran: $total_tests_current, expected: $total_tests_baseline ."
              echo "Failed tests: $failed_tests_current, expected: $failed_tests_baseline ."
              echo "Marked as passing."
              exit 0
          fi
      - name: Upload Playwright HTML Report
        uses: actions/upload-artifact@v3
        if: always()
        with:
          name: playwright-report
          path: shared/document/playwright-report
          retention-days: 30

My config file is as so:

const config: PlaywrightTestConfig = {
  testDir: './testing/import-export/web/',
  /* The base directory, relative to the config file, for snapshot files created with toMatchSnapshot and toHaveScreenshot. */
  snapshotDir: './testing/import-export/web/snapshots',
  /* Maximum time one test can run for. */
  timeout: process.env.CI ? 30 * 1000 : 10 * 1000,
  /* Run tests in files in parallel */
  fullyParallel: true,
  /* Fail the build on CI if you accidentally left test.only in the source code. */
  // forbidOnly: !!process.env.CI,
  /* Retry on CI only */
  retries: process.env.CI ? 1 : 0,
  /* Opt out of parallel tests on CI. */
  workers: process.env.CI ? 1 : undefined,
  /* Reporter to use. See https://playwright.dev/docs/test-reporters */
  reporter: [
    [
      '@skilbourn/playwright-report-summary',
      {
        outputFile: './testing/import-export/web/test-summary/summary.txt',
        inputTemplate: CustomReport,
      },
    ],
    ['html', { open: 'never' }],
  ],
  /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
  use: {
    /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
    trace: 'on-first-retry',

    /* Port to use for Playwright component endpoint. */
    ctPort: 3100,
  },

  /* Configure projects for major browsers */
  projects: [
    {
      name: 'chromium',
      use: {
        ...devices['Desktop Chrome'],
      },
    },
    {
      name: 'firefox',
      use: {
        ...devices['Desktop Firefox'],
      },
    },
    {
      name: 'webkit',
      use: {
        ...devices['Desktop Safari'],
      },
    },
  ],
};

export default config;

I'm fairly new to Playwright and Github Actions, so forgive me if I'm missing something obvious. Is there a better way to debug? Currently, the html report that is generated by the github action just shows the tests that I'm skipping. This works fine locally. I've also tried to replace the line cd shared/document && npx playwright test -c playwright-visual.config.ts with cd shared/document && npm run test:web-import-visual but I get the error

npm ERR! Lifecycle script `test:web-import-visual` failed with error: 
npm ERR! Error: command failed 
npm ERR!   in workspace: @lottielab/document@1.0.0 
npm ERR!   at location: /home/runner/work/lottielab/lottielab/shared/document
yury-s commented 1 year ago

But when I try to run this in a workflow through github actions, I get a very nondescript error Error: Process completed with exit code 1.

I assume this is printed in "Run Playwright Visual Regression Tests" step. Try splitting the line to rule out failure in cd shared/document, playwright usually prints why it exists with non-0 code.

Can you share sample log where the workflow is failing and the source of the project? At first glance it sounds like a GHA config issue.

hreynier commented 1 year ago

Thanks for replying Yury, I can't share the source of the project unfortunately, but here is the log file. I tried splitting the command as well as adding a log in one of the tests. I see the console.log output in the logfile as Starting tests.

2023-02-22T10:26:10.5600214Z Requested labels: ubuntu-latest
2023-02-22T10:26:10.5600267Z Job defined at: lottielab/lottielab/.github/workflows/visual-regression-tests.yml@refs/pull/518/merge
2023-02-22T10:26:10.5600297Z Waiting for a runner to pick up this job...
2023-02-22T10:26:11.5474351Z Job is waiting for a hosted runner to come online.
2023-02-22T10:26:16.1908839Z Job is about to start running on the hosted runner: Hosted Agent (hosted)
2023-02-22T10:26:20.3017254Z Current runner version: '2.301.1'
2023-02-22T10:26:20.3043561Z ##[group]Operating System
2023-02-22T10:26:20.3044108Z Ubuntu
2023-02-22T10:26:20.3044336Z 22.04.1
2023-02-22T10:26:20.3044612Z LTS
2023-02-22T10:26:20.3044963Z ##[endgroup]
2023-02-22T10:26:20.3045247Z ##[group]Runner Image
2023-02-22T10:26:20.3045588Z Image: ubuntu-22.04
2023-02-22T10:26:20.3045898Z Version: 20230217.1
2023-02-22T10:26:20.3046354Z Included Software: https://github.com/actions/runner-images/blob/ubuntu22/20230217.1/images/linux/Ubuntu2204-Readme.md
2023-02-22T10:26:20.3047004Z Image Release: https://github.com/actions/runner-images/releases/tag/ubuntu22%2F20230217.1
2023-02-22T10:26:20.3047437Z ##[endgroup]
2023-02-22T10:26:20.3047725Z ##[group]Runner Image Provisioner
2023-02-22T10:26:20.3048055Z 2.0.117.1
2023-02-22T10:26:20.3048344Z ##[endgroup]
2023-02-22T10:26:20.3049253Z ##[group]GITHUB_TOKEN Permissions
2023-02-22T10:26:20.3049905Z Actions: write
2023-02-22T10:26:20.3050167Z Checks: write
2023-02-22T10:26:20.3050676Z Contents: write
2023-02-22T10:26:20.3051004Z Deployments: write
2023-02-22T10:26:20.3051321Z Discussions: write
2023-02-22T10:26:20.3051624Z Issues: write
2023-02-22T10:26:20.3051889Z Metadata: read
2023-02-22T10:26:20.3052222Z Packages: write
2023-02-22T10:26:20.3052522Z Pages: write
2023-02-22T10:26:20.3052784Z PullRequests: write
2023-02-22T10:26:20.3053122Z RepositoryProjects: write
2023-02-22T10:26:20.3053507Z SecurityEvents: write
2023-02-22T10:26:20.3053782Z Statuses: write
2023-02-22T10:26:20.3054079Z ##[endgroup]
2023-02-22T10:26:20.3057572Z Secret source: Actions
2023-02-22T10:26:20.3058033Z Prepare workflow directory
2023-02-22T10:26:20.3875421Z Prepare all required actions
2023-02-22T10:26:20.4064736Z Getting action download info
2023-02-22T10:26:20.6901027Z Download action repository 'actions/checkout@v3' (SHA:ac593985615ec2ede58e132d2e21d2b1cbd6127c)
2023-02-22T10:26:20.9725730Z Download action repository 'actions/setup-node@v3' (SHA:64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c)
2023-02-22T10:26:21.2631807Z Download action repository 'actions/upload-artifact@v3' (SHA:0b7f8abb1508181956e8e162db84b466c27e18ce)
2023-02-22T10:26:21.5860395Z Complete job name: Visual-Regression-Test
2023-02-22T10:26:21.6760048Z ##[group]Run actions/checkout@v3
2023-02-22T10:26:21.6760362Z with:
2023-02-22T10:26:21.6760603Z   repository: lottielab/lottielab
2023-02-22T10:26:21.6761065Z   token: ***
2023-02-22T10:26:21.6761286Z   ssh-strict: true
2023-02-22T10:26:21.6761535Z   persist-credentials: true
2023-02-22T10:26:21.6761769Z   clean: true
2023-02-22T10:26:21.6761982Z   fetch-depth: 1
2023-02-22T10:26:21.6762192Z   lfs: false
2023-02-22T10:26:21.6762395Z   submodules: false
2023-02-22T10:26:21.6762634Z   set-safe-directory: true
2023-02-22T10:26:21.6762884Z ##[endgroup]
2023-02-22T10:26:21.9361186Z Syncing repository: lottielab/lottielab
2023-02-22T10:26:21.9362899Z ##[group]Getting Git version info
2023-02-22T10:26:21.9363412Z Working directory is '/home/runner/work/lottielab/lottielab'
2023-02-22T10:26:21.9363956Z [command]/usr/bin/git version
2023-02-22T10:26:21.9464618Z git version 2.39.2
2023-02-22T10:26:21.9491414Z ##[endgroup]
2023-02-22T10:26:21.9508586Z Temporarily overriding HOME='/home/runner/work/_temp/db42a279-e6e6-433d-8b5e-7cc1aaff142d' before making global git config changes
2023-02-22T10:26:21.9509514Z Adding repository directory to the temporary git global config as a safe directory
2023-02-22T10:26:21.9515048Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/lottielab/lottielab
2023-02-22T10:26:21.9561408Z Deleting the contents of '/home/runner/work/lottielab/lottielab'
2023-02-22T10:26:21.9566999Z ##[group]Initializing the repository
2023-02-22T10:26:21.9571283Z [command]/usr/bin/git init /home/runner/work/lottielab/lottielab
2023-02-22T10:26:21.9635935Z hint: Using 'master' as the name for the initial branch. This default branch name
2023-02-22T10:26:21.9636640Z hint: is subject to change. To configure the initial branch name to use in all
2023-02-22T10:26:21.9637691Z hint: of your new repositories, which will suppress this warning, call:
2023-02-22T10:26:21.9638367Z hint: 
2023-02-22T10:26:21.9639283Z hint:  git config --global init.defaultBranch <name>
2023-02-22T10:26:21.9639772Z hint: 
2023-02-22T10:26:21.9640662Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
2023-02-22T10:26:21.9641309Z hint: 'development'. The just-created branch can be renamed via this command:
2023-02-22T10:26:21.9642114Z hint: 
2023-02-22T10:26:21.9642535Z hint:  git branch -m <name>
2023-02-22T10:26:21.9646372Z Initialized empty Git repository in /home/runner/work/lottielab/lottielab/.git/
2023-02-22T10:26:21.9657173Z [command]/usr/bin/git remote add origin https://github.com/lottielab/lottielab
2023-02-22T10:26:21.9695722Z ##[endgroup]
2023-02-22T10:26:21.9696395Z ##[group]Disabling automatic garbage collection
2023-02-22T10:26:21.9699769Z [command]/usr/bin/git config --local gc.auto 0
2023-02-22T10:26:21.9730966Z ##[endgroup]
2023-02-22T10:26:21.9731577Z ##[group]Setting up auth
2023-02-22T10:26:21.9738216Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2023-02-22T10:26:21.9771404Z [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-02-22T10:26:22.0093636Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2023-02-22T10:26:22.0118107Z [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-02-22T10:26:22.0335695Z [command]/usr/bin/git config --local http.https://github.com/.extraheader AUTHORIZATION: basic ***
2023-02-22T10:26:22.0367887Z ##[endgroup]
2023-02-22T10:26:22.0368603Z ##[group]Fetching the repository
2023-02-22T10:26:22.0377765Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin +46aa48a0e48d24ba1a72756a087dd767176c0b3c:refs/remotes/pull/518/merge
2023-02-22T10:26:22.3265840Z remote: Enumerating objects: 2346, done.        
2023-02-22T10:26:22.3316507Z remote: Counting objects:   0% (1/2346)        
2023-02-22T10:26:22.3316989Z remote: Counting objects:   1% (24/2346)        
2023-02-22T10:26:22.3317754Z remote: Counting objects:   2% (47/2346)        
2023-02-22T10:26:22.3318271Z remote: Counting objects:   3% (71/2346)        
2023-02-22T10:26:22.3318861Z remote: Counting objects:   4% (94/2346)        
2023-02-22T10:26:22.3319458Z remote: Counting objects:   5% (118/2346)        
2023-02-22T10:26:22.3320165Z remote: Counting objects:   6% (141/2346)        
2023-02-22T10:26:22.3320820Z remote: Counting objects:   7% (165/2346)        
2023-02-22T10:26:22.3321397Z remote: Counting objects:   8% (188/2346)        
2023-02-22T10:26:22.3322000Z remote: Counting objects:   9% (212/2346)        
2023-02-22T10:26:22.3322613Z remote: Counting objects:  10% (235/2346)        
2023-02-22T10:26:22.3323227Z remote: Counting objects:  11% (259/2346)        
2023-02-22T10:26:22.3323931Z remote: Counting objects:  12% (282/2346)        
2023-02-22T10:26:22.3324505Z remote: Counting objects:  13% (305/2346)        
2023-02-22T10:26:22.3325084Z remote: Counting objects:  14% (329/2346)        
2023-02-22T10:26:22.3325689Z remote: Counting objects:  15% (352/2346)        
2023-02-22T10:26:22.3326253Z remote: Counting objects:  16% (376/2346)        
2023-02-22T10:26:22.3326836Z remote: Counting objects:  17% (399/2346)        
2023-02-22T10:26:22.3327419Z remote: Counting objects:  18% (423/2346)        
2023-02-22T10:26:22.3328024Z remote: Counting objects:  19% (446/2346)        
2023-02-22T10:26:22.3328585Z remote: Counting objects:  20% (470/2346)        
2023-02-22T10:26:22.3329150Z remote: Counting objects:  21% (493/2346)        
2023-02-22T10:26:22.3329707Z remote: Counting objects:  22% (517/2346)        
2023-02-22T10:26:22.3330240Z remote: Counting objects:  23% (540/2346)        
2023-02-22T10:26:22.3330864Z remote: Counting objects:  24% (564/2346)        
2023-02-22T10:26:22.3331443Z remote: Counting objects:  25% (587/2346)        
2023-02-22T10:26:22.3332016Z remote: Counting objects:  26% (610/2346)        
2023-02-22T10:26:22.3332577Z remote: Counting objects:  27% (634/2346)        
2023-02-22T10:26:22.3333236Z remote: Counting objects:  28% (657/2346)        
2023-02-22T10:26:22.3333803Z remote: Counting objects:  29% (681/2346)        
2023-02-22T10:26:22.3334369Z remote: Counting objects:  30% (704/2346)        
2023-02-22T10:26:22.3334925Z remote: Counting objects:  31% (728/2346)        
2023-02-22T10:26:22.3335527Z remote: Counting objects:  32% (751/2346)        
2023-02-22T10:26:22.3336129Z remote: Counting objects:  33% (775/2346)        
2023-02-22T10:26:22.3336734Z remote: Counting objects:  34% (798/2346)        
2023-02-22T10:26:22.3337356Z remote: Counting objects:  35% (822/2346)        
2023-02-22T10:26:22.3337931Z remote: Counting objects:  36% (845/2346)        
2023-02-22T10:26:22.3338513Z remote: Counting objects:  37% (869/2346)        
2023-02-22T10:26:22.3339073Z remote: Counting objects:  38% (892/2346)        
2023-02-22T10:26:22.3339619Z remote: Counting objects:  39% (915/2346)        
2023-02-22T10:26:22.3340220Z remote: Counting objects:  40% (939/2346)        
2023-02-22T10:26:22.3340797Z remote: Counting objects:  41% (962/2346)        
2023-02-22T10:26:22.3341359Z remote: Counting objects:  42% (986/2346)        
2023-02-22T10:26:22.3341934Z remote: Counting objects:  43% (1009/2346)        
2023-02-22T10:26:22.3342552Z remote: Counting objects:  44% (1033/2346)        
2023-02-22T10:26:22.3343160Z remote: Counting objects:  45% (1056/2346)        
2023-02-22T10:26:22.3346922Z remote: Counting objects:  46% (1080/2346)        
2023-02-22T10:26:22.3347229Z remote: Counting objects:  47% (1103/2346)        
2023-02-22T10:26:22.3347503Z remote: Counting objects:  48% (1127/2346)        
2023-02-22T10:26:22.3347793Z remote: Counting objects:  49% (1150/2346)        
2023-02-22T10:26:22.3348064Z remote: Counting objects:  50% (1173/2346)        
2023-02-22T10:26:22.3348467Z remote: Counting objects:  51% (1197/2346)        
2023-02-22T10:26:22.3348746Z remote: Counting objects:  52% (1220/2346)        
2023-02-22T10:26:22.3349023Z remote: Counting objects:  53% (1244/2346)        
2023-02-22T10:26:22.3349286Z remote: Counting objects:  54% (1267/2346)        
2023-02-22T10:26:22.3349550Z remote: Counting objects:  55% (1291/2346)        
2023-02-22T10:26:22.3349824Z remote: Counting objects:  56% (1314/2346)        
2023-02-22T10:26:22.3350084Z remote: Counting objects:  57% (1338/2346)        
2023-02-22T10:26:22.3350356Z remote: Counting objects:  58% (1361/2346)        
2023-02-22T10:26:22.3350623Z remote: Counting objects:  59% (1385/2346)        
2023-02-22T10:26:22.3350878Z remote: Counting objects:  60% (1408/2346)        
2023-02-22T10:26:22.3351147Z remote: Counting objects:  61% (1432/2346)        
2023-02-22T10:26:22.3351563Z remote: Counting objects:  62% (1455/2346)        
2023-02-22T10:26:22.3351830Z remote: Counting objects:  63% (1478/2346)        
2023-02-22T10:26:22.3352091Z remote: Counting objects:  64% (1502/2346)        
2023-02-22T10:26:22.3352367Z remote: Counting objects:  65% (1525/2346)        
2023-02-22T10:26:22.3352640Z remote: Counting objects:  66% (1549/2346)        
2023-02-22T10:26:22.3352904Z remote: Counting objects:  67% (1572/2346)        
2023-02-22T10:26:22.3353163Z remote: Counting objects:  68% (1596/2346)        
2023-02-22T10:26:22.3353427Z remote: Counting objects:  69% (1619/2346)        
2023-02-22T10:26:22.3353701Z remote: Counting objects:  70% (1643/2346)        
2023-02-22T10:26:22.3353957Z remote: Counting objects:  71% (1666/2346)        
2023-02-22T10:26:22.3354232Z remote: Counting objects:  72% (1690/2346)        
2023-02-22T10:26:22.3354504Z remote: Counting objects:  73% (1713/2346)        
2023-02-22T10:26:22.3354769Z remote: Counting objects:  74% (1737/2346)        
2023-02-22T10:26:22.3355097Z remote: Counting objects:  75% (1760/2346)        
2023-02-22T10:26:22.3355361Z remote: Counting objects:  76% (1783/2346)        
2023-02-22T10:26:22.3355623Z remote: Counting objects:  77% (1807/2346)        
2023-02-22T10:26:22.3355880Z remote: Counting objects:  78% (1830/2346)        
2023-02-22T10:26:22.3356139Z remote: Counting objects:  79% (1854/2346)        
2023-02-22T10:26:22.3356397Z remote: Counting objects:  80% (1877/2346)        
2023-02-22T10:26:22.3356649Z remote: Counting objects:  81% (1901/2346)        
2023-02-22T10:26:22.3356910Z remote: Counting objects:  82% (1924/2346)        
2023-02-22T10:26:22.3357169Z remote: Counting objects:  83% (1948/2346)        
2023-02-22T10:26:22.3357425Z remote: Counting objects:  84% (1971/2346)        
2023-02-22T10:26:22.3357683Z remote: Counting objects:  85% (1995/2346)        
2023-02-22T10:26:22.3357944Z remote: Counting objects:  86% (2018/2346)        
2023-02-22T10:26:22.3358204Z remote: Counting objects:  87% (2042/2346)        
2023-02-22T10:26:22.3358461Z remote: Counting objects:  88% (2065/2346)        
2023-02-22T10:26:22.3358727Z remote: Counting objects:  89% (2088/2346)        
2023-02-22T10:26:22.3358990Z remote: Counting objects:  90% (2112/2346)        
2023-02-22T10:26:22.3359244Z remote: Counting objects:  91% (2135/2346)        
2023-02-22T10:26:22.3359505Z remote: Counting objects:  92% (2159/2346)        
2023-02-22T10:26:22.3359764Z remote: Counting objects:  93% (2182/2346)        
2023-02-22T10:26:22.3360018Z remote: Counting objects:  94% (2206/2346)        
2023-02-22T10:26:22.3360280Z remote: Counting objects:  95% (2229/2346)        
2023-02-22T10:26:22.3360547Z remote: Counting objects:  96% (2253/2346)        
2023-02-22T10:26:22.3360807Z remote: Counting objects:  97% (2276/2346)        
2023-02-22T10:26:22.3361058Z remote: Counting objects:  98% (2300/2346)        
2023-02-22T10:26:22.3361316Z remote: Counting objects:  99% (2323/2346)        
2023-02-22T10:26:22.3361577Z remote: Counting objects: 100% (2346/2346)        
2023-02-22T10:26:22.3361862Z remote: Counting objects: 100% (2346/2346), done.        
2023-02-22T10:26:22.3362222Z remote: Compressing objects:   0% (1/1966)        
2023-02-22T10:26:22.3362512Z remote: Compressing objects:   1% (20/1966)        
2023-02-22T10:26:22.3362798Z remote: Compressing objects:   2% (40/1966)        
2023-02-22T10:26:22.3368636Z remote: Compressing objects:   3% (59/1966)        
2023-02-22T10:26:22.5481717Z remote: Compressing objects:   4% (79/1966)        
2023-02-22T10:26:22.5482312Z remote: Compressing objects:   5% (99/1966)        
2023-02-22T10:26:22.5484348Z remote: Compressing objects:   6% (118/1966)        
2023-02-22T10:26:22.5497655Z remote: Compressing objects:   7% (138/1966)        
2023-02-22T10:26:22.5520605Z remote: Compressing objects:   8% (158/1966)        
2023-02-22T10:26:22.5524446Z remote: Compressing objects:   9% (177/1966)        
2023-02-22T10:26:22.5536610Z remote: Compressing objects:  10% (197/1966)        
2023-02-22T10:26:22.5552597Z remote: Compressing objects:  11% (217/1966)        
2023-02-22T10:26:22.5570424Z remote: Compressing objects:  12% (236/1966)        
2023-02-22T10:26:22.5608833Z remote: Compressing objects:  13% (256/1966)        
2023-02-22T10:26:22.5666517Z remote: Compressing objects:  14% (276/1966)        
2023-02-22T10:26:22.5751373Z remote: Compressing objects:  15% (295/1966)        
2023-02-22T10:26:22.5801280Z remote: Compressing objects:  16% (315/1966)        
2023-02-22T10:26:22.5825205Z remote: Compressing objects:  17% (335/1966)        
2023-02-22T10:26:22.5877231Z remote: Compressing objects:  18% (354/1966)        
2023-02-22T10:26:22.5911014Z remote: Compressing objects:  19% (374/1966)        
2023-02-22T10:26:22.5953286Z remote: Compressing objects:  20% (394/1966)        
2023-02-22T10:26:22.6499015Z remote: Compressing objects:  21% (413/1966)        
2023-02-22T10:26:22.6594882Z remote: Compressing objects:  22% (433/1966)        
2023-02-22T10:26:22.6625748Z remote: Compressing objects:  23% (453/1966)        
2023-02-22T10:26:22.6640713Z remote: Compressing objects:  24% (472/1966)        
2023-02-22T10:26:22.8049946Z remote: Compressing objects:  25% (492/1966)        
2023-02-22T10:26:23.1032852Z remote: Compressing objects:  26% (512/1966)        
2023-02-22T10:26:23.1275555Z remote: Compressing objects:  27% (531/1966)        
2023-02-22T10:26:23.1277698Z remote: Compressing objects:  28% (551/1966)        
2023-02-22T10:26:23.1287557Z remote: Compressing objects:  29% (571/1966)        
2023-02-22T10:26:23.1300445Z remote: Compressing objects:  30% (590/1966)        
2023-02-22T10:26:23.1316339Z remote: Compressing objects:  31% (610/1966)        
2023-02-22T10:26:23.2303590Z remote: Compressing objects:  32% (630/1966)        
2023-02-22T10:26:23.2349259Z remote: Compressing objects:  33% (649/1966)        
2023-02-22T10:26:23.2369520Z remote: Compressing objects:  34% (669/1966)        
2023-02-22T10:26:23.2392666Z remote: Compressing objects:  35% (689/1966)        
2023-02-22T10:26:23.2393974Z remote: Compressing objects:  36% (708/1966)        
2023-02-22T10:26:23.2394251Z remote: Compressing objects:  37% (728/1966)        
2023-02-22T10:26:23.2394530Z remote: Compressing objects:  38% (748/1966)        
2023-02-22T10:26:23.2394787Z remote: Compressing objects:  39% (767/1966)        
2023-02-22T10:26:23.2395026Z remote: Compressing objects:  40% (787/1966)        
2023-02-22T10:26:23.2395285Z remote: Compressing objects:  41% (807/1966)        
2023-02-22T10:26:23.2395534Z remote: Compressing objects:  42% (826/1966)        
2023-02-22T10:26:23.2395773Z remote: Compressing objects:  43% (846/1966)        
2023-02-22T10:26:23.2396021Z remote: Compressing objects:  44% (866/1966)        
2023-02-22T10:26:23.2399291Z remote: Compressing objects:  45% (885/1966)        
2023-02-22T10:26:23.2401336Z remote: Compressing objects:  46% (905/1966)        
2023-02-22T10:26:23.2404207Z remote: Compressing objects:  47% (925/1966)        
2023-02-22T10:26:23.2404476Z remote: Compressing objects:  48% (944/1966)        
2023-02-22T10:26:23.2404737Z remote: Compressing objects:  49% (964/1966)        
2023-02-22T10:26:23.2407465Z remote: Compressing objects:  50% (983/1966)        
2023-02-22T10:26:23.2408721Z remote: Compressing objects:  51% (1003/1966)        
2023-02-22T10:26:23.2408990Z remote: Compressing objects:  52% (1023/1966)        
2023-02-22T10:26:23.2542687Z remote: Compressing objects:  53% (1042/1966)        
2023-02-22T10:26:23.3066099Z remote: Compressing objects:  54% (1062/1966)        
2023-02-22T10:26:23.3262835Z remote: Compressing objects:  55% (1082/1966)        
2023-02-22T10:26:23.3267763Z remote: Compressing objects:  55% (1100/1966)        
2023-02-22T10:26:23.3302610Z remote: Compressing objects:  56% (1101/1966)        
2023-02-22T10:26:23.3316839Z remote: Compressing objects:  57% (1121/1966)        
2023-02-22T10:26:23.3323639Z remote: Compressing objects:  58% (1141/1966)        
2023-02-22T10:26:23.3341840Z remote: Compressing objects:  59% (1160/1966)        
2023-02-22T10:26:23.3357333Z remote: Compressing objects:  60% (1180/1966)        
2023-02-22T10:26:23.3363339Z remote: Compressing objects:  61% (1200/1966)        
2023-02-22T10:26:23.3374099Z remote: Compressing objects:  62% (1219/1966)        
2023-02-22T10:26:23.3409892Z remote: Compressing objects:  63% (1239/1966)        
2023-02-22T10:26:23.3410145Z remote: Compressing objects:  64% (1259/1966)        
2023-02-22T10:26:23.3412749Z remote: Compressing objects:  65% (1278/1966)        
2023-02-22T10:26:23.3418333Z remote: Compressing objects:  66% (1298/1966)        
2023-02-22T10:26:23.3430735Z remote: Compressing objects:  67% (1318/1966)        
2023-02-22T10:26:23.3444081Z remote: Compressing objects:  68% (1337/1966)        
2023-02-22T10:26:23.3453064Z remote: Compressing objects:  69% (1357/1966)        
2023-02-22T10:26:23.3469201Z remote: Compressing objects:  70% (1377/1966)        
2023-02-22T10:26:23.3474332Z remote: Compressing objects:  71% (1396/1966)        
2023-02-22T10:26:23.3479698Z remote: Compressing objects:  72% (1416/1966)        
2023-02-22T10:26:23.3479966Z remote: Compressing objects:  73% (1436/1966)        
2023-02-22T10:26:23.3482275Z remote: Compressing objects:  74% (1455/1966)        
2023-02-22T10:26:23.3491762Z remote: Compressing objects:  75% (1475/1966)        
2023-02-22T10:26:23.3497803Z remote: Compressing objects:  76% (1495/1966)        
2023-02-22T10:26:23.3522797Z remote: Compressing objects:  77% (1514/1966)        
2023-02-22T10:26:23.3539758Z remote: Compressing objects:  78% (1534/1966)        
2023-02-22T10:26:23.3540032Z remote: Compressing objects:  79% (1554/1966)        
2023-02-22T10:26:23.3546300Z remote: Compressing objects:  80% (1573/1966)        
2023-02-22T10:26:23.3556170Z remote: Compressing objects:  81% (1593/1966)        
2023-02-22T10:26:23.3556467Z remote: Compressing objects:  82% (1613/1966)        
2023-02-22T10:26:23.3599054Z remote: Compressing objects:  83% (1632/1966)        
2023-02-22T10:26:23.3599348Z remote: Compressing objects:  84% (1652/1966)        
2023-02-22T10:26:23.3599617Z remote: Compressing objects:  85% (1672/1966)        
2023-02-22T10:26:23.3599873Z remote: Compressing objects:  86% (1691/1966)        
2023-02-22T10:26:23.3600107Z remote: Compressing objects:  87% (1711/1966)        
2023-02-22T10:26:23.3600357Z remote: Compressing objects:  88% (1731/1966)        
2023-02-22T10:26:23.3600599Z remote: Compressing objects:  89% (1750/1966)        
2023-02-22T10:26:23.3600830Z remote: Compressing objects:  90% (1770/1966)        
2023-02-22T10:26:23.3601071Z remote: Compressing objects:  91% (1790/1966)        
2023-02-22T10:26:23.3601311Z remote: Compressing objects:  92% (1809/1966)        
2023-02-22T10:26:23.3601543Z remote: Compressing objects:  93% (1829/1966)        
2023-02-22T10:26:23.3601779Z remote: Compressing objects:  94% (1849/1966)        
2023-02-22T10:26:23.3602021Z remote: Compressing objects:  95% (1868/1966)        
2023-02-22T10:26:23.3602258Z remote: Compressing objects:  96% (1888/1966)        
2023-02-22T10:26:23.3602492Z remote: Compressing objects:  97% (1908/1966)        
2023-02-22T10:26:23.3602868Z remote: Compressing objects:  98% (1927/1966)        
2023-02-22T10:26:23.3603118Z remote: Compressing objects:  99% (1947/1966)        
2023-02-22T10:26:23.3603350Z remote: Compressing objects: 100% (1966/1966)        
2023-02-22T10:26:23.3603616Z remote: Compressing objects: 100% (1966/1966), done.        
2023-02-22T10:26:23.3643538Z Receiving objects:   0% (1/2346)
2023-02-22T10:26:23.3654956Z Receiving objects:   1% (24/2346)
2023-02-22T10:26:23.5246443Z Receiving objects:   2% (47/2346)
2023-02-22T10:26:23.6026266Z Receiving objects:   3% (71/2346)
2023-02-22T10:26:23.6032003Z Receiving objects:   4% (94/2346)
2023-02-22T10:26:23.6036753Z Receiving objects:   5% (118/2346)
2023-02-22T10:26:23.6041824Z Receiving objects:   6% (141/2346)
2023-02-22T10:26:23.6046275Z Receiving objects:   7% (165/2346)
2023-02-22T10:26:23.6055069Z Receiving objects:   8% (188/2346)
2023-02-22T10:26:23.6057913Z Receiving objects:   9% (212/2346)
2023-02-22T10:26:23.6061345Z Receiving objects:  10% (235/2346)
2023-02-22T10:26:23.6064383Z Receiving objects:  11% (259/2346)
2023-02-22T10:26:23.6067849Z Receiving objects:  12% (282/2346)
2023-02-22T10:26:23.6068341Z Receiving objects:  13% (305/2346)
2023-02-22T10:26:23.6071599Z Receiving objects:  14% (329/2346)
2023-02-22T10:26:23.6073062Z Receiving objects:  15% (352/2346)
2023-02-22T10:26:23.6684925Z Receiving objects:  16% (376/2346)
2023-02-22T10:26:23.6688034Z Receiving objects:  17% (399/2346)
2023-02-22T10:26:23.6702910Z Receiving objects:  18% (423/2346)
2023-02-22T10:26:23.6706126Z Receiving objects:  19% (446/2346)
2023-02-22T10:26:23.6708952Z Receiving objects:  20% (470/2346)
2023-02-22T10:26:23.6714691Z Receiving objects:  21% (493/2346)
2023-02-22T10:26:23.6752936Z Receiving objects:  22% (517/2346)
2023-02-22T10:26:23.6753482Z Receiving objects:  23% (540/2346)
2023-02-22T10:26:23.7942027Z Receiving objects:  24% (564/2346)
2023-02-22T10:26:23.7947563Z Receiving objects:  25% (587/2346)
2023-02-22T10:26:23.7965885Z Receiving objects:  26% (610/2346)
2023-02-22T10:26:23.7969437Z Receiving objects:  27% (634/2346)
2023-02-22T10:26:23.7973137Z Receiving objects:  28% (657/2346)
2023-02-22T10:26:23.7975499Z Receiving objects:  29% (681/2346)
2023-02-22T10:26:23.8086702Z Receiving objects:  30% (704/2346)
2023-02-22T10:26:23.8111876Z Receiving objects:  31% (728/2346)
2023-02-22T10:26:23.8122671Z Receiving objects:  32% (751/2346)
2023-02-22T10:26:23.8135962Z Receiving objects:  33% (775/2346)
2023-02-22T10:26:23.8145095Z Receiving objects:  34% (798/2346)
2023-02-22T10:26:23.8156999Z Receiving objects:  35% (822/2346)
2023-02-22T10:26:23.8178522Z Receiving objects:  36% (845/2346)
2023-02-22T10:26:23.8192987Z Receiving objects:  37% (869/2346)
2023-02-22T10:26:23.8201056Z Receiving objects:  38% (892/2346)
2023-02-22T10:26:23.8225096Z Receiving objects:  39% (915/2346)
2023-02-22T10:26:23.8246827Z Receiving objects:  40% (939/2346)
2023-02-22T10:26:23.8265091Z Receiving objects:  41% (962/2346)
2023-02-22T10:26:23.8283353Z Receiving objects:  42% (986/2346)
2023-02-22T10:26:23.8298868Z Receiving objects:  43% (1009/2346)
2023-02-22T10:26:23.8303732Z Receiving objects:  44% (1033/2346)
2023-02-22T10:26:23.8318646Z Receiving objects:  45% (1056/2346)
2023-02-22T10:26:23.8321077Z Receiving objects:  46% (1080/2346)
2023-02-22T10:26:23.8324458Z Receiving objects:  47% (1103/2346)
2023-02-22T10:26:23.8327849Z Receiving objects:  48% (1127/2346)
2023-02-22T10:26:23.8331506Z Receiving objects:  49% (1150/2346)
2023-02-22T10:26:23.8335025Z Receiving objects:  50% (1173/2346)
2023-02-22T10:26:23.8337675Z Receiving objects:  51% (1197/2346)
2023-02-22T10:26:23.8347700Z Receiving objects:  52% (1220/2346)
2023-02-22T10:26:23.8498619Z Receiving objects:  53% (1244/2346)
2023-02-22T10:26:23.9276780Z Receiving objects:  54% (1267/2346)
2023-02-22T10:26:23.9284662Z Receiving objects:  55% (1291/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9299293Z Receiving objects:  56% (1314/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9308686Z Receiving objects:  57% (1338/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9323370Z Receiving objects:  58% (1361/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9330316Z Receiving objects:  59% (1385/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9344807Z Receiving objects:  60% (1408/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9366828Z Receiving objects:  61% (1432/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9452827Z Receiving objects:  62% (1455/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9460212Z Receiving objects:  63% (1478/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9496985Z Receiving objects:  64% (1502/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9504097Z Receiving objects:  65% (1525/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9511705Z Receiving objects:  66% (1549/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9525122Z Receiving objects:  67% (1572/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9536943Z Receiving objects:  68% (1596/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9544279Z Receiving objects:  69% (1619/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9552229Z Receiving objects:  70% (1643/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9556442Z Receiving objects:  71% (1666/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9561138Z Receiving objects:  72% (1690/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9587829Z Receiving objects:  73% (1713/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9595689Z Receiving objects:  74% (1737/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:23.9645067Z Receiving objects:  75% (1760/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0290113Z Receiving objects:  76% (1783/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0296840Z Receiving objects:  77% (1807/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0305298Z Receiving objects:  78% (1830/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0313176Z Receiving objects:  79% (1854/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0404657Z Receiving objects:  80% (1877/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0406536Z Receiving objects:  81% (1901/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0408684Z Receiving objects:  82% (1924/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0415144Z Receiving objects:  83% (1948/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0419813Z Receiving objects:  84% (1971/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0424873Z Receiving objects:  85% (1995/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0427807Z Receiving objects:  86% (2018/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0430348Z Receiving objects:  87% (2042/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0469888Z Receiving objects:  88% (2065/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0470514Z Receiving objects:  89% (2088/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0471119Z Receiving objects:  90% (2112/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0471599Z Receiving objects:  91% (2135/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0566032Z Receiving objects:  92% (2159/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0572260Z Receiving objects:  93% (2182/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0576356Z Receiving objects:  94% (2206/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0581377Z Receiving objects:  95% (2229/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.0638660Z Receiving objects:  96% (2253/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.2072126Z Receiving objects:  97% (2276/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.2866025Z Receiving objects:  98% (2300/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.3127929Z Receiving objects:  99% (2323/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.3128606Z remote: Total 2346 (delta 318), reused 1586 (delta 221), pack-reused 0        
2023-02-22T10:26:24.3141900Z Receiving objects: 100% (2346/2346), 16.27 MiB | 32.54 MiB/s
2023-02-22T10:26:24.3142300Z Receiving objects: 100% (2346/2346), 28.45 MiB | 29.94 MiB/s, done.
2023-02-22T10:26:24.3149543Z Resolving deltas:   0% (0/318)
2023-02-22T10:26:24.3234316Z Resolving deltas:   1% (4/318)
2023-02-22T10:26:24.3273824Z Resolving deltas:   2% (7/318)
2023-02-22T10:26:24.3281057Z Resolving deltas:   3% (10/318)
2023-02-22T10:26:24.3283610Z Resolving deltas:   4% (13/318)
2023-02-22T10:26:24.3286174Z Resolving deltas:   5% (16/318)
2023-02-22T10:26:24.3288378Z Resolving deltas:   6% (20/318)
2023-02-22T10:26:24.3290855Z Resolving deltas:   7% (23/318)
2023-02-22T10:26:24.3293195Z Resolving deltas:   8% (26/318)
2023-02-22T10:26:24.3295374Z Resolving deltas:   9% (29/318)
2023-02-22T10:26:24.3299190Z Resolving deltas:  10% (32/318)
2023-02-22T10:26:24.3302472Z Resolving deltas:  11% (35/318)
2023-02-22T10:26:24.3308531Z Resolving deltas:  12% (39/318)
2023-02-22T10:26:24.3311029Z Resolving deltas:  13% (42/318)
2023-02-22T10:26:24.3314165Z Resolving deltas:  14% (45/318)
2023-02-22T10:26:24.3316667Z Resolving deltas:  15% (48/318)
2023-02-22T10:26:24.3319253Z Resolving deltas:  16% (51/318)
2023-02-22T10:26:24.3322743Z Resolving deltas:  17% (55/318)
2023-02-22T10:26:24.3326016Z Resolving deltas:  18% (58/318)
2023-02-22T10:26:24.3839165Z Resolving deltas:  19% (61/318)
2023-02-22T10:26:24.3899700Z Resolving deltas:  20% (64/318)
2023-02-22T10:26:24.3923922Z Resolving deltas:  21% (67/318)
2023-02-22T10:26:24.3943072Z Resolving deltas:  22% (70/318)
2023-02-22T10:26:24.3943391Z Resolving deltas:  23% (74/318)
2023-02-22T10:26:24.3943717Z Resolving deltas:  24% (77/318)
2023-02-22T10:26:24.3943939Z Resolving deltas:  25% (80/318)
2023-02-22T10:26:24.3944944Z Resolving deltas:  26% (83/318)
2023-02-22T10:26:24.3945250Z Resolving deltas:  27% (86/318)
2023-02-22T10:26:24.3951660Z Resolving deltas:  28% (90/318)
2023-02-22T10:26:24.3978679Z Resolving deltas:  29% (93/318)
2023-02-22T10:26:24.3980193Z Resolving deltas:  30% (96/318)
2023-02-22T10:26:24.3981194Z Resolving deltas:  31% (99/318)
2023-02-22T10:26:24.3983388Z Resolving deltas:  32% (102/318)
2023-02-22T10:26:24.3986554Z Resolving deltas:  33% (105/318)
2023-02-22T10:26:24.3987887Z Resolving deltas:  34% (109/318)
2023-02-22T10:26:24.3989035Z Resolving deltas:  35% (112/318)
2023-02-22T10:26:24.3990317Z Resolving deltas:  36% (115/318)
2023-02-22T10:26:24.4059320Z Resolving deltas:  37% (118/318)
2023-02-22T10:26:24.4082607Z Resolving deltas:  38% (121/318)
2023-02-22T10:26:24.4098872Z Resolving deltas:  39% (125/318)
2023-02-22T10:26:24.4102462Z Resolving deltas:  40% (128/318)
2023-02-22T10:26:24.4103773Z Resolving deltas:  41% (131/318)
2023-02-22T10:26:24.4104722Z Resolving deltas:  42% (134/318)
2023-02-22T10:26:24.4106943Z Resolving deltas:  43% (137/318)
2023-02-22T10:26:24.4109252Z Resolving deltas:  44% (140/318)
2023-02-22T10:26:24.4114482Z Resolving deltas:  45% (144/318)
2023-02-22T10:26:24.4115678Z Resolving deltas:  46% (147/318)
2023-02-22T10:26:24.4116766Z Resolving deltas:  47% (150/318)
2023-02-22T10:26:24.4119919Z Resolving deltas:  48% (153/318)
2023-02-22T10:26:24.4123363Z Resolving deltas:  49% (156/318)
2023-02-22T10:26:24.4126528Z Resolving deltas:  50% (159/318)
2023-02-22T10:26:24.4128718Z Resolving deltas:  51% (163/318)
2023-02-22T10:26:24.4131131Z Resolving deltas:  52% (166/318)
2023-02-22T10:26:24.4135171Z Resolving deltas:  53% (169/318)
2023-02-22T10:26:24.4139138Z Resolving deltas:  54% (172/318)
2023-02-22T10:26:24.4141267Z Resolving deltas:  55% (175/318)
2023-02-22T10:26:24.4145018Z Resolving deltas:  56% (179/318)
2023-02-22T10:26:24.4147750Z Resolving deltas:  57% (182/318)
2023-02-22T10:26:24.4148591Z Resolving deltas:  58% (185/318)
2023-02-22T10:26:24.4150833Z Resolving deltas:  59% (188/318)
2023-02-22T10:26:24.4153016Z Resolving deltas:  60% (191/318)
2023-02-22T10:26:24.4157761Z Resolving deltas:  61% (194/318)
2023-02-22T10:26:24.4159579Z Resolving deltas:  62% (198/318)
2023-02-22T10:26:24.4165322Z Resolving deltas:  63% (201/318)
2023-02-22T10:26:24.4168143Z Resolving deltas:  64% (204/318)
2023-02-22T10:26:24.4169193Z Resolving deltas:  65% (207/318)
2023-02-22T10:26:24.4171149Z Resolving deltas:  66% (210/318)
2023-02-22T10:26:24.4172468Z Resolving deltas:  67% (214/318)
2023-02-22T10:26:24.4173668Z Resolving deltas:  68% (217/318)
2023-02-22T10:26:24.4175189Z Resolving deltas:  69% (220/318)
2023-02-22T10:26:24.4176775Z Resolving deltas:  70% (223/318)
2023-02-22T10:26:24.4177063Z Resolving deltas:  71% (226/318)
2023-02-22T10:26:24.4187436Z Resolving deltas:  72% (229/318)
2023-02-22T10:26:24.4190068Z Resolving deltas:  73% (233/318)
2023-02-22T10:26:24.4508924Z Resolving deltas:  74% (236/318)
2023-02-22T10:26:24.4510031Z Resolving deltas:  75% (239/318)
2023-02-22T10:26:24.4512205Z Resolving deltas:  76% (242/318)
2023-02-22T10:26:24.4514997Z Resolving deltas:  77% (245/318)
2023-02-22T10:26:24.4516168Z Resolving deltas:  78% (249/318)
2023-02-22T10:26:24.4519203Z Resolving deltas:  79% (252/318)
2023-02-22T10:26:24.4520195Z Resolving deltas:  80% (255/318)
2023-02-22T10:26:24.4637881Z Resolving deltas:  81% (258/318)
2023-02-22T10:26:24.4645150Z Resolving deltas:  82% (261/318)
2023-02-22T10:26:24.4646219Z Resolving deltas:  83% (264/318)
2023-02-22T10:26:24.4648095Z Resolving deltas:  84% (268/318)
2023-02-22T10:26:24.4649581Z Resolving deltas:  85% (271/318)
2023-02-22T10:26:24.4651084Z Resolving deltas:  86% (274/318)
2023-02-22T10:26:24.4652711Z Resolving deltas:  87% (277/318)
2023-02-22T10:26:24.4653599Z Resolving deltas:  88% (280/318)
2023-02-22T10:26:24.4654610Z Resolving deltas:  89% (284/318)
2023-02-22T10:26:24.4655579Z Resolving deltas:  90% (287/318)
2023-02-22T10:26:24.4656771Z Resolving deltas:  91% (290/318)
2023-02-22T10:26:24.4658673Z Resolving deltas:  92% (293/318)
2023-02-22T10:26:24.4660593Z Resolving deltas:  93% (296/318)
2023-02-22T10:26:24.4663387Z Resolving deltas:  94% (299/318)
2023-02-22T10:26:24.4664938Z Resolving deltas:  95% (303/318)
2023-02-22T10:26:24.4665982Z Resolving deltas:  96% (306/318)
2023-02-22T10:26:24.4667286Z Resolving deltas:  97% (309/318)
2023-02-22T10:26:24.4701993Z Resolving deltas:  98% (312/318)
2023-02-22T10:26:24.4777170Z Resolving deltas:  99% (315/318)
2023-02-22T10:26:24.4789098Z Resolving deltas: 100% (318/318)
2023-02-22T10:26:24.4789447Z Resolving deltas: 100% (318/318), done.
2023-02-22T10:26:24.5153109Z From https://github.com/lottielab/lottielab
2023-02-22T10:26:24.5153806Z  * [new ref]         46aa48a0e48d24ba1a72756a087dd767176c0b3c -> pull/518/merge
2023-02-22T10:26:24.5175779Z ##[endgroup]
2023-02-22T10:26:24.5176319Z ##[group]Determining the checkout info
2023-02-22T10:26:24.5177370Z ##[endgroup]
2023-02-22T10:26:24.5177882Z ##[group]Checking out the ref
2023-02-22T10:26:24.5182063Z [command]/usr/bin/git checkout --progress --force refs/remotes/pull/518/merge
2023-02-22T10:26:24.9687267Z Note: switching to 'refs/remotes/pull/518/merge'.
2023-02-22T10:26:24.9690375Z 
2023-02-22T10:26:24.9690758Z You are in 'detached HEAD' state. You can look around, make experimental
2023-02-22T10:26:24.9691196Z changes and commit them, and you can discard any commits you make in this
2023-02-22T10:26:24.9691640Z state without impacting any branches by switching back to a branch.
2023-02-22T10:26:24.9691904Z 
2023-02-22T10:26:24.9692130Z If you want to create a new branch to retain commits you create, you may
2023-02-22T10:26:24.9692591Z do so (now or later) by using -c with the switch command. Example:
2023-02-22T10:26:24.9692845Z 
2023-02-22T10:26:24.9693057Z   git switch -c <new-branch-name>
2023-02-22T10:26:24.9693278Z 
2023-02-22T10:26:24.9693443Z Or undo this operation with:
2023-02-22T10:26:24.9693649Z 
2023-02-22T10:26:24.9693791Z   git switch -
2023-02-22T10:26:24.9693974Z 
2023-02-22T10:26:24.9694213Z Turn off this advice by setting config variable advice.detachedHead to false
2023-02-22T10:26:24.9694480Z 
2023-02-22T10:26:24.9694749Z HEAD is now at 46aa48a Merge 84b246ff8d83ba05c69647923c47fa41993f7029 into 9812a032cfd338c5438585d85fd6e2b7114f6e03
2023-02-22T10:26:24.9730904Z ##[endgroup]
2023-02-22T10:26:24.9772544Z [command]/usr/bin/git log -1 --format='%H'
2023-02-22T10:26:24.9800786Z '46aa48a0e48d24ba1a72756a087dd767176c0b3c'
2023-02-22T10:26:25.0150917Z ##[group]Run actions/setup-node@v3
2023-02-22T10:26:25.0151173Z with:
2023-02-22T10:26:25.0151579Z   node-version: 19.6.1
2023-02-22T10:26:25.0151857Z   always-auth: false
2023-02-22T10:26:25.0152100Z   check-latest: false
2023-02-22T10:26:25.0152522Z   token: ***
2023-02-22T10:26:25.0152772Z ##[endgroup]
2023-02-22T10:26:25.2227265Z Attempting to download 19.6.1...
2023-02-22T10:26:25.5126487Z Not found in manifest. Falling back to download directly from Node
2023-02-22T10:26:25.5472477Z Acquiring 19.6.1 - x64 from https://nodejs.org/dist/v19.6.1/node-v19.6.1-linux-x64.tar.gz
2023-02-22T10:26:25.8303938Z Extracting ...
2023-02-22T10:26:25.8412272Z [command]/usr/bin/tar xz --strip 1 --warning=no-unknown-keyword -C /home/runner/work/_temp/b7bf08bb-0901-4322-b651-15af9095d7d7 -f /home/runner/work/_temp/c00e2168-e471-4b5f-999a-e751d3c64896
2023-02-22T10:26:27.0686734Z Adding to the cache ...
2023-02-22T10:26:28.4793560Z Done
2023-02-22T10:26:28.4798337Z ##[group]Environment details
2023-02-22T10:26:28.8734096Z node: v19.6.1
2023-02-22T10:26:28.8734720Z npm: 9.4.0
2023-02-22T10:26:28.8735112Z yarn: 1.22.19
2023-02-22T10:26:28.8736600Z ##[endgroup]
2023-02-22T10:26:28.8895203Z ##[group]Run npm install
2023-02-22T10:26:28.8895590Z npm install
2023-02-22T10:26:28.8895951Z (cd backend/multiplayer-server && npm install)
2023-02-22T10:26:28.8896292Z (cd frontend && npm install)
2023-02-22T10:26:28.8896636Z (cd shared/document && npm install)
2023-02-22T10:26:28.8955169Z shell: /usr/bin/bash -e {0}
2023-02-22T10:26:28.8955425Z ##[endgroup]
2023-02-22T10:26:32.8595557Z npm WARN deprecated stable@0.1.8: Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility
2023-02-22T10:26:38.2131498Z npm WARN deprecated popper.js@1.16.1: You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1
2023-02-22T10:26:53.0377044Z 
2023-02-22T10:26:53.0377504Z > prepare
2023-02-22T10:26:53.0377956Z > husky install
2023-02-22T10:26:53.0378274Z 
2023-02-22T10:26:53.0984772Z husky - Git hooks installed
2023-02-22T10:26:53.1173806Z 
2023-02-22T10:26:53.1174746Z added 957 packages, and audited 963 packages in 24s
2023-02-22T10:26:53.1183474Z 
2023-02-22T10:26:53.1184826Z 267 packages are looking for funding
2023-02-22T10:26:53.1185352Z   run `npm fund` for details
2023-02-22T10:26:53.1190515Z 
2023-02-22T10:26:53.1190818Z found 0 vulnerabilities
2023-02-22T10:26:55.7429519Z 
2023-02-22T10:26:55.7430334Z > prepare
2023-02-22T10:26:55.7430893Z > husky install
2023-02-22T10:26:55.7431282Z 
2023-02-22T10:26:55.7954273Z husky - Git hooks installed
2023-02-22T10:26:55.8061627Z 
2023-02-22T10:26:55.8062007Z up to date, audited 963 packages in 2s
2023-02-22T10:26:55.8065289Z 
2023-02-22T10:26:55.8066900Z 267 packages are looking for funding
2023-02-22T10:26:55.8068419Z   run `npm fund` for details
2023-02-22T10:26:55.8085560Z 
2023-02-22T10:26:55.8085830Z found 0 vulnerabilities
2023-02-22T10:26:58.1166639Z 
2023-02-22T10:26:58.1167184Z > prepare
2023-02-22T10:26:58.1167535Z > husky install
2023-02-22T10:26:58.1172032Z 
2023-02-22T10:26:58.5683202Z husky - Git hooks installed
2023-02-22T10:26:58.5798663Z 
2023-02-22T10:26:58.5799316Z up to date, audited 963 packages in 2s
2023-02-22T10:26:58.5802329Z 
2023-02-22T10:26:58.5803382Z 267 packages are looking for funding
2023-02-22T10:26:58.5803907Z   run `npm fund` for details
2023-02-22T10:26:58.5818048Z 
2023-02-22T10:26:58.5818368Z found 0 vulnerabilities
2023-02-22T10:27:01.0647481Z 
2023-02-22T10:27:01.0648190Z > prepare
2023-02-22T10:27:01.0648727Z > husky install
2023-02-22T10:27:01.0649257Z 
2023-02-22T10:27:01.1182140Z husky - Git hooks installed
2023-02-22T10:27:01.1298670Z 
2023-02-22T10:27:01.1299475Z up to date, audited 963 packages in 2s
2023-02-22T10:27:01.1299993Z 
2023-02-22T10:27:01.1301247Z 267 packages are looking for funding
2023-02-22T10:27:01.1301726Z   run `npm fund` for details
2023-02-22T10:27:01.1316500Z 
2023-02-22T10:27:01.1316807Z found 0 vulnerabilities
2023-02-22T10:27:01.1457278Z ##[group]Run cd shared/document
2023-02-22T10:27:01.1457627Z cd shared/document
2023-02-22T10:27:01.1457910Z npx playwright install --with-deps
2023-02-22T10:27:01.1510833Z shell: /usr/bin/bash -e {0}
2023-02-22T10:27:01.1511082Z ##[endgroup]
2023-02-22T10:27:01.9721780Z Installing dependencies...
2023-02-22T10:27:01.9860305Z Switching to root user to install dependencies...
2023-02-22T10:27:02.1595784Z Hit:1 http://azure.archive.ubuntu.com/ubuntu jammy InRelease
2023-02-22T10:27:02.1597030Z Get:2 http://azure.archive.ubuntu.com/ubuntu jammy-updates InRelease [119 kB]
2023-02-22T10:27:02.2036871Z Get:3 http://azure.archive.ubuntu.com/ubuntu jammy-backports InRelease [107 kB]
2023-02-22T10:27:02.2037541Z Get:4 http://azure.archive.ubuntu.com/ubuntu jammy-security InRelease [110 kB]
2023-02-22T10:27:02.2038053Z Get:5 https://packages.microsoft.com/ubuntu/22.04/prod jammy InRelease [10.5 kB]
2023-02-22T10:27:02.4313703Z Get:6 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [898 kB]
2023-02-22T10:27:02.4429707Z Get:7 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [13.5 kB]
2023-02-22T10:27:02.4492638Z Get:8 http://azure.archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [624 kB]
2023-02-22T10:27:02.4501489Z Get:9 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [853 kB]
2023-02-22T10:27:02.4591203Z Get:10 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [17.3 kB]
2023-02-22T10:27:02.4602635Z Get:11 http://azure.archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [9672 B]
2023-02-22T10:27:02.5304015Z Get:12 http://azure.archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [19.5 kB]
2023-02-22T10:27:02.5315754Z Get:13 http://azure.archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [13.9 kB]
2023-02-22T10:27:02.5553448Z Hit:14 https://ppa.launchpadcontent.net/ubuntu-toolchain-r/test/ubuntu jammy InRelease
2023-02-22T10:27:02.7505665Z Get:15 https://packages.microsoft.com/ubuntu/22.04/prod jammy/main amd64 Packages [78.6 kB]
2023-02-22T10:27:05.9901294Z Fetched 2873 kB in 1s (3593 kB/s)
2023-02-22T10:27:06.6914677Z Reading package lists...
2023-02-22T10:27:06.7501084Z Reading package lists...
2023-02-22T10:27:06.8882421Z Building dependency tree...
2023-02-22T10:27:06.8897194Z Reading state information...
2023-02-22T10:27:06.8949953Z fonts-liberation is already the newest version (1:1.07.4-11).
2023-02-22T10:27:06.8950566Z fonts-liberation set to manually installed.
2023-02-22T10:27:06.8951878Z libasound2 is already the newest version (1.2.6.1-1ubuntu1).
2023-02-22T10:27:06.8952261Z libasound2 set to manually installed.
2023-02-22T10:27:06.8952713Z libatk-bridge2.0-0 is already the newest version (2.38.0-3).
2023-02-22T10:27:06.8953133Z libatk-bridge2.0-0 set to manually installed.
2023-02-22T10:27:06.8953564Z libatk1.0-0 is already the newest version (2.36.0-3build1).
2023-02-22T10:27:06.8953941Z libatk1.0-0 set to manually installed.
2023-02-22T10:27:06.8954338Z libatspi2.0-0 is already the newest version (2.44.0-3).
2023-02-22T10:27:06.8954717Z libatspi2.0-0 set to manually installed.
2023-02-22T10:27:06.8955169Z libcairo-gobject2 is already the newest version (1.16.0-5ubuntu2).
2023-02-22T10:27:06.8955577Z libcairo-gobject2 set to manually installed.
2023-02-22T10:27:06.8956048Z libcairo2 is already the newest version (1.16.0-5ubuntu2).
2023-02-22T10:27:06.8956361Z libcairo2 set to manually installed.
2023-02-22T10:27:06.8956779Z libdbus-glib-1-2 is already the newest version (0.112-2build1).
2023-02-22T10:27:06.8957179Z libdbus-glib-1-2 set to manually installed.
2023-02-22T10:27:06.8957611Z libenchant-2-2 is already the newest version (2.3.2-1ubuntu2).
2023-02-22T10:27:06.8957997Z libenchant-2-2 set to manually installed.
2023-02-22T10:27:06.8958389Z libepoxy0 is already the newest version (1.5.10-1).
2023-02-22T10:27:06.8958699Z libepoxy0 set to manually installed.
2023-02-22T10:27:06.8959417Z libfontconfig1 is already the newest version (2.13.1-4.2ubuntu5).
2023-02-22T10:27:06.8959766Z libfontconfig1 set to manually installed.
2023-02-22T10:27:06.8960154Z libglx0 is already the newest version (1.4.0-1).
2023-02-22T10:27:06.8960454Z libglx0 set to manually installed.
2023-02-22T10:27:06.8960888Z libgudev-1.0-0 is already the newest version (1:237-2build1).
2023-02-22T10:27:06.8961295Z libicu70 is already the newest version (70.1-2).
2023-02-22T10:27:06.8961588Z libicu70 set to manually installed.
2023-02-22T10:27:06.8962008Z libjpeg-turbo8 is already the newest version (2.1.2-0ubuntu1).
2023-02-22T10:27:06.8962393Z libjpeg-turbo8 set to manually installed.
2023-02-22T10:27:06.8962821Z liblcms2-2 is already the newest version (2.12~rc1-2build2).
2023-02-22T10:27:06.8963187Z liblcms2-2 set to manually installed.
2023-02-22T10:27:06.8963595Z libnspr4 is already the newest version (2:4.32-3build1).
2023-02-22T10:27:06.8964007Z libopenjp2-7 is already the newest version (2.4.0-6).
2023-02-22T10:27:06.8964380Z libopenjp2-7 set to manually installed.
2023-02-22T10:27:06.8964791Z libpango-1.0-0 is already the newest version (1.50.6+ds-2).
2023-02-22T10:27:06.8965171Z libpango-1.0-0 set to manually installed.
2023-02-22T10:27:06.8965608Z libpangocairo-1.0-0 is already the newest version (1.50.6+ds-2).
2023-02-22T10:27:06.8966021Z libpangocairo-1.0-0 set to manually installed.
2023-02-22T10:27:06.8966445Z libpng16-16 is already the newest version (1.6.37-3build5).
2023-02-22T10:27:06.8966797Z libpng16-16 set to manually installed.
2023-02-22T10:27:06.8967194Z libproxy1v5 is already the newest version (0.4.17-2).
2023-02-22T10:27:06.8967508Z libproxy1v5 set to manually installed.
2023-02-22T10:27:06.8967908Z libsecret-1-0 is already the newest version (0.20.5-2).
2023-02-22T10:27:06.8968367Z libsecret-1-0 set to manually installed.
2023-02-22T10:27:06.8968771Z libsoup2.4-1 is already the newest version (2.74.2-3).
2023-02-22T10:27:06.8969131Z libsoup2.4-1 set to manually installed.
2023-02-22T10:27:06.8969530Z libwebpdemux2 is already the newest version (1.2.2-2).
2023-02-22T10:27:06.8969841Z libwebpdemux2 set to manually installed.
2023-02-22T10:27:06.8970230Z libx11-6 is already the newest version (2:1.7.5-1).
2023-02-22T10:27:06.8970572Z libx11-6 set to manually installed.
2023-02-22T10:27:06.8970963Z libx11-xcb1 is already the newest version (2:1.7.5-1).
2023-02-22T10:27:06.8971310Z libx11-xcb1 set to manually installed.
2023-02-22T10:27:06.8971715Z libxcb-shm0 is already the newest version (1.14-3ubuntu3).
2023-02-22T10:27:06.8972078Z libxcb-shm0 set to manually installed.
2023-02-22T10:27:06.8972471Z libxcb1 is already the newest version (1.14-3ubuntu3).
2023-02-22T10:27:06.8972758Z libxcb1 set to manually installed.
2023-02-22T10:27:06.8973189Z libxcomposite1 is already the newest version (1:0.4.5-1build2).
2023-02-22T10:27:06.8973531Z libxcomposite1 set to manually installed.
2023-02-22T10:27:06.8973956Z libxcursor1 is already the newest version (1:1.2.0-2build4).
2023-02-22T10:27:06.8974266Z libxcursor1 set to manually installed.
2023-02-22T10:27:06.8974687Z libxdamage1 is already the newest version (1:1.1.5-2build2).
2023-02-22T10:27:06.8974998Z libxdamage1 set to manually installed.
2023-02-22T10:27:06.8975397Z libxext6 is already the newest version (2:1.3.4-1build1).
2023-02-22T10:27:06.8975692Z libxext6 set to manually installed.
2023-02-22T10:27:06.8976084Z libxfixes3 is already the newest version (1:6.0.0-1).
2023-02-22T10:27:06.8976399Z libxfixes3 set to manually installed.
2023-02-22T10:27:06.8976799Z libxi6 is already the newest version (2:1.8-1build1).
2023-02-22T10:27:06.8977087Z libxi6 set to manually installed.
2023-02-22T10:27:06.8977472Z libxkbcommon0 is already the newest version (1.4.0-1).
2023-02-22T10:27:06.8977794Z libxkbcommon0 set to manually installed.
2023-02-22T10:27:06.8978218Z libxrandr2 is already the newest version (2:1.5.2-1build1).
2023-02-22T10:27:06.8978532Z libxrandr2 set to manually installed.
2023-02-22T10:27:06.8979006Z libxrender1 is already the newest version (1:0.9.10-1build4).
2023-02-22T10:27:06.8979338Z libxrender1 set to manually installed.
2023-02-22T10:27:06.8979751Z libxtst6 is already the newest version (2:1.2.3-1build4).
2023-02-22T10:27:06.8980054Z libxtst6 set to manually installed.
2023-02-22T10:27:06.8980503Z fonts-noto-color-emoji is already the newest version (2.038-0ubuntu1).
2023-02-22T10:27:06.8981008Z libatomic1 is already the newest version (12.1.0-2ubuntu1~22.04).
2023-02-22T10:27:06.8981336Z libatomic1 set to manually installed.
2023-02-22T10:27:06.8981763Z libcups2 is already the newest version (2.4.1op1-1ubuntu4.1).
2023-02-22T10:27:06.8982071Z libcups2 set to manually installed.
2023-02-22T10:27:06.8982489Z libdbus-1-3 is already the newest version (1.12.20-2ubuntu4.1).
2023-02-22T10:27:07.0303406Z libdbus-1-3 set to manually installed.
2023-02-22T10:27:07.0303913Z libdrm2 is already the newest version (2.4.113-2~ubuntu0.22.04.1).
2023-02-22T10:27:07.0304240Z libdrm2 set to manually installed.
2023-02-22T10:27:07.0304702Z libfreetype6 is already the newest version (2.11.1+dfsg-1ubuntu0.1).
2023-02-22T10:27:07.0306266Z libfreetype6 set to manually installed.
2023-02-22T10:27:07.0307088Z libgbm1 is already the newest version (22.2.5-0ubuntu0.1~22.04.1).
2023-02-22T10:27:07.0307535Z libgbm1 set to manually installed.
2023-02-22T10:27:07.0308007Z libgdk-pixbuf-2.0-0 is already the newest version (2.42.8+dfsg-1ubuntu0.2).
2023-02-22T10:27:07.0308527Z libgdk-pixbuf-2.0-0 set to manually installed.
2023-02-22T10:27:07.0308971Z libglib2.0-0 is already the newest version (2.72.4-0ubuntu1).
2023-02-22T10:27:07.0309343Z libglib2.0-0 set to manually installed.
2023-02-22T10:27:07.0309772Z libgstreamer1.0-0 is already the newest version (1.20.3-0ubuntu1).
2023-02-22T10:27:07.0310258Z libgstreamer1.0-0 set to manually installed.
2023-02-22T10:27:07.0310944Z libgtk-3-0 is already the newest version (3.24.33-1ubuntu2).
2023-02-22T10:27:07.0311530Z libharfbuzz0b is already the newest version (2.7.4-1ubuntu3.1).
2023-02-22T10:27:07.0311880Z libharfbuzz0b set to manually installed.
2023-02-22T10:27:07.0312303Z libnss3 is already the newest version (2:3.68.2-0ubuntu1.1).
2023-02-22T10:27:07.0312772Z libwayland-client0 is already the newest version (1.20.0-1ubuntu0.1).
2023-02-22T10:27:07.0313192Z libwayland-client0 set to manually installed.
2023-02-22T10:27:07.0313643Z libwayland-egl1 is already the newest version (1.20.0-1ubuntu0.1).
2023-02-22T10:27:07.0314032Z libwayland-egl1 set to manually installed.
2023-02-22T10:27:07.0314483Z libwayland-server0 is already the newest version (1.20.0-1ubuntu0.1).
2023-02-22T10:27:07.0314890Z libwayland-server0 set to manually installed.
2023-02-22T10:27:07.0315332Z libxml2 is already the newest version (2.9.13+dfsg-1ubuntu0.2).
2023-02-22T10:27:07.0315639Z libxml2 set to manually installed.
2023-02-22T10:27:07.0316309Z libxslt1.1 is already the newest version (1.1.34-4ubuntu0.22.04.1).
2023-02-22T10:27:07.0316639Z libxslt1.1 set to manually installed.
2023-02-22T10:27:07.0317058Z xvfb is already the newest version (2:21.1.3-2ubuntu2.7).
2023-02-22T10:27:07.0317411Z The following additional packages will be installed:
2023-02-22T10:27:07.0319442Z   libaa1 libass9 libasyncns0 libavc1394-0 libavcodec58 libavdevice58
2023-02-22T10:27:07.0320265Z   libavfilter7 libavformat58 libavutil56 libbluray2 libbs2b0 libcaca0
2023-02-22T10:27:07.0320752Z   libcdio-cdda2 libcdio-paranoia2 libcdio19 libcdparanoia0 libchromaprint1
2023-02-22T10:27:07.0321210Z   libcodec2-1.0 libdc1394-25 libdca0 libdecor-0-0 libdv4 libdvdnav4
2023-02-22T10:27:07.0321660Z   libdvdread8 libegl-mesa0 libfaad2 libflac8 libflite1 libfluidsynth3
2023-02-22T10:27:07.0322147Z   libfreeaptx0 libgme0 libgsm1 libgssdp-1.2-0 libgstreamer-plugins-bad1.0-0
2023-02-22T10:27:07.0322638Z   libgstreamer-plugins-good1.0-0 libgupnp-1.2-1 libgupnp-igd-1.0-4
2023-02-22T10:27:07.0323152Z   libiec61883-0 libinstpatch-1.0-2 libjack-jackd2-0 libkate1 libldacbt-enc2
2023-02-22T10:27:07.0323641Z   liblilv-0-0 libltc11 libmfx1 libmjpegutils-2.1-0 libmodplug1 libmp3lame0
2023-02-22T10:27:07.0324219Z   libmpcdec6 libmpeg2encpp-2.1-0 libmpg123-0 libmplex2-2.1-0 libmysofa1
2023-02-22T10:27:07.0324705Z   libnice10 libopenal-data libopenal1 libopenh264-6 libopenmpt0 libopenni2-0
2023-02-22T10:27:07.0325165Z   liborc-0.4-0 libpocketsphinx3 libpostproc55 libpulse0 libqrencode4
2023-02-22T10:27:07.0325618Z   libraw1394-11 librubberband2 libsamplerate0 libsbc1 libsdl2-2.0-0
2023-02-22T10:27:07.0326066Z   libserd-0-0 libshine3 libshout3 libsndfile1 libsndio7.0 libsord-0-0
2023-02-22T10:27:07.0326527Z   libsoundtouch1 libsoxr0 libspandsp2 libspeex1 libsphinxbase3 libsratom-0-0
2023-02-22T10:27:07.0327005Z   libsrt1.4-gnutls libsrtp2-1 libssh-gcrypt-4 libswresample3 libswscale5
2023-02-22T10:27:07.0327613Z   libtag1v5 libtag1v5-vanilla libtheora0 libtwolame0 libudfread0 libv4l-0
2023-02-22T10:27:07.0328089Z   libv4lconvert0 libva-drm2 libva-x11-2 libva2 libvdpau1 libvidstab1.1
2023-02-22T10:27:07.0328542Z   libvisual-0.4-0 libvo-aacenc0 libvo-amrwbenc0 libvorbisenc2 libvpx7
2023-02-22T10:27:07.0329033Z   libwavpack1 libwebrtc-audio-processing1 libwildmidi2 libxcb-shape0 libxv1
2023-02-22T10:27:07.0329498Z   libxvidcore4 libzbar0 libzimg2 libzvbi-common libzvbi0 libzxingcore1
2023-02-22T10:27:07.0329955Z   ocl-icd-libopencl1 timgm6mb-soundfont xfonts-encodings xfonts-utils
2023-02-22T10:27:07.0330265Z Suggested packages:
2023-02-22T10:27:07.0330658Z   ffmpeg-doc frei0r-plugins gvfs libcuda1 libnvcuvid1 libnvidia-encode1
2023-02-22T10:27:07.0331147Z   libbluray-bdj libdv-bin oss-compat libdvdcss2 libvisual-0.4-plugins jackd2
2023-02-22T10:27:07.0331629Z   gnome-shell | notification-daemon libportaudio2 opus-tools pulseaudio
2023-02-22T10:27:07.0332100Z   libraw1394-doc serdi sndiod sordi speex libwildmidi-config opencl-icd
2023-02-22T10:27:07.0332402Z   fluid-soundfont-gm
2023-02-22T10:27:07.0332706Z Recommended packages:
2023-02-22T10:27:07.0333090Z   fonts-ipafont-mincho fonts-tlwg-loma gstreamer1.0-x libaacs0
2023-02-22T10:27:07.0333536Z   libdecor-0-plugin-1-cairo | libdecor-0-plugin-1 gstreamer1.0-gl
2023-02-22T10:27:07.0334039Z   pocketsphinx-en-us va-driver-all | va-driver vdpau-driver-all | vdpau-driver
2023-02-22T10:27:07.0797290Z The following NEW packages will be installed:
2023-02-22T10:27:07.0798222Z   ffmpeg fonts-freefont-ttf fonts-ipafont-gothic fonts-tlwg-loma-otf
2023-02-22T10:27:07.0798974Z   fonts-unifont fonts-wqy-zenhei gstreamer1.0-libav gstreamer1.0-plugins-bad
2023-02-22T10:27:07.0799772Z   gstreamer1.0-plugins-base gstreamer1.0-plugins-good libaa1 libass9
2023-02-22T10:27:07.0800953Z   libasyncns0 libavc1394-0 libavcodec58 libavdevice58 libavfilter7
2023-02-22T10:27:07.0801493Z   libavformat58 libavutil56 libbluray2 libbs2b0 libcaca0 libcdio-cdda2
2023-02-22T10:27:07.0801991Z   libcdio-paranoia2 libcdio19 libcdparanoia0 libchromaprint1 libcodec2-1.0
2023-02-22T10:27:07.0802520Z   libdc1394-25 libdca0 libdecor-0-0 libdv4 libdvdnav4 libdvdread8 libegl-mesa0
2023-02-22T10:27:07.0802978Z   libegl1 libevdev2 libevent-2.1-7 libfaad2 libffi7 libflac8 libflite1
2023-02-22T10:27:07.0803438Z   libfluidsynth3 libfreeaptx0 libgles2 libgme0 libgsm1 libgssdp-1.2-0
2023-02-22T10:27:07.0803876Z   libgstreamer-gl1.0-0 libgstreamer-plugins-bad1.0-0
2023-02-22T10:27:07.0804384Z   libgstreamer-plugins-base1.0-0 libgstreamer-plugins-good1.0-0 libgupnp-1.2-1
2023-02-22T10:27:07.0804866Z   libgupnp-igd-1.0-4 libharfbuzz-icu0 libhyphen0 libiec61883-0
2023-02-22T10:27:07.0805334Z   libinstpatch-1.0-2 libjack-jackd2-0 libkate1 libldacbt-enc2 liblilv-0-0
2023-02-22T10:27:07.0805802Z   libltc11 libmanette-0.2-0 libmfx1 libmjpegutils-2.1-0 libmodplug1
2023-02-22T10:27:07.0806266Z   libmp3lame0 libmpcdec6 libmpeg2encpp-2.1-0 libmpg123-0 libmplex2-2.1-0
2023-02-22T10:27:07.0807973Z   libmysofa1 libnice10 libnotify4 libopenal-data libopenal1 libopengl0
2023-02-22T10:27:07.0810874Z   libopenh264-6 libopenmpt0 libopenni2-0 libopus0 liborc-0.4-0
2023-02-22T10:27:07.0813853Z   libpocketsphinx3 libpostproc55 libpulse0 libqrencode4 libraw1394-11
2023-02-22T10:27:07.0817562Z   librubberband2 libsamplerate0 libsbc1 libsdl2-2.0-0 libserd-0-0 libshine3
2023-02-22T10:27:07.0820662Z   libshout3 libsndfile1 libsndio7.0 libsord-0-0 libsoundtouch1 libsoxr0
2023-02-22T10:27:07.0823492Z   libspandsp2 libspeex1 libsphinxbase3 libsratom-0-0 libsrt1.4-gnutls
2023-02-22T10:27:07.0826365Z   libsrtp2-1 libssh-gcrypt-4 libswresample3 libswscale5 libtag1v5
2023-02-22T10:27:07.0829289Z   libtag1v5-vanilla libtheora0 libtwolame0 libudfread0 libv4l-0 libv4lconvert0
2023-02-22T10:27:07.0832617Z   libva-drm2 libva-x11-2 libva2 libvdpau1 libvidstab1.1 libvisual-0.4-0
2023-02-22T10:27:07.0833306Z   libvo-aacenc0 libvo-amrwbenc0 libvorbisenc2 libvpx7 libwavpack1
2023-02-22T10:27:07.0834041Z   libwebrtc-audio-processing1 libwildmidi2 libwoff1 libx264-163 libxcb-shape0
2023-02-22T10:27:07.0835605Z   libxv1 libxvidcore4 libzbar0 libzimg2 libzvbi-common libzvbi0 libzxingcore1
2023-02-22T10:27:07.0837024Z   ocl-icd-libopencl1 timgm6mb-soundfont xfonts-cyrillic xfonts-encodings
2023-02-22T10:27:07.0837582Z   xfonts-scalable xfonts-utils
2023-02-22T10:27:07.1216266Z 0 upgraded, 145 newly installed, 0 to remove and 19 not upgraded.
2023-02-22T10:27:07.1216646Z Need to get 83.1 MB of archives.
2023-02-22T10:27:07.1217260Z After this operation, 228 MB of additional disk space will be used.
2023-02-22T10:27:07.1218081Z Get:1 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-ipafont-gothic all 00303-21ubuntu1 [3513 kB]
2023-02-22T10:27:07.2032901Z Get:2 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libva2 amd64 2.14.0-1 [65.0 kB]
2023-02-22T10:27:07.2201438Z Get:3 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libmfx1 amd64 22.3.0-1 [3105 kB]
2023-02-22T10:27:07.2707524Z Get:4 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libva-drm2 amd64 2.14.0-1 [7502 B]
2023-02-22T10:27:07.2866694Z Get:5 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libva-x11-2 amd64 2.14.0-1 [12.6 kB]
2023-02-22T10:27:07.3137925Z Get:6 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libvdpau1 amd64 1.4-3build2 [27.0 kB]
2023-02-22T10:27:07.3434559Z Get:7 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 ocl-icd-libopencl1 amd64 2.2.14-3 [39.1 kB]
2023-02-22T10:27:07.3974873Z Get:8 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavutil56 amd64 7:4.4.2-0ubuntu0.22.04.1 [290 kB]
2023-02-22T10:27:07.4541527Z Get:9 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libcodec2-1.0 amd64 1.0.1-3 [8435 kB]
2023-02-22T10:27:07.6249823Z Get:10 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libgsm1 amd64 1.0.19-1 [27.7 kB]
2023-02-22T10:27:07.6393423Z Get:11 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmp3lame0 amd64 3.100-3build2 [141 kB]
2023-02-22T10:27:07.6550997Z Get:12 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libopus0 amd64 1.3.1-0.1build2 [203 kB]
2023-02-22T10:27:07.6717703Z Get:13 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libshine3 amd64 3.1.1-2 [23.2 kB]
2023-02-22T10:27:07.6865135Z Get:14 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libspeex1 amd64 1.2~rc1.2-1.1ubuntu3 [57.9 kB]
2023-02-22T10:27:07.7018867Z Get:15 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsoxr0 amd64 0.1.3-4build2 [79.8 kB]
2023-02-22T10:27:07.7179974Z Get:16 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libswresample3 amd64 7:4.4.2-0ubuntu0.22.04.1 [62.2 kB]
2023-02-22T10:27:07.7443845Z Get:17 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtheora0 amd64 1.1.1+dfsg.1-15ubuntu4 [209 kB]
2023-02-22T10:27:07.8071511Z Get:18 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtwolame0 amd64 0.4.0-2build2 [52.5 kB]
2023-02-22T10:27:07.8232074Z Get:19 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libvorbisenc2 amd64 1.3.7-1build2 [82.6 kB]
2023-02-22T10:27:07.8927130Z Get:20 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libvpx7 amd64 1.11.0-2ubuntu2 [1078 kB]
2023-02-22T10:27:07.9405756Z Get:21 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libx264-163 amd64 2:0.163.3060+git5db6aa6-2build1 [591 kB]
2023-02-22T10:27:07.9607102Z Get:22 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libxvidcore4 amd64 2:1.3.7-1 [201 kB]
2023-02-22T10:27:07.9763968Z Get:23 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libzvbi-common all 0.2.35-19 [35.5 kB]
2023-02-22T10:27:07.9900652Z Get:24 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libzvbi0 amd64 0.2.35-19 [262 kB]
2023-02-22T10:27:08.0071969Z Get:25 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavcodec58 amd64 7:4.4.2-0ubuntu0.22.04.1 [5567 kB]
2023-02-22T10:27:08.0799590Z Get:26 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libraw1394-11 amd64 2.1.2-2build2 [27.0 kB]
2023-02-22T10:27:08.0939573Z Get:27 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libavc1394-0 amd64 0.5.4-5build2 [17.0 kB]
2023-02-22T10:27:08.1186924Z Get:28 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libass9 amd64 1:0.15.2-1 [97.5 kB]
2023-02-22T10:27:08.1662653Z Get:29 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libudfread0 amd64 1.1.2-1 [16.2 kB]
2023-02-22T10:27:08.1800268Z Get:30 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libbluray2 amd64 1:1.3.1-1 [159 kB]
2023-02-22T10:27:08.2056186Z Get:31 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libchromaprint1 amd64 1.5.1-2 [28.4 kB]
2023-02-22T10:27:08.2189524Z Get:32 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libgme0 amd64 0.6.3-2 [127 kB]
2023-02-22T10:27:08.2354049Z Get:33 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmpg123-0 amd64 1.29.3-1build1 [172 kB]
2023-02-22T10:27:08.2522187Z Get:34 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libopenmpt0 amd64 0.6.1-1 [592 kB]
2023-02-22T10:27:08.2823397Z Get:35 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libsrt1.4-gnutls amd64 1.4.4-4 [309 kB]
2023-02-22T10:27:08.2992131Z Get:36 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libssh-gcrypt-4 amd64 0.9.6-2build1 [222 kB]
2023-02-22T10:27:08.3145531Z Get:37 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavformat58 amd64 7:4.4.2-0ubuntu0.22.04.1 [1103 kB]
2023-02-22T10:27:08.3845286Z Get:38 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libbs2b0 amd64 3.1.0+dfsg-2.2build1 [10.2 kB]
2023-02-22T10:27:08.4075841Z Get:39 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libflite1 amd64 2.2-3 [13.7 MB]
2023-02-22T10:27:08.6340014Z Get:40 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libserd-0-0 amd64 0.30.10-2 [40.8 kB]
2023-02-22T10:27:08.6470367Z Get:41 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libsord-0-0 amd64 0.16.8-2 [21.2 kB]
2023-02-22T10:27:08.6599965Z Get:42 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libsratom-0-0 amd64 0.6.8-1 [17.0 kB]
2023-02-22T10:27:08.6723567Z Get:43 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 liblilv-0-0 amd64 0.24.12-2 [42.8 kB]
2023-02-22T10:27:08.6860035Z Get:44 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libmysofa1 amd64 1.2.1~dfsg0-1 [1157 kB]
2023-02-22T10:27:08.7121012Z Get:45 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libasyncns0 amd64 0.8-6build2 [12.8 kB]
2023-02-22T10:27:08.7252023Z Get:46 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libflac8 amd64 1.3.3-2ubuntu0.1 [111 kB]
2023-02-22T10:27:08.7390470Z Get:47 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsndfile1 amd64 1.0.31-2build1 [196 kB]
2023-02-22T10:27:08.7539492Z Get:48 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libpulse0 amd64 1:15.99.1+dfsg1-1ubuntu2 [297 kB]
2023-02-22T10:27:08.7703531Z Get:49 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libsphinxbase3 amd64 0.8+5prealpha+1-13build1 [126 kB]
2023-02-22T10:27:08.7982928Z Get:50 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libpocketsphinx3 amd64 0.8.0+real5prealpha+1-14ubuntu1 [132 kB]
2023-02-22T10:27:08.8554187Z Get:51 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libpostproc55 amd64 7:4.4.2-0ubuntu0.22.04.1 [60.1 kB]
2023-02-22T10:27:08.8835957Z Get:52 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsamplerate0 amd64 0.2.2-1build1 [1359 kB]
2023-02-22T10:27:08.9462324Z Get:53 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 librubberband2 amd64 2.0.0-2 [90.0 kB]
2023-02-22T10:27:08.9617183Z Get:54 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libswscale5 amd64 7:4.4.2-0ubuntu0.22.04.1 [180 kB]
2023-02-22T10:27:08.9778572Z Get:55 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libvidstab1.1 amd64 1.1.0-2 [35.0 kB]
2023-02-22T10:27:08.9920846Z Get:56 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libzimg2 amd64 3.0.3+ds1-1 [241 kB]
2023-02-22T10:27:09.0534299Z Get:57 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavfilter7 amd64 7:4.4.2-0ubuntu0.22.04.1 [1496 kB]
2023-02-22T10:27:09.0858517Z Get:58 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libcaca0 amd64 0.99.beta19-2.2ubuntu4 [224 kB]
2023-02-22T10:27:09.1027787Z Get:59 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libcdio19 amd64 2.1.0-3build1 [63.3 kB]
2023-02-22T10:27:09.1197510Z Get:60 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libcdio-cdda2 amd64 10.2+2.0.0-1build3 [16.7 kB]
2023-02-22T10:27:09.1474952Z Get:61 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libcdio-paranoia2 amd64 10.2+2.0.0-1build3 [15.9 kB]
2023-02-22T10:27:09.1739141Z Get:62 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libdc1394-25 amd64 2.2.6-4 [88.8 kB]
2023-02-22T10:27:09.2150835Z Get:63 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libiec61883-0 amd64 1.2.0-4build3 [25.9 kB]
2023-02-22T10:27:09.2302901Z Get:64 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libjack-jackd2-0 amd64 1.9.20~dfsg-1 [293 kB]
2023-02-22T10:27:09.2691519Z Get:65 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libopenal-data all 1:1.19.1-2build3 [164 kB]
2023-02-22T10:27:09.2873060Z Get:66 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libsndio7.0 amd64 1.8.1-1.1 [29.3 kB]
2023-02-22T10:27:09.3021415Z Get:67 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libopenal1 amd64 1:1.19.1-2build3 [535 kB]
2023-02-22T10:27:09.3317678Z Get:68 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdecor-0-0 amd64 0.1.0-3build1 [15.1 kB]
2023-02-22T10:27:09.3469674Z Get:69 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libsdl2-2.0-0 amd64 2.0.20+dfsg-2ubuntu1.22.04.1 [582 kB]
2023-02-22T10:27:09.3685384Z Get:70 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libxcb-shape0 amd64 1.14-3ubuntu3 [6158 B]
2023-02-22T10:27:09.3834918Z Get:71 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libxv1 amd64 2:1.0.11-1build2 [11.2 kB]
2023-02-22T10:27:09.4097782Z Get:72 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libavdevice58 amd64 7:4.4.2-0ubuntu0.22.04.1 [87.5 kB]
2023-02-22T10:27:09.4568214Z Get:73 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 ffmpeg amd64 7:4.4.2-0ubuntu0.22.04.1 [1696 kB]
2023-02-22T10:27:09.5284025Z Get:74 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 fonts-freefont-ttf all 20120503-10build1 [2388 kB]
2023-02-22T10:27:09.5776165Z Get:75 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-tlwg-loma-otf all 1:0.7.3-1 [107 kB]
2023-02-22T10:27:09.6326689Z Get:76 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-unifont all 1:14.0.01-1 [3551 kB]
2023-02-22T10:27:09.7212679Z Get:77 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 fonts-wqy-zenhei all 0.9.45-8 [7472 kB]
2023-02-22T10:27:09.8491704Z Get:78 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 liborc-0.4-0 amd64 1:0.4.32-2 [228 kB]
2023-02-22T10:27:09.8773578Z Get:79 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libgstreamer-plugins-base1.0-0 amd64 1.20.1-1 [847 kB]
2023-02-22T10:27:09.9015659Z Get:80 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 gstreamer1.0-libav amd64 1.20.3-0ubuntu1 [103 kB]
2023-02-22T10:27:09.9169275Z Get:81 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libcdparanoia0 amd64 3.10.2+debian-14build2 [49.3 kB]
2023-02-22T10:27:09.9354934Z Get:82 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libvisual-0.4-0 amd64 0.4.0-17build2 [108 kB]
2023-02-22T10:27:09.9641156Z Get:83 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 gstreamer1.0-plugins-base amd64 1.20.1-1 [712 kB]
2023-02-22T10:27:10.0567865Z Get:84 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libaa1 amd64 1.4p5-50build1 [51.9 kB]
2023-02-22T10:27:10.0736984Z Get:85 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libdv4 amd64 1.0.0-14build1 [61.9 kB]
2023-02-22T10:27:10.1023026Z Get:86 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libgstreamer-plugins-good1.0-0 amd64 1.20.3-0ubuntu1 [29.9 kB]
2023-02-22T10:27:10.1111032Z Get:87 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libshout3 amd64 2.4.5-1build3 [54.5 kB]
2023-02-22T10:27:10.1297514Z Get:88 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtag1v5-vanilla amd64 1.11.1+dfsg.1-3ubuntu3 [304 kB]
2023-02-22T10:27:10.1649992Z Get:89 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libtag1v5 amd64 1.11.1+dfsg.1-3ubuntu3 [11.5 kB]
2023-02-22T10:27:10.1786134Z Get:90 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libv4lconvert0 amd64 1.22.1-2build1 [82.4 kB]
2023-02-22T10:27:10.2002121Z Get:91 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libv4l-0 amd64 1.22.1-2build1 [44.9 kB]
2023-02-22T10:27:10.2144677Z Get:92 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libwavpack1 amd64 5.4.0-1build2 [83.7 kB]
2023-02-22T10:27:10.2296347Z Get:93 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 gstreamer1.0-plugins-good amd64 1.20.3-0ubuntu1 [2009 kB]
2023-02-22T10:27:10.3412704Z Get:94 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libdvdread8 amd64 6.1.2-1 [55.7 kB]
2023-02-22T10:27:10.3562227Z Get:95 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libdvdnav4 amd64 6.1.1-1 [39.3 kB]
2023-02-22T10:27:10.3731525Z Get:96 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libegl-mesa0 amd64 22.2.5-0ubuntu0.1~22.04.1 [111 kB]
2023-02-22T10:27:10.3911253Z Get:97 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libevent-2.1-7 amd64 2.1.12-stable-1build3 [148 kB]
2023-02-22T10:27:10.4204787Z Get:98 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libfaad2 amd64 2.10.0-2 [197 kB]
2023-02-22T10:27:10.4908745Z Get:99 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libffi7 amd64 3.3-5ubuntu1 [19.9 kB]
2023-02-22T10:27:10.5060108Z Get:100 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libinstpatch-1.0-2 amd64 1.1.6-1 [240 kB]
2023-02-22T10:27:10.5339321Z Get:101 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 timgm6mb-soundfont all 1.3-5 [5427 kB]
2023-02-22T10:27:10.6788673Z Get:102 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libfluidsynth3 amd64 2.2.5-1 [246 kB]
2023-02-22T10:27:10.7443209Z Get:103 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libfreeaptx0 amd64 0.1.1-1 [12.9 kB]
2023-02-22T10:27:10.7581114Z Get:104 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libgssdp-1.2-0 amd64 1.4.0.1-2build1 [48.9 kB]
2023-02-22T10:27:10.7722952Z Get:105 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libegl1 amd64 1.4.0-1 [28.6 kB]
2023-02-22T10:27:10.7896394Z Get:106 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libgstreamer-gl1.0-0 amd64 1.20.1-1 [203 kB]
2023-02-22T10:27:10.8098664Z Get:107 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libgupnp-1.2-1 amd64 1.4.3-1 [93.3 kB]
2023-02-22T10:27:10.8255839Z Get:108 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libgupnp-igd-1.0-4 amd64 1.2.0-1build1 [16.8 kB]
2023-02-22T10:27:10.8397740Z Get:109 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libharfbuzz-icu0 amd64 2.7.4-1ubuntu3.1 [5886 B]
2023-02-22T10:27:10.8535572Z Get:110 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libhyphen0 amd64 2.8.8-7build2 [28.2 kB]
2023-02-22T10:27:10.8687337Z Get:111 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libkate1 amd64 0.4.1-11build1 [39.4 kB]
2023-02-22T10:27:10.8822753Z Get:112 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libldacbt-enc2 amd64 2.0.2.3+git20200429+ed310a0-4 [24.6 kB]
2023-02-22T10:27:10.9108626Z Get:113 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libltc11 amd64 1.3.1-1 [12.3 kB]
2023-02-22T10:27:10.9242845Z Get:114 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libevdev2 amd64 1.12.1+dfsg-1 [39.5 kB]
2023-02-22T10:27:10.9501778Z Get:115 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libmanette-0.2-0 amd64 0.2.6-3build1 [30.4 kB]
2023-02-22T10:27:10.9669684Z Get:116 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libmjpegutils-2.1-0 amd64 1:2.1.0+debian-6build1 [24.1 kB]
2023-02-22T10:27:10.9819295Z Get:117 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libmodplug1 amd64 1:0.8.9.0-3 [153 kB]
2023-02-22T10:27:11.0149447Z Get:118 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libmpcdec6 amd64 2:0.1~r495-2 [32.4 kB]
2023-02-22T10:27:11.0282019Z Get:119 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libmpeg2encpp-2.1-0 amd64 1:2.1.0+debian-6build1 [69.4 kB]
2023-02-22T10:27:11.0870352Z Get:120 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libmplex2-2.1-0 amd64 1:2.1.0+debian-6build1 [44.4 kB]
2023-02-22T10:27:11.1027040Z Get:121 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libnice10 amd64 0.1.18-2 [156 kB]
2023-02-22T10:27:11.1236028Z Get:122 http://azure.archive.ubuntu.com/ubuntu jammy-updates/main amd64 libnotify4 amd64 0.7.9-3ubuntu5.22.04.1 [20.3 kB]
2023-02-22T10:27:11.1376021Z Get:123 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libopenh264-6 amd64 2.2.0+dfsg-2 [407 kB]
2023-02-22T10:27:11.1822067Z Get:124 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libopenni2-0 amd64 2.2.0.33+dfsg-15 [389 kB]
2023-02-22T10:27:11.2564853Z Get:125 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libqrencode4 amd64 4.1.1-1 [24.0 kB]
2023-02-22T10:27:11.2711909Z Get:126 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libsoundtouch1 amd64 2.3.1+ds1-1 [38.3 kB]
2023-02-22T10:27:11.2856656Z Get:127 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libspandsp2 amd64 0.0.6+dfsg-2 [272 kB]
2023-02-22T10:27:11.3054004Z Get:128 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libsrtp2-1 amd64 2.4.2-2 [40.7 kB]
2023-02-22T10:27:11.3199422Z Get:129 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libwebrtc-audio-processing1 amd64 0.3.1-0ubuntu5 [291 kB]
2023-02-22T10:27:11.3403814Z Get:130 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libwildmidi2 amd64 0.4.3-1 [59.9 kB]
2023-02-22T10:27:11.3550166Z Get:131 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libwoff1 amd64 1.0.2-1build4 [45.2 kB]
2023-02-22T10:27:11.3693816Z Get:132 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libzbar0 amd64 0.23.92-4build2 [121 kB]
2023-02-22T10:27:11.3852053Z Get:133 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libzxingcore1 amd64 1.2.0-1 [619 kB]
2023-02-22T10:27:11.4113101Z Get:134 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 xfonts-encodings all 1:1.0.5-0ubuntu2 [578 kB]
2023-02-22T10:27:11.4428087Z Get:135 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 xfonts-utils amd64 1:7.7+6build2 [94.6 kB]
2023-02-22T10:27:11.4891002Z Get:136 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 xfonts-cyrillic all 1:1.0.5 [386 kB]
2023-02-22T10:27:11.5313028Z Get:137 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 xfonts-scalable all 1:1.0.3-1.2ubuntu1 [306 kB]
2023-02-22T10:27:11.5502960Z Get:138 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libdca0 amd64 0.0.7-2 [88.2 kB]
2023-02-22T10:27:11.6068902Z Get:139 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 libgstreamer-plugins-bad1.0-0 amd64 1.20.3-0ubuntu1 [489 kB]
2023-02-22T10:27:11.6283935Z Get:140 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libsbc1 amd64 1.5-3build2 [34.4 kB]
2023-02-22T10:27:11.6417465Z Get:141 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libvo-aacenc0 amd64 0.1.3-2 [69.4 kB]
2023-02-22T10:27:11.6554775Z Get:142 http://azure.archive.ubuntu.com/ubuntu jammy/universe amd64 libvo-amrwbenc0 amd64 0.1.3-2 [68.2 kB]
2023-02-22T10:27:11.6692913Z Get:143 http://azure.archive.ubuntu.com/ubuntu jammy-updates/universe amd64 gstreamer1.0-plugins-bad amd64 1.20.3-0ubuntu1 [2602 kB]
2023-02-22T10:27:11.7141560Z Get:144 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libgles2 amd64 1.4.0-1 [18.0 kB]
2023-02-22T10:27:11.7282941Z Get:145 http://azure.archive.ubuntu.com/ubuntu jammy/main amd64 libopengl0 amd64 1.4.0-1 [36.5 kB]
2023-02-22T10:27:12.3408851Z Fetched 83.1 MB in 5s (17.9 MB/s)
2023-02-22T10:27:12.3747600Z Selecting previously unselected package fonts-ipafont-gothic.
2023-02-22T10:27:12.3942004Z (Reading database ... 
2023-02-22T10:27:12.3942276Z (Reading database ... 5%
2023-02-22T10:27:12.3942521Z (Reading database ... 10%
2023-02-22T10:27:12.3942746Z (Reading database ... 15%
2023-02-22T10:27:12.3946084Z (Reading database ... 20%
2023-02-22T10:27:12.3946554Z (Reading database ... 25%
2023-02-22T10:27:12.3946792Z (Reading database ... 30%
2023-02-22T10:27:12.3947017Z (Reading database ... 35%
2023-02-22T10:27:12.3947227Z (Reading database ... 40%
2023-02-22T10:27:12.3947450Z (Reading database ... 45%
2023-02-22T10:27:12.3947663Z (Reading database ... 50%
2023-02-22T10:27:12.4206198Z (Reading database ... 55%
2023-02-22T10:27:12.4527563Z (Reading database ... 60%
2023-02-22T10:27:12.4829938Z (Reading database ... 65%
2023-02-22T10:27:12.5247425Z (Reading database ... 70%
2023-02-22T10:27:12.5663257Z (Reading database ... 75%
2023-02-22T10:27:12.6435626Z (Reading database ... 80%
2023-02-22T10:27:12.6914954Z (Reading database ... 85%
2023-02-22T10:27:12.7453721Z (Reading database ... 90%
2023-02-22T10:27:12.7899546Z (Reading database ... 95%
2023-02-22T10:27:12.7899817Z (Reading database ... 100%
2023-02-22T10:27:12.7900362Z (Reading database ... 237666 files and directories currently installed.)
2023-02-22T10:27:12.7968401Z Preparing to unpack .../000-fonts-ipafont-gothic_00303-21ubuntu1_all.deb ...
2023-02-22T10:27:12.8043489Z Unpacking fonts-ipafont-gothic (00303-21ubuntu1) ...
2023-02-22T10:27:13.1353343Z Selecting previously unselected package libva2:amd64.
2023-02-22T10:27:13.1532302Z Preparing to unpack .../001-libva2_2.14.0-1_amd64.deb ...
2023-02-22T10:27:13.1555894Z Unpacking libva2:amd64 (2.14.0-1) ...
2023-02-22T10:27:13.1792754Z Selecting previously unselected package libmfx1:amd64.
2023-02-22T10:27:13.1986946Z Preparing to unpack .../002-libmfx1_22.3.0-1_amd64.deb ...
2023-02-22T10:27:13.2004036Z Unpacking libmfx1:amd64 (22.3.0-1) ...
2023-02-22T10:27:13.3230914Z Selecting previously unselected package libva-drm2:amd64.
2023-02-22T10:27:13.3437396Z Preparing to unpack .../003-libva-drm2_2.14.0-1_amd64.deb ...
2023-02-22T10:27:13.3451513Z Unpacking libva-drm2:amd64 (2.14.0-1) ...
2023-02-22T10:27:13.3712926Z Selecting previously unselected package libva-x11-2:amd64.
2023-02-22T10:27:13.3873741Z Preparing to unpack .../004-libva-x11-2_2.14.0-1_amd64.deb ...
2023-02-22T10:27:13.3885900Z Unpacking libva-x11-2:amd64 (2.14.0-1) ...
2023-02-22T10:27:13.4112998Z Selecting previously unselected package libvdpau1:amd64.
2023-02-22T10:27:13.4311304Z Preparing to unpack .../005-libvdpau1_1.4-3build2_amd64.deb ...
2023-02-22T10:27:13.4323773Z Unpacking libvdpau1:amd64 (1.4-3build2) ...
2023-02-22T10:27:13.4592759Z Selecting previously unselected package ocl-icd-libopencl1:amd64.
2023-02-22T10:27:13.4770001Z Preparing to unpack .../006-ocl-icd-libopencl1_2.2.14-3_amd64.deb ...
2023-02-22T10:27:13.4783623Z Unpacking ocl-icd-libopencl1:amd64 (2.2.14-3) ...
2023-02-22T10:27:13.5033629Z Selecting previously unselected package libavutil56:amd64.
2023-02-22T10:27:13.5246440Z Preparing to unpack .../007-libavutil56_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
2023-02-22T10:27:13.5254585Z Unpacking libavutil56:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:13.5593513Z Selecting previously unselected package libcodec2-1.0:amd64.
2023-02-22T10:27:13.5737567Z Preparing to unpack .../008-libcodec2-1.0_1.0.1-3_amd64.deb ...
2023-02-22T10:27:13.5756720Z Unpacking libcodec2-1.0:amd64 (1.0.1-3) ...
2023-02-22T10:27:13.6673838Z Selecting previously unselected package libgsm1:amd64.
2023-02-22T10:27:13.6853951Z Preparing to unpack .../009-libgsm1_1.0.19-1_amd64.deb ...
2023-02-22T10:27:13.6865891Z Unpacking libgsm1:amd64 (1.0.19-1) ...
2023-02-22T10:27:13.7112849Z Selecting previously unselected package libmp3lame0:amd64.
2023-02-22T10:27:13.7295759Z Preparing to unpack .../010-libmp3lame0_3.100-3build2_amd64.deb ...
2023-02-22T10:27:13.7310852Z Unpacking libmp3lame0:amd64 (3.100-3build2) ...
2023-02-22T10:27:13.7552446Z Selecting previously unselected package libopus0:amd64.
2023-02-22T10:27:13.7756871Z Preparing to unpack .../011-libopus0_1.3.1-0.1build2_amd64.deb ...
2023-02-22T10:27:13.7772889Z Unpacking libopus0:amd64 (1.3.1-0.1build2) ...
2023-02-22T10:27:13.8032641Z Selecting previously unselected package libshine3:amd64.
2023-02-22T10:27:13.8226348Z Preparing to unpack .../012-libshine3_3.1.1-2_amd64.deb ...
2023-02-22T10:27:13.8237518Z Unpacking libshine3:amd64 (3.1.1-2) ...
2023-02-22T10:27:13.8472694Z Selecting previously unselected package libspeex1:amd64.
2023-02-22T10:27:13.8668299Z Preparing to unpack .../013-libspeex1_1.2~rc1.2-1.1ubuntu3_amd64.deb ...
2023-02-22T10:27:13.8676756Z Unpacking libspeex1:amd64 (1.2~rc1.2-1.1ubuntu3) ...
2023-02-22T10:27:13.8912374Z Selecting previously unselected package libsoxr0:amd64.
2023-02-22T10:27:13.9096347Z Preparing to unpack .../014-libsoxr0_0.1.3-4build2_amd64.deb ...
2023-02-22T10:27:13.9110143Z Unpacking libsoxr0:amd64 (0.1.3-4build2) ...
2023-02-22T10:27:13.9318281Z Selecting previously unselected package libswresample3:amd64.
2023-02-22T10:27:13.9526002Z Preparing to unpack .../015-libswresample3_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
2023-02-22T10:27:13.9536302Z Unpacking libswresample3:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:13.9792979Z Selecting previously unselected package libtheora0:amd64.
2023-02-22T10:27:13.9966060Z Preparing to unpack .../016-libtheora0_1.1.1+dfsg.1-15ubuntu4_amd64.deb ...
2023-02-22T10:27:13.9976884Z Unpacking libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ...
2023-02-22T10:27:14.0273196Z Selecting previously unselected package libtwolame0:amd64.
2023-02-22T10:27:14.0443105Z Preparing to unpack .../017-libtwolame0_0.4.0-2build2_amd64.deb ...
2023-02-22T10:27:14.0451763Z Unpacking libtwolame0:amd64 (0.4.0-2build2) ...
2023-02-22T10:27:14.0713306Z Selecting previously unselected package libvorbisenc2:amd64.
2023-02-22T10:27:14.0884206Z Preparing to unpack .../018-libvorbisenc2_1.3.7-1build2_amd64.deb ...
2023-02-22T10:27:14.0894686Z Unpacking libvorbisenc2:amd64 (1.3.7-1build2) ...
2023-02-22T10:27:14.1193176Z Selecting previously unselected package libvpx7:amd64.
2023-02-22T10:27:14.1371074Z Preparing to unpack .../019-libvpx7_1.11.0-2ubuntu2_amd64.deb ...
2023-02-22T10:27:14.1389433Z Unpacking libvpx7:amd64 (1.11.0-2ubuntu2) ...
2023-02-22T10:27:14.1753343Z Selecting previously unselected package libx264-163:amd64.
2023-02-22T10:27:14.1961845Z Preparing to unpack .../020-libx264-163_2%3a0.163.3060+git5db6aa6-2build1_amd64.deb ...
2023-02-22T10:27:14.1974667Z Unpacking libx264-163:amd64 (2:0.163.3060+git5db6aa6-2build1) ...
2023-02-22T10:27:14.2292522Z Selecting previously unselected package libxvidcore4:amd64.
2023-02-22T10:27:14.2506015Z Preparing to unpack .../021-libxvidcore4_2%3a1.3.7-1_amd64.deb ...
2023-02-22T10:27:14.2513601Z Unpacking libxvidcore4:amd64 (2:1.3.7-1) ...
2023-02-22T10:27:14.2952512Z Selecting previously unselected package libzvbi-common.
2023-02-22T10:27:14.3125839Z Preparing to unpack .../022-libzvbi-common_0.2.35-19_all.deb ...
2023-02-22T10:27:14.3132960Z Unpacking libzvbi-common (0.2.35-19) ...
2023-02-22T10:27:14.3712370Z Selecting previously unselected package libzvbi0:amd64.
2023-02-22T10:27:14.3916513Z Preparing to unpack .../023-libzvbi0_0.2.35-19_amd64.deb ...
2023-02-22T10:27:14.3928102Z Unpacking libzvbi0:amd64 (0.2.35-19) ...
2023-02-22T10:27:14.4177917Z Selecting previously unselected package libavcodec58:amd64.
2023-02-22T10:27:14.4389158Z Preparing to unpack .../024-libavcodec58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
2023-02-22T10:27:14.4398362Z Unpacking libavcodec58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:14.5393504Z Selecting previously unselected package libraw1394-11:amd64.
2023-02-22T10:27:14.5556716Z Preparing to unpack .../025-libraw1394-11_2.1.2-2build2_amd64.deb ...
2023-02-22T10:27:14.5568616Z Unpacking libraw1394-11:amd64 (2.1.2-2build2) ...
2023-02-22T10:27:14.5794760Z Selecting previously unselected package libavc1394-0:amd64.
2023-02-22T10:27:14.6000949Z Preparing to unpack .../026-libavc1394-0_0.5.4-5build2_amd64.deb ...
2023-02-22T10:27:14.6015130Z Unpacking libavc1394-0:amd64 (0.5.4-5build2) ...
2023-02-22T10:27:14.6216536Z Selecting previously unselected package libass9:amd64.
2023-02-22T10:27:14.6422023Z Preparing to unpack .../027-libass9_1%3a0.15.2-1_amd64.deb ...
2023-02-22T10:27:14.6431584Z Unpacking libass9:amd64 (1:0.15.2-1) ...
2023-02-22T10:27:14.6713158Z Selecting previously unselected package libudfread0:amd64.
2023-02-22T10:27:14.6883635Z Preparing to unpack .../028-libudfread0_1.1.2-1_amd64.deb ...
2023-02-22T10:27:14.6893098Z Unpacking libudfread0:amd64 (1.1.2-1) ...
2023-02-22T10:27:14.7152597Z Selecting previously unselected package libbluray2:amd64.
2023-02-22T10:27:14.7322929Z Preparing to unpack .../029-libbluray2_1%3a1.3.1-1_amd64.deb ...
2023-02-22T10:27:14.7332405Z Unpacking libbluray2:amd64 (1:1.3.1-1) ...
2023-02-22T10:27:14.7632235Z Selecting previously unselected package libchromaprint1:amd64.
2023-02-22T10:27:14.7796219Z Preparing to unpack .../030-libchromaprint1_1.5.1-2_amd64.deb ...
2023-02-22T10:27:14.7807013Z Unpacking libchromaprint1:amd64 (1.5.1-2) ...
2023-02-22T10:27:14.8010981Z Selecting previously unselected package libgme0:amd64.
2023-02-22T10:27:14.8226246Z Preparing to unpack .../031-libgme0_0.6.3-2_amd64.deb ...
2023-02-22T10:27:14.8233677Z Unpacking libgme0:amd64 (0.6.3-2) ...
2023-02-22T10:27:14.8592546Z Selecting previously unselected package libmpg123-0:amd64.
2023-02-22T10:27:14.8762804Z Preparing to unpack .../032-libmpg123-0_1.29.3-1build1_amd64.deb ...
2023-02-22T10:27:14.8775014Z Unpacking libmpg123-0:amd64 (1.29.3-1build1) ...
2023-02-22T10:27:14.9033009Z Selecting previously unselected package libopenmpt0:amd64.
2023-02-22T10:27:14.9210554Z Preparing to unpack .../033-libopenmpt0_0.6.1-1_amd64.deb ...
2023-02-22T10:27:14.9232678Z Unpacking libopenmpt0:amd64 (0.6.1-1) ...
2023-02-22T10:27:14.9572502Z Selecting previously unselected package libsrt1.4-gnutls:amd64.
2023-02-22T10:27:14.9749367Z Preparing to unpack .../034-libsrt1.4-gnutls_1.4.4-4_amd64.deb ...
2023-02-22T10:27:14.9762277Z Unpacking libsrt1.4-gnutls:amd64 (1.4.4-4) ...
2023-02-22T10:27:15.0073045Z Selecting previously unselected package libssh-gcrypt-4:amd64.
2023-02-22T10:27:15.0251120Z Preparing to unpack .../035-libssh-gcrypt-4_0.9.6-2build1_amd64.deb ...
2023-02-22T10:27:15.0261083Z Unpacking libssh-gcrypt-4:amd64 (0.9.6-2build1) ...
2023-02-22T10:27:15.0552957Z Selecting previously unselected package libavformat58:amd64.
2023-02-22T10:27:15.0737286Z Preparing to unpack .../036-libavformat58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
2023-02-22T10:27:15.0750721Z Unpacking libavformat58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:15.1153080Z Selecting previously unselected package libbs2b0:amd64.
2023-02-22T10:27:15.1312294Z Preparing to unpack .../037-libbs2b0_3.1.0+dfsg-2.2build1_amd64.deb ...
2023-02-22T10:27:15.1323320Z Unpacking libbs2b0:amd64 (3.1.0+dfsg-2.2build1) ...
2023-02-22T10:27:15.1592786Z Selecting previously unselected package libflite1:amd64.
2023-02-22T10:27:15.1788221Z Preparing to unpack .../038-libflite1_2.2-3_amd64.deb ...
2023-02-22T10:27:15.1796189Z Unpacking libflite1:amd64 (2.2-3) ...
2023-02-22T10:27:15.3065852Z Selecting previously unselected package libserd-0-0:amd64.
2023-02-22T10:27:15.3277270Z Preparing to unpack .../039-libserd-0-0_0.30.10-2_amd64.deb ...
2023-02-22T10:27:15.3285985Z Unpacking libserd-0-0:amd64 (0.30.10-2) ...
2023-02-22T10:27:15.3553328Z Selecting previously unselected package libsord-0-0:amd64.
2023-02-22T10:27:15.3760659Z Preparing to unpack .../040-libsord-0-0_0.16.8-2_amd64.deb ...
2023-02-22T10:27:15.3771081Z Unpacking libsord-0-0:amd64 (0.16.8-2) ...
2023-02-22T10:27:15.4032344Z Selecting previously unselected package libsratom-0-0:amd64.
2023-02-22T10:27:15.4216426Z Preparing to unpack .../041-libsratom-0-0_0.6.8-1_amd64.deb ...
2023-02-22T10:27:15.4234025Z Unpacking libsratom-0-0:amd64 (0.6.8-1) ...
2023-02-22T10:27:15.4473158Z Selecting previously unselected package liblilv-0-0:amd64.
2023-02-22T10:27:15.4659714Z Preparing to unpack .../042-liblilv-0-0_0.24.12-2_amd64.deb ...
2023-02-22T10:27:15.4676160Z Unpacking liblilv-0-0:amd64 (0.24.12-2) ...
2023-02-22T10:27:15.4955971Z Selecting previously unselected package libmysofa1:amd64.
2023-02-22T10:27:15.5134800Z Preparing to unpack .../043-libmysofa1_1.2.1~dfsg0-1_amd64.deb ...
2023-02-22T10:27:15.5151527Z Unpacking libmysofa1:amd64 (1.2.1~dfsg0-1) ...
2023-02-22T10:27:15.5432777Z Selecting previously unselected package libasyncns0:amd64.
2023-02-22T10:27:15.5636828Z Preparing to unpack .../044-libasyncns0_0.8-6build2_amd64.deb ...
2023-02-22T10:27:15.5652415Z Unpacking libasyncns0:amd64 (0.8-6build2) ...
2023-02-22T10:27:15.5912632Z Selecting previously unselected package libflac8:amd64.
2023-02-22T10:27:15.6083783Z Preparing to unpack .../045-libflac8_1.3.3-2ubuntu0.1_amd64.deb ...
2023-02-22T10:27:15.6097611Z Unpacking libflac8:amd64 (1.3.3-2ubuntu0.1) ...
2023-02-22T10:27:15.6308829Z Selecting previously unselected package libsndfile1:amd64.
2023-02-22T10:27:15.6521305Z Preparing to unpack .../046-libsndfile1_1.0.31-2build1_amd64.deb ...
2023-02-22T10:27:15.6528031Z Unpacking libsndfile1:amd64 (1.0.31-2build1) ...
2023-02-22T10:27:15.6873024Z Selecting previously unselected package libpulse0:amd64.
2023-02-22T10:27:15.7016426Z Preparing to unpack .../047-libpulse0_1%3a15.99.1+dfsg1-1ubuntu2_amd64.deb ...
2023-02-22T10:27:15.7090463Z Unpacking libpulse0:amd64 (1:15.99.1+dfsg1-1ubuntu2) ...
2023-02-22T10:27:15.7374651Z Selecting previously unselected package libsphinxbase3:amd64.
2023-02-22T10:27:15.7587909Z Preparing to unpack .../048-libsphinxbase3_0.8+5prealpha+1-13build1_amd64.deb ...
2023-02-22T10:27:15.7595827Z Unpacking libsphinxbase3:amd64 (0.8+5prealpha+1-13build1) ...
2023-02-22T10:27:15.7832964Z Selecting previously unselected package libpocketsphinx3:amd64.
2023-02-22T10:27:15.8034046Z Preparing to unpack .../049-libpocketsphinx3_0.8.0+real5prealpha+1-14ubuntu1_amd64.deb ...
2023-02-22T10:27:15.8050623Z Unpacking libpocketsphinx3:amd64 (0.8.0+real5prealpha+1-14ubuntu1) ...
2023-02-22T10:27:15.8313301Z Selecting previously unselected package libpostproc55:amd64.
2023-02-22T10:27:15.8493720Z Preparing to unpack .../050-libpostproc55_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
2023-02-22T10:27:15.8504306Z Unpacking libpostproc55:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:15.8793033Z Selecting previously unselected package libsamplerate0:amd64.
2023-02-22T10:27:15.8974706Z Preparing to unpack .../051-libsamplerate0_0.2.2-1build1_amd64.deb ...
2023-02-22T10:27:15.8982602Z Unpacking libsamplerate0:amd64 (0.2.2-1build1) ...
2023-02-22T10:27:15.9352963Z Selecting previously unselected package librubberband2:amd64.
2023-02-22T10:27:15.9510044Z Preparing to unpack .../052-librubberband2_2.0.0-2_amd64.deb ...
2023-02-22T10:27:15.9522909Z Unpacking librubberband2:amd64 (2.0.0-2) ...
2023-02-22T10:27:15.9753329Z Selecting previously unselected package libswscale5:amd64.
2023-02-22T10:27:15.9965476Z Preparing to unpack .../053-libswscale5_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
2023-02-22T10:27:15.9975880Z Unpacking libswscale5:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:16.0273203Z Selecting previously unselected package libvidstab1.1:amd64.
2023-02-22T10:27:16.0459134Z Preparing to unpack .../054-libvidstab1.1_1.1.0-2_amd64.deb ...
2023-02-22T10:27:16.0474091Z Unpacking libvidstab1.1:amd64 (1.1.0-2) ...
2023-02-22T10:27:16.0752345Z Selecting previously unselected package libzimg2:amd64.
2023-02-22T10:27:16.0926065Z Preparing to unpack .../055-libzimg2_3.0.3+ds1-1_amd64.deb ...
2023-02-22T10:27:16.0937397Z Unpacking libzimg2:amd64 (3.0.3+ds1-1) ...
2023-02-22T10:27:16.1273168Z Selecting previously unselected package libavfilter7:amd64.
2023-02-22T10:27:16.1427970Z Preparing to unpack .../056-libavfilter7_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
2023-02-22T10:27:16.1453042Z Unpacking libavfilter7:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:16.2032537Z Selecting previously unselected package libcaca0:amd64.
2023-02-22T10:27:16.2174083Z Preparing to unpack .../057-libcaca0_0.99.beta19-2.2ubuntu4_amd64.deb ...
2023-02-22T10:27:16.2183447Z Unpacking libcaca0:amd64 (0.99.beta19-2.2ubuntu4) ...
2023-02-22T10:27:16.2513334Z Selecting previously unselected package libcdio19:amd64.
2023-02-22T10:27:16.2666202Z Preparing to unpack .../058-libcdio19_2.1.0-3build1_amd64.deb ...
2023-02-22T10:27:16.2675093Z Unpacking libcdio19:amd64 (2.1.0-3build1) ...
2023-02-22T10:27:16.2953581Z Selecting previously unselected package libcdio-cdda2:amd64.
2023-02-22T10:27:16.3117462Z Preparing to unpack .../059-libcdio-cdda2_10.2+2.0.0-1build3_amd64.deb ...
2023-02-22T10:27:16.3129067Z Unpacking libcdio-cdda2:amd64 (10.2+2.0.0-1build3) ...
2023-02-22T10:27:16.3352814Z Selecting previously unselected package libcdio-paranoia2:amd64.
2023-02-22T10:27:16.3533712Z Preparing to unpack .../060-libcdio-paranoia2_10.2+2.0.0-1build3_amd64.deb ...
2023-02-22T10:27:16.3542564Z Unpacking libcdio-paranoia2:amd64 (10.2+2.0.0-1build3) ...
2023-02-22T10:27:16.3792551Z Selecting previously unselected package libdc1394-25:amd64.
2023-02-22T10:27:16.3964637Z Preparing to unpack .../061-libdc1394-25_2.2.6-4_amd64.deb ...
2023-02-22T10:27:16.3971538Z Unpacking libdc1394-25:amd64 (2.2.6-4) ...
2023-02-22T10:27:16.4192891Z Selecting previously unselected package libiec61883-0:amd64.
2023-02-22T10:27:16.4390872Z Preparing to unpack .../062-libiec61883-0_1.2.0-4build3_amd64.deb ...
2023-02-22T10:27:16.4403421Z Unpacking libiec61883-0:amd64 (1.2.0-4build3) ...
2023-02-22T10:27:16.4616398Z Selecting previously unselected package libjack-jackd2-0:amd64.
2023-02-22T10:27:16.4827294Z Preparing to unpack .../063-libjack-jackd2-0_1.9.20~dfsg-1_amd64.deb ...
2023-02-22T10:27:16.4841017Z Unpacking libjack-jackd2-0:amd64 (1.9.20~dfsg-1) ...
2023-02-22T10:27:16.5152551Z Selecting previously unselected package libopenal-data.
2023-02-22T10:27:16.5318940Z Preparing to unpack .../064-libopenal-data_1%3a1.19.1-2build3_all.deb ...
2023-02-22T10:27:16.5330079Z Unpacking libopenal-data (1:1.19.1-2build3) ...
2023-02-22T10:27:16.5593130Z Selecting previously unselected package libsndio7.0:amd64.
2023-02-22T10:27:16.5776878Z Preparing to unpack .../065-libsndio7.0_1.8.1-1.1_amd64.deb ...
2023-02-22T10:27:16.5785053Z Unpacking libsndio7.0:amd64 (1.8.1-1.1) ...
2023-02-22T10:27:16.6032415Z Selecting previously unselected package libopenal1:amd64.
2023-02-22T10:27:16.6215444Z Preparing to unpack .../066-libopenal1_1%3a1.19.1-2build3_amd64.deb ...
2023-02-22T10:27:16.6229449Z Unpacking libopenal1:amd64 (1:1.19.1-2build3) ...
2023-02-22T10:27:16.6552449Z Selecting previously unselected package libdecor-0-0:amd64.
2023-02-22T10:27:16.6712296Z Preparing to unpack .../067-libdecor-0-0_0.1.0-3build1_amd64.deb ...
2023-02-22T10:27:16.6723708Z Unpacking libdecor-0-0:amd64 (0.1.0-3build1) ...
2023-02-22T10:27:16.6993204Z Selecting previously unselected package libsdl2-2.0-0:amd64.
2023-02-22T10:27:16.7153384Z Preparing to unpack .../068-libsdl2-2.0-0_2.0.20+dfsg-2ubuntu1.22.04.1_amd64.deb ...
2023-02-22T10:27:16.7161789Z Unpacking libsdl2-2.0-0:amd64 (2.0.20+dfsg-2ubuntu1.22.04.1) ...
2023-02-22T10:27:16.7472984Z Selecting previously unselected package libxcb-shape0:amd64.
2023-02-22T10:27:16.7670970Z Preparing to unpack .../069-libxcb-shape0_1.14-3ubuntu3_amd64.deb ...
2023-02-22T10:27:16.7681883Z Unpacking libxcb-shape0:amd64 (1.14-3ubuntu3) ...
2023-02-22T10:27:16.7909812Z Selecting previously unselected package libxv1:amd64.
2023-02-22T10:27:16.8083790Z Preparing to unpack .../070-libxv1_2%3a1.0.11-1build2_amd64.deb ...
2023-02-22T10:27:16.8092388Z Unpacking libxv1:amd64 (2:1.0.11-1build2) ...
2023-02-22T10:27:16.8352879Z Selecting previously unselected package libavdevice58:amd64.
2023-02-22T10:27:16.8517135Z Preparing to unpack .../071-libavdevice58_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
2023-02-22T10:27:16.8527142Z Unpacking libavdevice58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:16.8752538Z Selecting previously unselected package ffmpeg.
2023-02-22T10:27:16.8951766Z Preparing to unpack .../072-ffmpeg_7%3a4.4.2-0ubuntu0.22.04.1_amd64.deb ...
2023-02-22T10:27:16.8967033Z Unpacking ffmpeg (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:16.9474166Z Selecting previously unselected package fonts-freefont-ttf.
2023-02-22T10:27:16.9648011Z Preparing to unpack .../073-fonts-freefont-ttf_20120503-10build1_all.deb ...
2023-02-22T10:27:16.9655584Z Unpacking fonts-freefont-ttf (20120503-10build1) ...
2023-02-22T10:27:17.2113490Z Selecting previously unselected package fonts-tlwg-loma-otf.
2023-02-22T10:27:17.2312795Z Preparing to unpack .../074-fonts-tlwg-loma-otf_1%3a0.7.3-1_all.deb ...
2023-02-22T10:27:17.2321685Z Unpacking fonts-tlwg-loma-otf (1:0.7.3-1) ...
2023-02-22T10:27:17.2593037Z Selecting previously unselected package fonts-unifont.
2023-02-22T10:27:17.2757373Z Preparing to unpack .../075-fonts-unifont_1%3a14.0.01-1_all.deb ...
2023-02-22T10:27:17.2772570Z Unpacking fonts-unifont (1:14.0.01-1) ...
2023-02-22T10:27:17.3701621Z Selecting previously unselected package fonts-wqy-zenhei.
2023-02-22T10:27:17.3916978Z Preparing to unpack .../076-fonts-wqy-zenhei_0.9.45-8_all.deb ...
2023-02-22T10:27:17.4018487Z Unpacking fonts-wqy-zenhei (0.9.45-8) ...
2023-02-22T10:27:18.0833214Z Selecting previously unselected package liborc-0.4-0:amd64.
2023-02-22T10:27:18.0966082Z Preparing to unpack .../077-liborc-0.4-0_1%3a0.4.32-2_amd64.deb ...
2023-02-22T10:27:18.0974762Z Unpacking liborc-0.4-0:amd64 (1:0.4.32-2) ...
2023-02-22T10:27:18.1272742Z Selecting previously unselected package libgstreamer-plugins-base1.0-0:amd64.
2023-02-22T10:27:18.1436284Z Preparing to unpack .../078-libgstreamer-plugins-base1.0-0_1.20.1-1_amd64.deb ...
2023-02-22T10:27:18.1457548Z Unpacking libgstreamer-plugins-base1.0-0:amd64 (1.20.1-1) ...
2023-02-22T10:27:18.1833551Z Selecting previously unselected package gstreamer1.0-libav:amd64.
2023-02-22T10:27:18.2015803Z Preparing to unpack .../079-gstreamer1.0-libav_1.20.3-0ubuntu1_amd64.deb ...
2023-02-22T10:27:18.2033283Z Unpacking gstreamer1.0-libav:amd64 (1.20.3-0ubuntu1) ...
2023-02-22T10:27:18.2255138Z Selecting previously unselected package libcdparanoia0:amd64.
2023-02-22T10:27:18.2466119Z Preparing to unpack .../080-libcdparanoia0_3.10.2+debian-14build2_amd64.deb ...
2023-02-22T10:27:18.2478896Z Unpacking libcdparanoia0:amd64 (3.10.2+debian-14build2) ...
2023-02-22T10:27:18.2713484Z Selecting previously unselected package libvisual-0.4-0:amd64.
2023-02-22T10:27:18.2909498Z Preparing to unpack .../081-libvisual-0.4-0_0.4.0-17build2_amd64.deb ...
2023-02-22T10:27:18.2919632Z Unpacking libvisual-0.4-0:amd64 (0.4.0-17build2) ...
2023-02-22T10:27:18.3152738Z Selecting previously unselected package gstreamer1.0-plugins-base:amd64.
2023-02-22T10:27:18.3348203Z Preparing to unpack .../082-gstreamer1.0-plugins-base_1.20.1-1_amd64.deb ...
2023-02-22T10:27:18.3355890Z Unpacking gstreamer1.0-plugins-base:amd64 (1.20.1-1) ...
2023-02-22T10:27:18.3873779Z Selecting previously unselected package libaa1:amd64.
2023-02-22T10:27:18.4065204Z Preparing to unpack .../083-libaa1_1.4p5-50build1_amd64.deb ...
2023-02-22T10:27:18.4079267Z Unpacking libaa1:amd64 (1.4p5-50build1) ...
2023-02-22T10:27:18.4339171Z Selecting previously unselected package libdv4:amd64.
2023-02-22T10:27:18.4553092Z Preparing to unpack .../084-libdv4_1.0.0-14build1_amd64.deb ...
2023-02-22T10:27:18.4564271Z Unpacking libdv4:amd64 (1.0.0-14build1) ...
2023-02-22T10:27:18.4776373Z Selecting previously unselected package libgstreamer-plugins-good1.0-0:amd64.
2023-02-22T10:27:18.4986820Z Preparing to unpack .../085-libgstreamer-plugins-good1.0-0_1.20.3-0ubuntu1_amd64.deb ...
2023-02-22T10:27:18.4997188Z Unpacking libgstreamer-plugins-good1.0-0:amd64 (1.20.3-0ubuntu1) ...
2023-02-22T10:27:18.5272206Z Selecting previously unselected package libshout3:amd64.
2023-02-22T10:27:18.5433563Z Preparing to unpack .../086-libshout3_2.4.5-1build3_amd64.deb ...
2023-02-22T10:27:18.5444358Z Unpacking libshout3:amd64 (2.4.5-1build3) ...
2023-02-22T10:27:18.5712625Z Selecting previously unselected package libtag1v5-vanilla:amd64.
2023-02-22T10:27:18.5894197Z Preparing to unpack .../087-libtag1v5-vanilla_1.11.1+dfsg.1-3ubuntu3_amd64.deb ...
2023-02-22T10:27:18.5905572Z Unpacking libtag1v5-vanilla:amd64 (1.11.1+dfsg.1-3ubuntu3) ...
2023-02-22T10:27:18.6192430Z Selecting previously unselected package libtag1v5:amd64.
2023-02-22T10:27:18.6357868Z Preparing to unpack .../088-libtag1v5_1.11.1+dfsg.1-3ubuntu3_amd64.deb ...
2023-02-22T10:27:18.6368286Z Unpacking libtag1v5:amd64 (1.11.1+dfsg.1-3ubuntu3) ...
2023-02-22T10:27:18.6577331Z Selecting previously unselected package libv4lconvert0:amd64.
2023-02-22T10:27:18.6793861Z Preparing to unpack .../089-libv4lconvert0_1.22.1-2build1_amd64.deb ...
2023-02-22T10:27:18.6803169Z Unpacking libv4lconvert0:amd64 (1.22.1-2build1) ...
2023-02-22T10:27:18.7070279Z Selecting previously unselected package libv4l-0:amd64.
2023-02-22T10:27:18.7262647Z Preparing to unpack .../090-libv4l-0_1.22.1-2build1_amd64.deb ...
2023-02-22T10:27:18.7270121Z Unpacking libv4l-0:amd64 (1.22.1-2build1) ...
2023-02-22T10:27:18.7509163Z Selecting previously unselected package libwavpack1:amd64.
2023-02-22T10:27:18.7721839Z Preparing to unpack .../091-libwavpack1_5.4.0-1build2_amd64.deb ...
2023-02-22T10:27:18.7733942Z Unpacking libwavpack1:amd64 (5.4.0-1build2) ...
2023-02-22T10:27:18.7950803Z Selecting previously unselected package gstreamer1.0-plugins-good:amd64.
2023-02-22T10:27:18.8167663Z Preparing to unpack .../092-gstreamer1.0-plugins-good_1.20.3-0ubuntu1_amd64.deb ...
2023-02-22T10:27:18.8177676Z Unpacking gstreamer1.0-plugins-good:amd64 (1.20.3-0ubuntu1) ...
2023-02-22T10:27:18.8763603Z Selecting previously unselected package libdvdread8:amd64.
2023-02-22T10:27:18.8972666Z Preparing to unpack .../093-libdvdread8_6.1.2-1_amd64.deb ...
2023-02-22T10:27:18.8983141Z Unpacking libdvdread8:amd64 (6.1.2-1) ...
2023-02-22T10:27:18.9232861Z Selecting previously unselected package libdvdnav4:amd64.
2023-02-22T10:27:18.9419094Z Preparing to unpack .../094-libdvdnav4_6.1.1-1_amd64.deb ...
2023-02-22T10:27:18.9425973Z Unpacking libdvdnav4:amd64 (6.1.1-1) ...
2023-02-22T10:27:18.9712462Z Selecting previously unselected package libegl-mesa0:amd64.
2023-02-22T10:27:18.9863540Z Preparing to unpack .../095-libegl-mesa0_22.2.5-0ubuntu0.1~22.04.1_amd64.deb ...
2023-02-22T10:27:18.9873762Z Unpacking libegl-mesa0:amd64 (22.2.5-0ubuntu0.1~22.04.1) ...
2023-02-22T10:27:19.0093929Z Selecting previously unselected package libevent-2.1-7:amd64.
2023-02-22T10:27:19.0302929Z Preparing to unpack .../096-libevent-2.1-7_2.1.12-stable-1build3_amd64.deb ...
2023-02-22T10:27:19.0313319Z Unpacking libevent-2.1-7:amd64 (2.1.12-stable-1build3) ...
2023-02-22T10:27:19.0552849Z Selecting previously unselected package libfaad2:amd64.
2023-02-22T10:27:19.0734427Z Preparing to unpack .../097-libfaad2_2.10.0-2_amd64.deb ...
2023-02-22T10:27:19.0743728Z Unpacking libfaad2:amd64 (2.10.0-2) ...
2023-02-22T10:27:19.1032280Z Selecting previously unselected package libffi7:amd64.
2023-02-22T10:27:19.1192356Z Preparing to unpack .../098-libffi7_3.3-5ubuntu1_amd64.deb ...
2023-02-22T10:27:19.1204946Z Unpacking libffi7:amd64 (3.3-5ubuntu1) ...
2023-02-22T10:27:19.1472723Z Selecting previously unselected package libinstpatch-1.0-2:amd64.
2023-02-22T10:27:19.1634299Z Preparing to unpack .../099-libinstpatch-1.0-2_1.1.6-1_amd64.deb ...
2023-02-22T10:27:19.1642649Z Unpacking libinstpatch-1.0-2:amd64 (1.1.6-1) ...
2023-02-22T10:27:19.2153272Z Selecting previously unselected package timgm6mb-soundfont.
2023-02-22T10:27:19.2313904Z Preparing to unpack .../100-timgm6mb-soundfont_1.3-5_all.deb ...
2023-02-22T10:27:19.2325538Z Unpacking timgm6mb-soundfont (1.3-5) ...
2023-02-22T10:27:19.7312490Z Selecting previously unselected package libfluidsynth3:amd64.
2023-02-22T10:27:19.7503561Z Preparing to unpack .../101-libfluidsynth3_2.2.5-1_amd64.deb ...
2023-02-22T10:27:19.7513301Z Unpacking libfluidsynth3:amd64 (2.2.5-1) ...
2023-02-22T10:27:19.7793287Z Selecting previously unselected package libfreeaptx0:amd64.
2023-02-22T10:27:19.7965590Z Preparing to unpack .../102-libfreeaptx0_0.1.1-1_amd64.deb ...
2023-02-22T10:27:19.7977812Z Unpacking libfreeaptx0:amd64 (0.1.1-1) ...
2023-02-22T10:27:19.8192668Z Selecting previously unselected package libgssdp-1.2-0:amd64.
2023-02-22T10:27:19.8377502Z Preparing to unpack .../103-libgssdp-1.2-0_1.4.0.1-2build1_amd64.deb ...
2023-02-22T10:27:19.8390094Z Unpacking libgssdp-1.2-0:amd64 (1.4.0.1-2build1) ...
2023-02-22T10:27:19.8584485Z Selecting previously unselected package libegl1:amd64.
2023-02-22T10:27:19.8792039Z Preparing to unpack .../104-libegl1_1.4.0-1_amd64.deb ...
2023-02-22T10:27:19.8800462Z Unpacking libegl1:amd64 (1.4.0-1) ...
2023-02-22T10:27:19.9004351Z Selecting previously unselected package libgstreamer-gl1.0-0:amd64.
2023-02-22T10:27:19.9210316Z Preparing to unpack .../105-libgstreamer-gl1.0-0_1.20.1-1_amd64.deb ...
2023-02-22T10:27:19.9219374Z Unpacking libgstreamer-gl1.0-0:amd64 (1.20.1-1) ...
2023-02-22T10:27:19.9446628Z Selecting previously unselected package libgupnp-1.2-1:amd64.
2023-02-22T10:27:19.9654133Z Preparing to unpack .../106-libgupnp-1.2-1_1.4.3-1_amd64.deb ...
2023-02-22T10:27:19.9661783Z Unpacking libgupnp-1.2-1:amd64 (1.4.3-1) ...
2023-02-22T10:27:19.9913138Z Selecting previously unselected package libgupnp-igd-1.0-4:amd64.
2023-02-22T10:27:20.0096297Z Preparing to unpack .../107-libgupnp-igd-1.0-4_1.2.0-1build1_amd64.deb ...
2023-02-22T10:27:20.0104683Z Unpacking libgupnp-igd-1.0-4:amd64 (1.2.0-1build1) ...
2023-02-22T10:27:20.0352612Z Selecting previously unselected package libharfbuzz-icu0:amd64.
2023-02-22T10:27:20.0512458Z Preparing to unpack .../108-libharfbuzz-icu0_2.7.4-1ubuntu3.1_amd64.deb ...
2023-02-22T10:27:20.0520417Z Unpacking libharfbuzz-icu0:amd64 (2.7.4-1ubuntu3.1) ...
2023-02-22T10:27:20.0730284Z Selecting previously unselected package libhyphen0:amd64.
2023-02-22T10:27:20.0937375Z Preparing to unpack .../109-libhyphen0_2.8.8-7build2_amd64.deb ...
2023-02-22T10:27:20.0947515Z Unpacking libhyphen0:amd64 (2.8.8-7build2) ...
2023-02-22T10:27:20.1192947Z Selecting previously unselected package libkate1:amd64.
2023-02-22T10:27:20.1361639Z Preparing to unpack .../110-libkate1_0.4.1-11build1_amd64.deb ...
2023-02-22T10:27:20.1370671Z Unpacking libkate1:amd64 (0.4.1-11build1) ...
2023-02-22T10:27:20.1672508Z Selecting previously unselected package libldacbt-enc2:amd64.
2023-02-22T10:27:20.1849106Z Preparing to unpack .../111-libldacbt-enc2_2.0.2.3+git20200429+ed310a0-4_amd64.deb ...
2023-02-22T10:27:20.1858848Z Unpacking libldacbt-enc2:amd64 (2.0.2.3+git20200429+ed310a0-4) ...
2023-02-22T10:27:20.2082245Z Selecting previously unselected package libltc11:amd64.
2023-02-22T10:27:20.2290833Z Preparing to unpack .../112-libltc11_1.3.1-1_amd64.deb ...
2023-02-22T10:27:20.2299146Z Unpacking libltc11:amd64 (1.3.1-1) ...
2023-02-22T10:27:20.2512366Z Selecting previously unselected package libevdev2:amd64.
2023-02-22T10:27:20.2718632Z Preparing to unpack .../113-libevdev2_1.12.1+dfsg-1_amd64.deb ...
2023-02-22T10:27:20.2739236Z Unpacking libevdev2:amd64 (1.12.1+dfsg-1) ...
2023-02-22T10:27:20.2992685Z Selecting previously unselected package libmanette-0.2-0:amd64.
2023-02-22T10:27:20.3174833Z Preparing to unpack .../114-libmanette-0.2-0_0.2.6-3build1_amd64.deb ...
2023-02-22T10:27:20.3184403Z Unpacking libmanette-0.2-0:amd64 (0.2.6-3build1) ...
2023-02-22T10:27:20.3433242Z Selecting previously unselected package libmjpegutils-2.1-0:amd64.
2023-02-22T10:27:20.3602889Z Preparing to unpack .../115-libmjpegutils-2.1-0_1%3a2.1.0+debian-6build1_amd64.deb ...
2023-02-22T10:27:20.3615070Z Unpacking libmjpegutils-2.1-0:amd64 (1:2.1.0+debian-6build1) ...
2023-02-22T10:27:20.3864952Z Selecting previously unselected package libmodplug1:amd64.
2023-02-22T10:27:20.4079001Z Preparing to unpack .../116-libmodplug1_1%3a0.8.9.0-3_amd64.deb ...
2023-02-22T10:27:20.4088905Z Unpacking libmodplug1:amd64 (1:0.8.9.0-3) ...
2023-02-22T10:27:20.4433172Z Selecting previously unselected package libmpcdec6:amd64.
2023-02-22T10:27:20.4643254Z Preparing to unpack .../117-libmpcdec6_2%3a0.1~r495-2_amd64.deb ...
2023-02-22T10:27:20.4652258Z Unpacking libmpcdec6:amd64 (2:0.1~r495-2) ...
2023-02-22T10:27:20.4872818Z Selecting previously unselected package libmpeg2encpp-2.1-0:amd64.
2023-02-22T10:27:20.5080953Z Preparing to unpack .../118-libmpeg2encpp-2.1-0_1%3a2.1.0+debian-6build1_amd64.deb ...
2023-02-22T10:27:20.5093001Z Unpacking libmpeg2encpp-2.1-0:amd64 (1:2.1.0+debian-6build1) ...
2023-02-22T10:27:20.5432472Z Selecting previously unselected package libmplex2-2.1-0:amd64.
2023-02-22T10:27:20.5594196Z Preparing to unpack .../119-libmplex2-2.1-0_1%3a2.1.0+debian-6build1_amd64.deb ...
2023-02-22T10:27:20.5604809Z Unpacking libmplex2-2.1-0:amd64 (1:2.1.0+debian-6build1) ...
2023-02-22T10:27:20.5912300Z Selecting previously unselected package libnice10:amd64.
2023-02-22T10:27:20.6070727Z Preparing to unpack .../120-libnice10_0.1.18-2_amd64.deb ...
2023-02-22T10:27:20.6090919Z Unpacking libnice10:amd64 (0.1.18-2) ...
2023-02-22T10:27:20.6312444Z Selecting previously unselected package libnotify4:amd64.
2023-02-22T10:27:20.6513249Z Preparing to unpack .../121-libnotify4_0.7.9-3ubuntu5.22.04.1_amd64.deb ...
2023-02-22T10:27:20.6524386Z Unpacking libnotify4:amd64 (0.7.9-3ubuntu5.22.04.1) ...
2023-02-22T10:27:20.6734084Z Selecting previously unselected package libopenh264-6:amd64.
2023-02-22T10:27:20.6940269Z Preparing to unpack .../122-libopenh264-6_2.2.0+dfsg-2_amd64.deb ...
2023-02-22T10:27:20.6951968Z Unpacking libopenh264-6:amd64 (2.2.0+dfsg-2) ...
2023-02-22T10:27:20.7210168Z Selecting previously unselected package libopenni2-0:amd64.
2023-02-22T10:27:20.7418322Z Preparing to unpack .../123-libopenni2-0_2.2.0.33+dfsg-15_amd64.deb ...
2023-02-22T10:27:20.7432065Z Unpacking libopenni2-0:amd64 (2.2.0.33+dfsg-15) ...
2023-02-22T10:27:20.8025699Z Selecting previously unselected package libqrencode4:amd64.
2023-02-22T10:27:20.8245667Z Preparing to unpack .../124-libqrencode4_4.1.1-1_amd64.deb ...
2023-02-22T10:27:20.8262498Z Unpacking libqrencode4:amd64 (4.1.1-1) ...
2023-02-22T10:27:20.8552976Z Selecting previously unselected package libsoundtouch1:amd64.
2023-02-22T10:27:20.8696762Z Preparing to unpack .../125-libsoundtouch1_2.3.1+ds1-1_amd64.deb ...
2023-02-22T10:27:20.8716923Z Unpacking libsoundtouch1:amd64 (2.3.1+ds1-1) ...
2023-02-22T10:27:20.8992244Z Selecting previously unselected package libspandsp2:amd64.
2023-02-22T10:27:20.9168162Z Preparing to unpack .../126-libspandsp2_0.0.6+dfsg-2_amd64.deb ...
2023-02-22T10:27:20.9176994Z Unpacking libspandsp2:amd64 (0.0.6+dfsg-2) ...
2023-02-22T10:27:20.9657874Z Selecting previously unselected package libsrtp2-1:amd64.
2023-02-22T10:27:20.9871657Z Preparing to unpack .../127-libsrtp2-1_2.4.2-2_amd64.deb ...
2023-02-22T10:27:20.9882813Z Unpacking libsrtp2-1:amd64 (2.4.2-2) ...
2023-02-22T10:27:21.0152575Z Selecting previously unselected package libwebrtc-audio-processing1:amd64.
2023-02-22T10:27:21.0309297Z Preparing to unpack .../128-libwebrtc-audio-processing1_0.3.1-0ubuntu5_amd64.deb ...
2023-02-22T10:27:21.0326259Z Unpacking libwebrtc-audio-processing1:amd64 (0.3.1-0ubuntu5) ...
2023-02-22T10:27:21.0632382Z Selecting previously unselected package libwildmidi2:amd64.
2023-02-22T10:27:21.0784900Z Preparing to unpack .../129-libwildmidi2_0.4.3-1_amd64.deb ...
2023-02-22T10:27:21.0809487Z Unpacking libwildmidi2:amd64 (0.4.3-1) ...
2023-02-22T10:27:21.1112400Z Selecting previously unselected package libwoff1:amd64.
2023-02-22T10:27:21.1284066Z Preparing to unpack .../130-libwoff1_1.0.2-1build4_amd64.deb ...
2023-02-22T10:27:21.1307659Z Unpacking libwoff1:amd64 (1.0.2-1build4) ...
2023-02-22T10:27:21.1532589Z Selecting previously unselected package libzbar0:amd64.
2023-02-22T10:27:21.1741474Z Preparing to unpack .../131-libzbar0_0.23.92-4build2_amd64.deb ...
2023-02-22T10:27:21.1757548Z Unpacking libzbar0:amd64 (0.23.92-4build2) ...
2023-02-22T10:27:21.2033165Z Selecting previously unselected package libzxingcore1:amd64.
2023-02-22T10:27:21.2225342Z Preparing to unpack .../132-libzxingcore1_1.2.0-1_amd64.deb ...
2023-02-22T10:27:21.2233597Z Unpacking libzxingcore1:amd64 (1.2.0-1) ...
2023-02-22T10:27:21.2512345Z Selecting previously unselected package xfonts-encodings.
2023-02-22T10:27:21.2713136Z Preparing to unpack .../133-xfonts-encodings_1%3a1.0.5-0ubuntu2_all.deb ...
2023-02-22T10:27:21.2724726Z Unpacking xfonts-encodings (1:1.0.5-0ubuntu2) ...
2023-02-22T10:27:21.3073133Z Selecting previously unselected package xfonts-utils.
2023-02-22T10:27:21.3227988Z Preparing to unpack .../134-xfonts-utils_1%3a7.7+6build2_amd64.deb ...
2023-02-22T10:27:21.3238342Z Unpacking xfonts-utils (1:7.7+6build2) ...
2023-02-22T10:27:21.3645547Z Selecting previously unselected package xfonts-cyrillic.
2023-02-22T10:27:21.3859783Z Preparing to unpack .../135-xfonts-cyrillic_1%3a1.0.5_all.deb ...
2023-02-22T10:27:21.3870280Z Unpacking xfonts-cyrillic (1:1.0.5) ...
2023-02-22T10:27:21.4473621Z Selecting previously unselected package xfonts-scalable.
2023-02-22T10:27:21.4669413Z Preparing to unpack .../136-xfonts-scalable_1%3a1.0.3-1.2ubuntu1_all.deb ...
2023-02-22T10:27:21.4682606Z Unpacking xfonts-scalable (1:1.0.3-1.2ubuntu1) ...
2023-02-22T10:27:21.4920121Z Selecting previously unselected package libdca0:amd64.
2023-02-22T10:27:21.5131848Z Preparing to unpack .../137-libdca0_0.0.7-2_amd64.deb ...
2023-02-22T10:27:21.5148975Z Unpacking libdca0:amd64 (0.0.7-2) ...
2023-02-22T10:27:21.5472846Z Selecting previously unselected package libgstreamer-plugins-bad1.0-0:amd64.
2023-02-22T10:27:21.5650789Z Preparing to unpack .../138-libgstreamer-plugins-bad1.0-0_1.20.3-0ubuntu1_amd64.deb ...
2023-02-22T10:27:21.5661636Z Unpacking libgstreamer-plugins-bad1.0-0:amd64 (1.20.3-0ubuntu1) ...
2023-02-22T10:27:21.5992558Z Selecting previously unselected package libsbc1:amd64.
2023-02-22T10:27:21.6204022Z Preparing to unpack .../139-libsbc1_1.5-3build2_amd64.deb ...
2023-02-22T10:27:21.6213336Z Unpacking libsbc1:amd64 (1.5-3build2) ...
2023-02-22T10:27:21.6417509Z Selecting previously unselected package libvo-aacenc0:amd64.
2023-02-22T10:27:21.6629294Z Preparing to unpack .../140-libvo-aacenc0_0.1.3-2_amd64.deb ...
2023-02-22T10:27:21.6636498Z Unpacking libvo-aacenc0:amd64 (0.1.3-2) ...
2023-02-22T10:27:21.6912748Z Selecting previously unselected package libvo-amrwbenc0:amd64.
2023-02-22T10:27:21.7112959Z Preparing to unpack .../141-libvo-amrwbenc0_0.1.3-2_amd64.deb ...
2023-02-22T10:27:21.7127937Z Unpacking libvo-amrwbenc0:amd64 (0.1.3-2) ...
2023-02-22T10:27:21.7432679Z Selecting previously unselected package gstreamer1.0-plugins-bad:amd64.
2023-02-22T10:27:21.7604819Z Preparing to unpack .../142-gstreamer1.0-plugins-bad_1.20.3-0ubuntu1_amd64.deb ...
2023-02-22T10:27:21.7612255Z Unpacking gstreamer1.0-plugins-bad:amd64 (1.20.3-0ubuntu1) ...
2023-02-22T10:27:21.9586243Z Selecting previously unselected package libgles2:amd64.
2023-02-22T10:27:21.9797480Z Preparing to unpack .../143-libgles2_1.4.0-1_amd64.deb ...
2023-02-22T10:27:21.9812991Z Unpacking libgles2:amd64 (1.4.0-1) ...
2023-02-22T10:27:22.0030349Z Selecting previously unselected package libopengl0:amd64.
2023-02-22T10:27:22.0242160Z Preparing to unpack .../144-libopengl0_1.4.0-1_amd64.deb ...
2023-02-22T10:27:22.0250131Z Unpacking libopengl0:amd64 (1.4.0-1) ...
2023-02-22T10:27:22.0834577Z Setting up libgme0:amd64 (0.6.3-2) ...
2023-02-22T10:27:22.0871761Z Setting up libssh-gcrypt-4:amd64 (0.9.6-2build1) ...
2023-02-22T10:27:22.0897317Z Setting up libsrt1.4-gnutls:amd64 (1.4.4-4) ...
2023-02-22T10:27:22.0942922Z Setting up libfreeaptx0:amd64 (0.1.1-1) ...
2023-02-22T10:27:22.0976314Z Setting up libudfread0:amd64 (1.1.2-1) ...
2023-02-22T10:27:22.1011583Z Setting up libmodplug1:amd64 (1:0.8.9.0-3) ...
2023-02-22T10:27:22.1036974Z Setting up libcdparanoia0:amd64 (3.10.2+debian-14build2) ...
2023-02-22T10:27:22.1071278Z Setting up libvo-amrwbenc0:amd64 (0.1.3-2) ...
2023-02-22T10:27:22.1093765Z Setting up libraw1394-11:amd64 (2.1.2-2build2) ...
2023-02-22T10:27:22.1115371Z Setting up libsbc1:amd64 (1.5-3build2) ...
2023-02-22T10:27:22.1156292Z Setting up libtag1v5-vanilla:amd64 (1.11.1+dfsg.1-3ubuntu3) ...
2023-02-22T10:27:22.1194655Z Setting up libkate1:amd64 (0.4.1-11build1) ...
2023-02-22T10:27:22.1218868Z Setting up libharfbuzz-icu0:amd64 (2.7.4-1ubuntu3.1) ...
2023-02-22T10:27:22.1248477Z Setting up libcodec2-1.0:amd64 (1.0.1-3) ...
2023-02-22T10:27:22.1290976Z Setting up libopenni2-0:amd64 (2.2.0.33+dfsg-15) ...
2023-02-22T10:27:22.1332238Z Setting up libmpg123-0:amd64 (1.29.3-1build1) ...
2023-02-22T10:27:22.1361680Z Setting up libspeex1:amd64 (1.2~rc1.2-1.1ubuntu3) ...
2023-02-22T10:27:22.1392003Z Setting up libshine3:amd64 (3.1.1-2) ...
2023-02-22T10:27:22.1418860Z Setting up libcaca0:amd64 (0.99.beta19-2.2ubuntu4) ...
2023-02-22T10:27:22.1471691Z Setting up libtwolame0:amd64 (0.4.0-2build2) ...
2023-02-22T10:27:22.1500162Z Setting up libwoff1:amd64 (1.0.2-1build4) ...
2023-02-22T10:27:22.1525687Z Setting up libqrencode4:amd64 (4.1.1-1) ...
2023-02-22T10:27:22.1555266Z Setting up libhyphen0:amd64 (2.8.8-7build2) ...
2023-02-22T10:27:22.1580582Z Setting up libgsm1:amd64 (1.0.19-1) ...
2023-02-22T10:27:22.1604082Z Setting up libvisual-0.4-0:amd64 (0.4.0-17build2) ...
2023-02-22T10:27:22.1645293Z Setting up libsoxr0:amd64 (0.1.3-4build2) ...
2023-02-22T10:27:22.1682741Z Setting up libsrtp2-1:amd64 (2.4.2-2) ...
2023-02-22T10:27:22.1724188Z Setting up libffi7:amd64 (3.3-5ubuntu1) ...
2023-02-22T10:27:22.1770220Z Setting up libmysofa1:amd64 (1.2.1~dfsg0-1) ...
2023-02-22T10:27:22.1814444Z Setting up libxcb-shape0:amd64 (1.14-3ubuntu3) ...
2023-02-22T10:27:22.1864497Z Setting up libldacbt-enc2:amd64 (2.0.2.3+git20200429+ed310a0-4) ...
2023-02-22T10:27:22.1906452Z Setting up fonts-wqy-zenhei (0.9.45-8) ...
2023-02-22T10:27:22.2066720Z Setting up libwebrtc-audio-processing1:amd64 (0.3.1-0ubuntu5) ...
2023-02-22T10:27:22.2092789Z Setting up fonts-freefont-ttf (20120503-10build1) ...
2023-02-22T10:27:22.2122071Z Setting up libcdio19:amd64 (2.1.0-3build1) ...
2023-02-22T10:27:22.2152636Z Setting up libxvidcore4:amd64 (2:1.3.7-1) ...
2023-02-22T10:27:22.2184421Z Setting up libmpcdec6:amd64 (2:0.1~r495-2) ...
2023-02-22T10:27:22.2230087Z Setting up libopengl0:amd64 (1.4.0-1) ...
2023-02-22T10:27:22.2267157Z Setting up libspandsp2:amd64 (0.0.6+dfsg-2) ...
2023-02-22T10:27:22.2289499Z Setting up libflac8:amd64 (1.3.3-2ubuntu0.1) ...
2023-02-22T10:27:22.2314529Z Setting up libvo-aacenc0:amd64 (0.1.3-2) ...
2023-02-22T10:27:22.2342399Z Setting up libegl-mesa0:amd64 (22.2.5-0ubuntu0.1~22.04.1) ...
2023-02-22T10:27:22.2370857Z Setting up libsoundtouch1:amd64 (2.3.1+ds1-1) ...
2023-02-22T10:27:22.2404877Z Setting up libgles2:amd64 (1.4.0-1) ...
2023-02-22T10:27:22.2432139Z Setting up fonts-tlwg-loma-otf (1:0.7.3-1) ...
2023-02-22T10:27:22.2466512Z Setting up libass9:amd64 (1:0.15.2-1) ...
2023-02-22T10:27:22.2493144Z Setting up libdvdread8:amd64 (6.1.2-1) ...
2023-02-22T10:27:22.2517993Z Setting up libva2:amd64 (2.14.0-1) ...
2023-02-22T10:27:22.2561481Z Setting up libnotify4:amd64 (0.7.9-3ubuntu5.22.04.1) ...
2023-02-22T10:27:22.2600313Z Setting up libx264-163:amd64 (2:0.163.3060+git5db6aa6-2build1) ...
2023-02-22T10:27:22.2632049Z Setting up xfonts-encodings (1:1.0.5-0ubuntu2) ...
2023-02-22T10:27:22.2670070Z Setting up libopus0:amd64 (1.3.1-0.1build2) ...
2023-02-22T10:27:22.2702430Z Setting up libfaad2:amd64 (2.10.0-2) ...
2023-02-22T10:27:22.2732641Z Setting up libdc1394-25:amd64 (2.2.6-4) ...
2023-02-22T10:27:22.2782686Z Setting up libxv1:amd64 (2:1.0.11-1build2) ...
2023-02-22T10:27:22.2829512Z Setting up libevent-2.1-7:amd64 (2.1.12-stable-1build3) ...
2023-02-22T10:27:22.2870412Z Setting up liborc-0.4-0:amd64 (1:0.4.32-2) ...
2023-02-22T10:27:22.2911781Z Setting up libltc11:amd64 (1.3.1-1) ...
2023-02-22T10:27:22.2953822Z Setting up libsndio7.0:amd64 (1.8.1-1.1) ...
2023-02-22T10:27:22.2992246Z Setting up libvidstab1.1:amd64 (1.1.0-2) ...
2023-02-22T10:27:22.3023802Z Setting up libtag1v5:amd64 (1.11.1+dfsg.1-3ubuntu3) ...
2023-02-22T10:27:22.3050768Z Setting up libflite1:amd64 (2.2-3) ...
2023-02-22T10:27:22.3085261Z Setting up libva-drm2:amd64 (2.14.0-1) ...
2023-02-22T10:27:22.3111641Z Setting up libdv4:amd64 (1.0.0-14build1) ...
2023-02-22T10:27:22.3136256Z Setting up fonts-ipafont-gothic (00303-21ubuntu1) ...
2023-02-22T10:27:22.3218598Z update-alternatives: using /usr/share/fonts/opentype/ipafont-gothic/ipag.ttf to provide /usr/share/fonts/truetype/fonts-japanese-gothic.ttf (fonts-japanese-gothic.ttf) in auto mode
2023-02-22T10:27:22.3251817Z Setting up ocl-icd-libopencl1:amd64 (2.2.14-3) ...
2023-02-22T10:27:22.3295387Z Setting up libasyncns0:amd64 (0.8-6build2) ...
2023-02-22T10:27:22.3337074Z Setting up libwildmidi2:amd64 (0.4.3-1) ...
2023-02-22T10:27:22.3360112Z Setting up libopenh264-6:amd64 (2.2.0+dfsg-2) ...
2023-02-22T10:27:22.3388286Z Setting up libvdpau1:amd64 (1.4-3build2) ...
2023-02-22T10:27:22.3424631Z Setting up libwavpack1:amd64 (5.4.0-1build2) ...
2023-02-22T10:27:22.3464916Z Setting up libbs2b0:amd64 (3.1.0+dfsg-2.2build1) ...
2023-02-22T10:27:22.3513722Z Setting up libzxingcore1:amd64 (1.2.0-1) ...
2023-02-22T10:27:22.3542374Z Setting up libtheora0:amd64 (1.1.1+dfsg.1-15ubuntu4) ...
2023-02-22T10:27:22.3578644Z Setting up libv4lconvert0:amd64 (1.22.1-2build1) ...
2023-02-22T10:27:22.3616506Z Setting up libegl1:amd64 (1.4.0-1) ...
2023-02-22T10:27:22.3656936Z Setting up libdecor-0-0:amd64 (0.1.0-3build1) ...
2023-02-22T10:27:22.3686468Z Setting up libdca0:amd64 (0.0.7-2) ...
2023-02-22T10:27:22.3714761Z Setting up libzimg2:amd64 (3.0.3+ds1-1) ...
2023-02-22T10:27:22.3756471Z Setting up libopenal-data (1:1.19.1-2build3) ...
2023-02-22T10:27:22.3803897Z Setting up libvpx7:amd64 (1.11.0-2ubuntu2) ...
2023-02-22T10:27:22.3840556Z Setting up libmfx1:amd64 (22.3.0-1) ...
2023-02-22T10:27:22.4023300Z Setting up libbluray2:amd64 (1:1.3.1-1) ...
2023-02-22T10:27:22.4062762Z Setting up libsamplerate0:amd64 (0.2.2-1build1) ...
2023-02-22T10:27:22.4104859Z Setting up timgm6mb-soundfont (1.3-5) ...
2023-02-22T10:27:22.4211907Z update-alternatives: using /usr/share/sounds/sf2/TimGM6mb.sf2 to provide /usr/share/sounds/sf2/default-GM.sf2 (default-GM.sf2) in auto mode
2023-02-22T10:27:22.4272536Z update-alternatives: using /usr/share/sounds/sf2/TimGM6mb.sf2 to provide /usr/share/sounds/sf3/default-GM.sf3 (default-GM.sf3) in auto mode
2023-02-22T10:27:22.4303845Z Setting up libva-x11-2:amd64 (2.14.0-1) ...
2023-02-22T10:27:22.4342419Z Setting up libevdev2:amd64 (1.12.1+dfsg-1) ...
2023-02-22T10:27:22.4403706Z Setting up libopenmpt0:amd64 (0.6.1-1) ...
2023-02-22T10:27:22.4447798Z Setting up libmjpegutils-2.1-0:amd64 (1:2.1.0+debian-6build1) ...
2023-02-22T10:27:22.4501669Z Setting up libzvbi-common (0.2.35-19) ...
2023-02-22T10:27:22.4553647Z Setting up libgssdp-1.2-0:amd64 (1.4.0.1-2build1) ...
2023-02-22T10:27:22.4582146Z Setting up libmp3lame0:amd64 (3.100-3build2) ...
2023-02-22T10:27:22.4620591Z Setting up libvorbisenc2:amd64 (1.3.7-1build2) ...
2023-02-22T10:27:22.4653820Z Setting up libdvdnav4:amd64 (6.1.1-1) ...
2023-02-22T10:27:22.4685271Z Setting up fonts-unifont (1:14.0.01-1) ...
2023-02-22T10:27:22.4712811Z Setting up libaa1:amd64 (1.4p5-50build1) ...
2023-02-22T10:27:22.4740526Z Setting up libiec61883-0:amd64 (1.2.0-4build3) ...
2023-02-22T10:27:22.4765180Z Setting up libserd-0-0:amd64 (0.30.10-2) ...
2023-02-22T10:27:22.4804860Z Setting up libgupnp-1.2-1:amd64 (1.4.3-1) ...
2023-02-22T10:27:22.4830822Z Setting up libavc1394-0:amd64 (0.5.4-5build2) ...
2023-02-22T10:27:22.4862180Z Setting up libzvbi0:amd64 (0.2.35-19) ...
2023-02-22T10:27:22.4900330Z Setting up libcdio-cdda2:amd64 (10.2+2.0.0-1build3) ...
2023-02-22T10:27:22.4931679Z Setting up libcdio-paranoia2:amd64 (10.2+2.0.0-1build3) ...
2023-02-22T10:27:22.4960756Z Setting up libmanette-0.2-0:amd64 (0.2.6-3build1) ...
2023-02-22T10:27:22.4994930Z Setting up libgstreamer-plugins-base1.0-0:amd64 (1.20.1-1) ...
2023-02-22T10:27:22.5027552Z Setting up libopenal1:amd64 (1:1.19.1-2build3) ...
2023-02-22T10:27:22.5061923Z Setting up xfonts-utils (1:7.7+6build2) ...
2023-02-22T10:27:22.5120975Z Setting up libavutil56:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:22.5158782Z Setting up libv4l-0:amd64 (1.22.1-2build1) ...
2023-02-22T10:27:22.5183746Z Setting up libgstreamer-plugins-bad1.0-0:amd64 (1.20.3-0ubuntu1) ...
2023-02-22T10:27:22.5210728Z Setting up libgupnp-igd-1.0-4:amd64 (1.2.0-1build1) ...
2023-02-22T10:27:22.5241132Z Setting up libgstreamer-plugins-good1.0-0:amd64 (1.20.3-0ubuntu1) ...
2023-02-22T10:27:22.5265535Z Setting up libgstreamer-gl1.0-0:amd64 (1.20.1-1) ...
2023-02-22T10:27:22.5300743Z Setting up gstreamer1.0-plugins-base:amd64 (1.20.1-1) ...
2023-02-22T10:27:22.5339024Z Setting up libnice10:amd64 (0.1.18-2) ...
2023-02-22T10:27:22.5381617Z Setting up libshout3:amd64 (2.4.5-1build3) ...
2023-02-22T10:27:22.5413502Z Setting up libpostproc55:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:22.5441642Z Setting up libmpeg2encpp-2.1-0:amd64 (1:2.1.0+debian-6build1) ...
2023-02-22T10:27:22.5476231Z Setting up librubberband2:amd64 (2.0.0-2) ...
2023-02-22T10:27:22.5520465Z Setting up libjack-jackd2-0:amd64 (1.9.20~dfsg-1) ...
2023-02-22T10:27:22.5570464Z Setting up libsord-0-0:amd64 (0.16.8-2) ...
2023-02-22T10:27:22.5601255Z Setting up xfonts-cyrillic (1:1.0.5) ...
2023-02-22T10:27:22.6108158Z Setting up libsratom-0-0:amd64 (0.6.8-1) ...
2023-02-22T10:27:22.6131663Z Setting up libswscale5:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:22.6152462Z Setting up libmplex2-2.1-0:amd64 (1:2.1.0+debian-6build1) ...
2023-02-22T10:27:22.6177172Z Setting up libsndfile1:amd64 (1.0.31-2build1) ...
2023-02-22T10:27:22.6210938Z Setting up liblilv-0-0:amd64 (0.24.12-2) ...
2023-02-22T10:27:22.6249790Z Setting up libinstpatch-1.0-2:amd64 (1.1.6-1) ...
2023-02-22T10:27:22.6272226Z Setting up xfonts-scalable (1:1.0.3-1.2ubuntu1) ...
2023-02-22T10:27:22.6934344Z Setting up libpulse0:amd64 (1:15.99.1+dfsg1-1ubuntu2) ...
2023-02-22T10:27:22.7012548Z Setting up libzbar0:amd64 (0.23.92-4build2) ...
2023-02-22T10:27:22.7042892Z Setting up gstreamer1.0-plugins-good:amd64 (1.20.3-0ubuntu1) ...
2023-02-22T10:27:22.7069790Z Setting up libswresample3:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:22.7109000Z Setting up libavcodec58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:22.7142112Z Setting up libsdl2-2.0-0:amd64 (2.0.20+dfsg-2ubuntu1.22.04.1) ...
2023-02-22T10:27:22.7167678Z Setting up libfluidsynth3:amd64 (2.2.5-1) ...
2023-02-22T10:27:22.7201543Z Setting up libchromaprint1:amd64 (1.5.1-2) ...
2023-02-22T10:27:22.7228966Z Setting up libsphinxbase3:amd64 (0.8+5prealpha+1-13build1) ...
2023-02-22T10:27:22.7251895Z Setting up libavformat58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:22.7273357Z Setting up libpocketsphinx3:amd64 (0.8.0+real5prealpha+1-14ubuntu1) ...
2023-02-22T10:27:22.7297174Z Setting up gstreamer1.0-plugins-bad:amd64 (1.20.3-0ubuntu1) ...
2023-02-22T10:27:22.7318930Z Setting up libavfilter7:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:22.7339102Z Setting up gstreamer1.0-libav:amd64 (1.20.3-0ubuntu1) ...
2023-02-22T10:27:22.7372772Z Setting up libavdevice58:amd64 (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:22.7394198Z Setting up ffmpeg (7:4.4.2-0ubuntu0.22.04.1) ...
2023-02-22T10:27:22.7424360Z Processing triggers for libc-bin (2.35-0ubuntu3.1) ...
2023-02-22T10:27:22.7773097Z Processing triggers for man-db (2.10.2-1) ...
2023-02-22T10:27:23.3916610Z Processing triggers for fontconfig (2.13.1-4.2ubuntu5) ...
2023-02-22T10:27:23.8985609Z NEEDRESTART-VER: 3.5
2023-02-22T10:27:24.2143778Z NEEDRESTART-KCUR: 5.15.0-1033-azure
2023-02-22T10:27:24.2144186Z NEEDRESTART-KEXP: 5.15.0-1033-azure
2023-02-22T10:27:24.2144536Z NEEDRESTART-KSTA: 1
2023-02-22T10:27:25.3114895Z ##[group]Run cd shared/document
2023-02-22T10:27:25.3115162Z cd shared/document
2023-02-22T10:27:25.3115444Z npx playwright test -c playwright-visual.config.ts
2023-02-22T10:27:25.3167809Z shell: /usr/bin/bash -e {0}
2023-02-22T10:27:25.3168015Z ##[endgroup]
2023-02-22T10:27:27.0506654Z Starting test
2023-02-22T10:27:27.1281924Z ##[error]Process completed with exit code 1.
2023-02-22T10:27:27.1325730Z ##[group]Run actions/upload-artifact@v3
2023-02-22T10:27:27.1325962Z with:
2023-02-22T10:27:27.1326160Z   name: playwright-report
2023-02-22T10:27:27.1326405Z   path: shared/document/playwright-report
2023-02-22T10:27:27.1326639Z   retention-days: 30
2023-02-22T10:27:27.1326843Z   if-no-files-found: warn
2023-02-22T10:27:27.1327189Z ##[endgroup]
2023-02-22T10:27:27.2059382Z With the provided path, there will be 1 file uploaded
2023-02-22T10:27:27.2062488Z Starting artifact upload
2023-02-22T10:27:27.2063523Z For more detailed logs during the artifact upload process, enable step-debugging: https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging
2023-02-22T10:27:27.2064133Z Artifact name is valid!
2023-02-22T10:27:27.2564612Z Container for artifact "playwright-report" successfully created. Starting upload of file(s)
2023-02-22T10:27:27.4074684Z Total size of all the files uploaded is 187167 bytes
2023-02-22T10:27:27.4075397Z File upload process has finished. Finalizing the artifact upload
2023-02-22T10:27:27.6060402Z Artifact has been finalized. All files have been successfully uploaded!
2023-02-22T10:27:27.6061114Z 
2023-02-22T10:27:27.6061741Z The raw size of all the files that were specified for upload is 430345 bytes
2023-02-22T10:27:27.6062486Z The size of all the files that were uploaded is 187167 bytes. This takes into account any gzip compression used to reduce the upload size, time and storage
2023-02-22T10:27:27.6062845Z 
2023-02-22T10:27:27.6063706Z Note: The size of downloaded zips can differ significantly from the reported size. For more information see: https://github.com/actions/upload-artifact#zipped-artifact-downloads 
2023-02-22T10:27:27.6064130Z 
2023-02-22T10:27:27.6064502Z Artifact playwright-report has been successfully uploaded!
2023-02-22T10:27:27.6092193Z ##[group]Run actions/upload-artifact@v3
2023-02-22T10:27:27.6092416Z with:
2023-02-22T10:27:27.6092615Z   name: playwright-test-summary
2023-02-22T10:27:27.6092925Z   path: shared/document/testing/import-export/web/test-summary/summary.txt
2023-02-22T10:27:27.6093211Z   retention-days: 30
2023-02-22T10:27:27.6093419Z   if-no-files-found: warn
2023-02-22T10:27:27.6093624Z ##[endgroup]
2023-02-22T10:27:27.6835040Z With the provided path, there will be 1 file uploaded
2023-02-22T10:27:27.6838797Z Starting artifact upload
2023-02-22T10:27:27.6840026Z For more detailed logs during the artifact upload process, enable step-debugging: https://docs.github.com/actions/monitoring-and-troubleshooting-workflows/enabling-debug-logging#enabling-step-debug-logging
2023-02-22T10:27:27.6840819Z Artifact name is valid!
2023-02-22T10:27:27.8651495Z Container for artifact "playwright-test-summary" successfully created. Starting upload of file(s)
2023-02-22T10:27:27.9350209Z Total size of all the files uploaded is 61 bytes
2023-02-22T10:27:27.9351153Z File upload process has finished. Finalizing the artifact upload
2023-02-22T10:27:27.9635918Z Artifact has been finalized. All files have been successfully uploaded!
2023-02-22T10:27:27.9636179Z 
2023-02-22T10:27:27.9636444Z The raw size of all the files that were specified for upload is 61 bytes
2023-02-22T10:27:27.9637085Z The size of all the files that were uploaded is 61 bytes. This takes into account any gzip compression used to reduce the upload size, time and storage
2023-02-22T10:27:27.9637366Z 
2023-02-22T10:27:27.9638078Z Note: The size of downloaded zips can differ significantly from the reported size. For more information see: https://github.com/actions/upload-artifact#zipped-artifact-downloads 
2023-02-22T10:27:27.9638424Z 
2023-02-22T10:27:27.9640609Z Artifact playwright-test-summary has been successfully uploaded!
2023-02-22T10:27:27.9731711Z Post job cleanup.
2023-02-22T10:27:28.1041478Z [command]/usr/bin/git version
2023-02-22T10:27:28.1092992Z git version 2.39.2
2023-02-22T10:27:28.1152776Z Temporarily overriding HOME='/home/runner/work/_temp/86706366-3735-401b-9cc2-adb1bd99a980' before making global git config changes
2023-02-22T10:27:28.1157748Z Adding repository directory to the temporary git global config as a safe directory
2023-02-22T10:27:28.1166659Z [command]/usr/bin/git config --global --add safe.directory /home/runner/work/lottielab/lottielab
2023-02-22T10:27:28.1223475Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
2023-02-22T10:27:28.1266921Z [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-02-22T10:27:28.1555356Z [command]/usr/bin/git config --local --name-only --get-regexp http\.https\:\/\/github\.com\/\.extraheader
2023-02-22T10:27:28.1583953Z http.https://github.com/.extraheader
2023-02-22T10:27:28.1607093Z [command]/usr/bin/git config --local --unset-all http.https://github.com/.extraheader
2023-02-22T10:27:28.1654399Z [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-02-22T10:27:28.2120726Z Cleaning up orphan processes
hreynier commented 1 year ago

I'm running the experimental component testing for this workflow, maybe I haven't initialised something properly...

I'm creating dynamic tests based on some sample files, i've put some console.log's into the code and can see the 'outer' one get's printed in the test logs above.

Example Test with logs

import React from 'react';
import { RenderSample } from '../utils/SampleHelpers';
import { test, expect } from '@playwright/experimental-ct-react';
import path from 'path';
import { ObjectModelDocument } from '../../../../index';
import { SAMPLE_FILES } from '../utils/sampleFiles';

test.describe('Visual Regression: Original JSON Imports', () => {
  console.log('Starting test'); <== THIS GET'S PRINTED
  // For loop over files, creating dynamic test for each.
  for (let file of SAMPLE_FILES) {
    const { label, data } = file;

    test(`Lottie JSON Imports: ${label}`, async ({ mount }) => {
      console.log('tests: ' + label); <=== THIS DOESN'T
      const originalData = file;
      const newObjectDoc = ObjectModelDocument.loadModel(data);
      ``;
      const generatedJSONData = { label: label, data: newObjectDoc.toLJSON() };

      const originalJSON = await mount(<RenderSample input={originalData} />);
      await originalJSON.screenshot({
        path: path.resolve(__dirname, `images/before/sample-${label}.png`),
      });
      ... ETC

Maybe I'm not importingmount properly? But odd that everything works locally with no typeerrors etc...

hreynier commented 1 year ago

For more context, these tests are running in a monorepo with different npm workspaces, we are also using Vite // Vitest although I didn't expect this to cause issues because I have the config set to exclude all these tests that I want to use Playwright for. I have seen this thread, but again, unsure if it applies -> https://github.com/microsoft/playwright/issues/14295

yury-s commented 1 year ago

What's weird is that there is no output whatsoever, can you run npx playwright test -c playwright-visual.config.ts command with DEBUG=pw:* environment variable to see if it prints anything interesting?

yury-s commented 1 year ago

Closing as part of the triage process. We need more information to act on this report. Please file a new one and link to this issue when you get back to it!