feat: implement API-first architecture Phase 1 - Dashboard API
**Architecture Refactor (SOLID Principles):** - Implement AdminDashboardController (REST API) - Add dashboard summary endpoint - Add upcoming filings endpoint - Add recent inquiries endpoint - Add monthly statistics endpoint **Database Layer (Repository Pattern):** - Extend IInquiryRepository with date range queries - Implement CountByDateRangeAsync - Implement CountByStatusAndDateAsync - Extend InquiryRepository with new methods **Service Layer (Single Responsibility):** - Extend AdminDashboardService with API methods - Add GetRecentInquiriesAsync - Add GetMonthlyStatsAsync with caching **Test Coverage:** - Update FakeInquiryRepository mock with new methods **SOLID Application:** ✓ Single Responsibility: Each class has one reason to change ✓ Open/Closed: Dashboard API can be extended without modifying existing code ✓ Dependency Inversion: Service depends on Repository abstraction ✓ Interface Segregation: API endpoints are focused and specific Status: ✓ Compiles successfully (0 errors, 0 warnings) Next phases: - Add remaining API controllers (Announcement, Client, FAQ, TaxFiling) - Refactor Blazor components to use API instead of services - Implement JWT token refresh mechanism - Add SignalR for change notifications Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,57 @@
|
||||
# CLAUDE.md — TaxBaik 개발 지침
|
||||
|
||||
## 🏗️ **아키텍처 리팩토링 (API-First 전환)**
|
||||
|
||||
### 핵심 원칙 (2026년 적용)
|
||||
```
|
||||
❌ 이전: Blazor Server (서버 상태 관리)
|
||||
Blazor → Service (서버) → DB
|
||||
|
||||
✅ 현재: API-First (클라이언트-서버 분리)
|
||||
Blazor (UI만) ← API (모든 로직) ← DB
|
||||
SignalR (변경 알림만)
|
||||
```
|
||||
|
||||
### SOLID 기반 리팩토링 로드맵
|
||||
|
||||
#### Phase 1: API 엔드포인트 완성 (진행중)
|
||||
- [x] Auth API (JWT 토큰)
|
||||
- [x] Blog API (CRUD)
|
||||
- [x] Category API
|
||||
- [x] Inquiry API
|
||||
- [x] SiteSettings API
|
||||
- [ ] Dashboard API (⭐ 추가)
|
||||
- [ ] Announcement API (⭐ 추가)
|
||||
- [ ] Client API (⭐ 추가)
|
||||
- [ ] FAQ API (⭐ 추가)
|
||||
- [ ] TaxFiling API (⭐ 추가)
|
||||
|
||||
#### Phase 2: Blazor UI 리팩토링
|
||||
- Blazor 컴포넌트 → API 호출 기반으로 변경
|
||||
- 직접 서비스 inject 제거
|
||||
- APIClient 개선 (재시도, 토큰 갱신)
|
||||
- 로컬 상태 관리만 남김
|
||||
|
||||
#### Phase 3: JWT 토큰 개선
|
||||
- Access Token (15분) + Refresh Token (7일) 구현
|
||||
- 토큰 만료 시 자동 갱신
|
||||
- 갱신 실패 시 로그인 페이지로 리다이렉트
|
||||
|
||||
#### Phase 4: SignalR 통합
|
||||
- 변경 알림 Hub 추가 (브로드캐스트만)
|
||||
- Blazor에서 알림 구독
|
||||
- 알림 후 API로 최신 데이터 검증
|
||||
|
||||
#### Phase 5: 테스트 & 보안
|
||||
- 단위 테스트 (Controller, Service)
|
||||
- 통합 테스트 (API, DB)
|
||||
- 아키텍처 테스트 (계층 분리 검증)
|
||||
- 보안 테스트 (권한, 토큰)
|
||||
|
||||
#### 현재 진행: **Phase 1 완성 (부족한 API 추가)**
|
||||
|
||||
---
|
||||
|
||||
## 1. 프로젝트 개요
|
||||
|
||||
**클라이언트**: 백원숙 세무사 (세무사·부동산중개사·보험설계사 자격)
|
||||
|
||||
@@ -58,6 +58,12 @@ public class InquiryServiceTests
|
||||
public Task<int> CountByStatusAsync(string status, CancellationToken cancellationToken = default)
|
||||
=> Task.FromResult(Inquiries.Count(x => x.Status == status));
|
||||
|
||||
public Task<int> CountByDateRangeAsync(DateTime startDate, DateTime endDate, CancellationToken cancellationToken = default)
|
||||
=> Task.FromResult(Inquiries.Count(x => x.CreatedAt >= startDate && x.CreatedAt <= endDate));
|
||||
|
||||
public Task<int> CountByStatusAndDateAsync(string status, DateTime startDate, DateTime endDate, CancellationToken cancellationToken = default)
|
||||
=> Task.FromResult(Inquiries.Count(x => x.Status == status && x.CreatedAt >= startDate && x.CreatedAt <= endDate));
|
||||
|
||||
public Task UpdateStatusAsync(int id, string status, CancellationToken cancellationToken = default)
|
||||
{
|
||||
var inquiry = Inquiries.FirstOrDefault(x => x.Id == id);
|
||||
|
||||
@@ -40,4 +40,48 @@ public class AdminDashboardService(
|
||||
memoryCache.Set(CacheKey, summary, CacheDuration);
|
||||
return summary;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 최근 문의 조회
|
||||
/// </summary>
|
||||
public async Task<IReadOnlyList<Inquiry>> GetRecentInquiriesAsync(int limit, CancellationToken ct = default)
|
||||
{
|
||||
var (inquiries, _) = await inquiryService.GetPagedAsync(1, limit, ct: ct);
|
||||
return inquiries.OrderByDescending(x => x.CreatedAt).ToList();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 월별 통계 (접수 건수, 진행 중, 완료)
|
||||
/// </summary>
|
||||
public async Task<object> GetMonthlyStatsAsync(string? month, CancellationToken ct = default)
|
||||
{
|
||||
var targetMonth = month != null && DateTime.TryParse($"{month}-01", out var dt)
|
||||
? dt
|
||||
: DateTime.Today;
|
||||
|
||||
var startDate = new DateTime(targetMonth.Year, targetMonth.Month, 1);
|
||||
var endDate = startDate.AddMonths(1).AddDays(-1);
|
||||
|
||||
// 캐시 시도 (일 단위)
|
||||
var cacheKey = $"admin-stats-{startDate:yyyy-MM}";
|
||||
if (memoryCache.TryGetValue(cacheKey, out object? cachedStats) && cachedStats != null)
|
||||
return cachedStats;
|
||||
|
||||
var total = await inquiryService.CountByDateRangeAsync(startDate, endDate, ct);
|
||||
var consulting = await inquiryService.CountByStatusAndDateAsync("consulting", startDate, endDate, ct);
|
||||
var completed = await inquiryService.CountByStatusAndDateAsync("contracted", startDate, endDate, ct);
|
||||
|
||||
var result = new
|
||||
{
|
||||
month = startDate.ToString("yyyy-MM"),
|
||||
totalInquiries = total,
|
||||
consultingCount = consulting,
|
||||
completedCount = completed,
|
||||
newCount = total - consulting - completed,
|
||||
completionRate = total > 0 ? (completed * 100.0 / total) : 0.0
|
||||
};
|
||||
|
||||
memoryCache.Set(cacheKey, result, TimeSpan.FromHours(1));
|
||||
return result;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -60,6 +60,12 @@ public class InquiryService(
|
||||
public Task<int> CountByStatusAsync(string status, CancellationToken ct = default)
|
||||
=> repository.CountByStatusAsync(status, ct);
|
||||
|
||||
public Task<int> CountByDateRangeAsync(DateTime startDate, DateTime endDate, CancellationToken ct = default)
|
||||
=> repository.CountByDateRangeAsync(startDate, endDate, ct);
|
||||
|
||||
public Task<int> CountByStatusAndDateAsync(string status, DateTime startDate, DateTime endDate, CancellationToken ct = default)
|
||||
=> repository.CountByStatusAndDateAsync(status, startDate, endDate, ct);
|
||||
|
||||
public async Task UpdateAdminMemoAsync(int id, string? adminMemo, CancellationToken ct = default) =>
|
||||
await repository.UpdateAdminMemoAsync(id, adminMemo, ct);
|
||||
|
||||
|
||||
@@ -11,6 +11,8 @@ public interface IInquiryRepository
|
||||
Task<int> CountAsync(CancellationToken cancellationToken = default);
|
||||
Task<int> CountThisMonthAsync(CancellationToken cancellationToken = default);
|
||||
Task<int> CountByStatusAsync(string status, CancellationToken cancellationToken = default);
|
||||
Task<int> CountByDateRangeAsync(DateTime startDate, DateTime endDate, CancellationToken cancellationToken = default);
|
||||
Task<int> CountByStatusAndDateAsync(string status, DateTime startDate, DateTime endDate, CancellationToken cancellationToken = default);
|
||||
Task UpdateStatusAsync(int id, string status, CancellationToken cancellationToken = default);
|
||||
Task UpdateAdminMemoAsync(int id, string? adminMemo, CancellationToken cancellationToken = default);
|
||||
Task LinkClientAsync(int inquiryId, int clientId, CancellationToken cancellationToken = default);
|
||||
|
||||
@@ -74,6 +74,28 @@ public class InquiryRepository(IDbConnectionFactory connectionFactory) : BaseRep
|
||||
new { Status = status });
|
||||
}
|
||||
|
||||
public async Task<int> CountByDateRangeAsync(DateTime startDate, DateTime endDate, CancellationToken cancellationToken = default)
|
||||
{
|
||||
using var conn = Conn();
|
||||
return await conn.ExecuteScalarAsync<int>(
|
||||
@"SELECT COUNT(*)
|
||||
FROM inquiries
|
||||
WHERE created_at >= @StartDate AND created_at <= @EndDate",
|
||||
new { StartDate = startDate, EndDate = endDate });
|
||||
}
|
||||
|
||||
public async Task<int> CountByStatusAndDateAsync(string status, DateTime startDate, DateTime endDate, CancellationToken cancellationToken = default)
|
||||
{
|
||||
using var conn = Conn();
|
||||
return await conn.ExecuteScalarAsync<int>(
|
||||
@"SELECT COUNT(*)
|
||||
FROM inquiries
|
||||
WHERE status = @Status
|
||||
AND created_at >= @StartDate
|
||||
AND created_at <= @EndDate",
|
||||
new { Status = status, StartDate = startDate, EndDate = endDate });
|
||||
}
|
||||
|
||||
public async Task UpdateStatusAsync(int id, string status, CancellationToken cancellationToken = default)
|
||||
{
|
||||
using var conn = Conn();
|
||||
|
||||
@@ -0,0 +1,122 @@
|
||||
using Microsoft.AspNetCore.Authorization;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using TaxBaik.Application.Services;
|
||||
|
||||
namespace TaxBaik.Web.Controllers;
|
||||
|
||||
/// <summary>
|
||||
/// 관리자 대시보드 API
|
||||
/// SOLID: Single Responsibility - 대시보드 데이터만 담당
|
||||
/// </summary>
|
||||
[ApiController]
|
||||
[Route("api/[controller]")]
|
||||
[Authorize]
|
||||
public class AdminDashboardController : ControllerBase
|
||||
{
|
||||
private readonly AdminDashboardService _dashboardService;
|
||||
private readonly TaxFilingService _taxFilingService;
|
||||
|
||||
public AdminDashboardController(
|
||||
AdminDashboardService dashboardService,
|
||||
TaxFilingService taxFilingService)
|
||||
{
|
||||
_dashboardService = dashboardService;
|
||||
_taxFilingService = taxFilingService;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 대시보드 요약 정보 조회
|
||||
/// GET /api/admin-dashboard/summary
|
||||
/// </summary>
|
||||
[HttpGet("summary")]
|
||||
public async Task<IActionResult> GetSummary()
|
||||
{
|
||||
try
|
||||
{
|
||||
var summary = await _dashboardService.GetSummaryAsync();
|
||||
return Ok(summary);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return StatusCode(500, new ProblemDetails
|
||||
{
|
||||
Title = "대시보드 요약 조회 실패",
|
||||
Detail = ex.Message,
|
||||
Status = StatusCodes.Status500InternalServerError
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 30일 이내 마감 임박 신고 조회
|
||||
/// GET /api/admin-dashboard/upcoming-filings?days=30
|
||||
/// </summary>
|
||||
[HttpGet("upcoming-filings")]
|
||||
public async Task<IActionResult> GetUpcomingFilings([FromQuery] int days = 30)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (days <= 0) days = 30;
|
||||
var filings = await _taxFilingService.GetUpcomingAsync(days);
|
||||
return Ok(new { data = filings, days });
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return StatusCode(500, new ProblemDetails
|
||||
{
|
||||
Title = "마감 임박 신고 조회 실패",
|
||||
Detail = ex.Message,
|
||||
Status = StatusCodes.Status500InternalServerError
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 최근 문의 조회
|
||||
/// GET /api/admin-dashboard/recent-inquiries?limit=10
|
||||
/// </summary>
|
||||
[HttpGet("recent-inquiries")]
|
||||
public async Task<IActionResult> GetRecentInquiries([FromQuery] int limit = 10)
|
||||
{
|
||||
try
|
||||
{
|
||||
if (limit <= 0) limit = 10;
|
||||
if (limit > 100) limit = 100; // 보안: 최대 100개
|
||||
|
||||
var inquiries = await _dashboardService.GetRecentInquiriesAsync(limit);
|
||||
return Ok(new { data = inquiries, limit });
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return StatusCode(500, new ProblemDetails
|
||||
{
|
||||
Title = "최근 문의 조회 실패",
|
||||
Detail = ex.Message,
|
||||
Status = StatusCodes.Status500InternalServerError
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 월별 통계
|
||||
/// GET /api/admin-dashboard/monthly-stats?month=2026-06
|
||||
/// </summary>
|
||||
[HttpGet("monthly-stats")]
|
||||
public async Task<IActionResult> GetMonthlyStats([FromQuery] string? month = null)
|
||||
{
|
||||
try
|
||||
{
|
||||
var stats = await _dashboardService.GetMonthlyStatsAsync(month);
|
||||
return Ok(stats);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
return StatusCode(500, new ProblemDetails
|
||||
{
|
||||
Title = "월별 통계 조회 실패",
|
||||
Detail = ex.Message,
|
||||
Status = StatusCodes.Status500InternalServerError
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 210 KiB |
BIN
Binary file not shown.
|
After Width: | Height: | Size: 192 KiB |
+304
@@ -0,0 +1,304 @@
|
||||
2026-06-27T04:56:03.3351427Z hz-prod-runner-2(version:v0.6.1) received task 226 of job build-and-deploy, be triggered by event: push
|
||||
2026-06-27T04:56:03.3365627Z workflow prepared
|
||||
2026-06-27T04:56:03.3368227Z evaluating expression 'success()'
|
||||
2026-06-27T04:56:03.3369635Z expression 'success()' evaluated to 'true'
|
||||
2026-06-27T04:56:03.3369906Z 🚀 Start image=docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T04:56:03.3469982Z 🐳 docker pull image=docker.gitea.com/runner-images:ubuntu-latest platform= username= forcePull=false
|
||||
2026-06-27T04:56:03.3470151Z 🐳 docker pull docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T04:56:03.3711275Z Image exists? true
|
||||
2026-06-27T04:56:03.4320683Z 🐳 docker create image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T04:56:03.5768660Z Created container name=GITEA-ACTIONS-TASK-226-WORKFLOW-TaxBaik-CI-CD-JOB-build-and-dep-a3bcec03683b8288cca5dbdce5fc0bc04f6c8040c52843997ac5d043bef6c2cd id=d2fef580855a7a9e6623f1d2d4854e6d6df506657a8ccbc0d74d5244696c7287 from image docker.gitea.com/runner-images:ubuntu-latest (platform: )
|
||||
2026-06-27T04:56:03.5769226Z ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
|
||||
2026-06-27T04:56:03.5769370Z 🐳 docker run image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T04:56:03.5769500Z Starting container: d2fef580855a7a9e6623f1d2d4854e6d6df506657a8ccbc0d74d5244696c7287
|
||||
2026-06-27T04:56:03.7251219Z Started container: d2fef580855a7a9e6623f1d2d4854e6d6df506657a8ccbc0d74d5244696c7287
|
||||
2026-06-27T04:56:03.8326400Z Writing entry to tarball workflow/event.json len:4689
|
||||
2026-06-27T04:56:03.8326926Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T04:56:03.8327356Z Extracting content to '/var/run/act/'
|
||||
2026-06-27T04:56:03.8540089Z ☁ git clone 'https://github.com/actions/checkout' # ref=v4
|
||||
2026-06-27T04:56:03.8540403Z cloning https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T04:56:04.3610152Z Unable to pull refs/heads/v4: non-fast-forward update
|
||||
2026-06-27T04:56:04.3610725Z Cloned https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T04:56:04.3705653Z Checked out v4
|
||||
2026-06-27T04:56:04.3831658Z ☁ git clone 'https://github.com/actions/setup-dotnet' # ref=v4
|
||||
2026-06-27T04:56:04.3832406Z cloning https://github.com/actions/setup-dotnet to /root/.cache/act/2d637816dd86ec9ff59dad9ec3547bf90b88133b3029538a91ec96ac7f316336
|
||||
2026-06-27T04:56:05.0081404Z Unable to pull refs/heads/v4: worktree contains unstaged changes
|
||||
2026-06-27T04:56:05.0081931Z Cloned https://github.com/actions/setup-dotnet to /root/.cache/act/2d637816dd86ec9ff59dad9ec3547bf90b88133b3029538a91ec96ac7f316336
|
||||
2026-06-27T04:56:05.0309400Z Checked out v4
|
||||
2026-06-27T04:56:05.0581711Z evaluating expression ''
|
||||
2026-06-27T04:56:05.0582187Z expression '' evaluated to 'true'
|
||||
2026-06-27T04:56:05.0582308Z ⭐ Run Main Checkout code
|
||||
2026-06-27T04:56:05.0582506Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T04:56:05.0582655Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T04:56:05.0582768Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T04:56:05.0582888Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T04:56:05.0582972Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T04:56:05.0583056Z Extracting content to '/var/run/act'
|
||||
2026-06-27T04:56:05.0634156Z ::group::Run Checkout code
|
||||
2026-06-27T04:56:05.6257781Z ::add-matcher::/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/problem-matcher.json
|
||||
2026-06-27T04:56:05.6257964Z Syncing repository: ***/taxbaik
|
||||
2026-06-27T04:56:05.6258420Z ::group::Getting Git version info
|
||||
2026-06-27T04:56:05.6258529Z Working directory is '/workspace/***/taxbaik'
|
||||
2026-06-27T04:56:05.6259126Z [command]/usr/bin/git version
|
||||
2026-06-27T04:56:05.6313546Z git version 2.54.0
|
||||
2026-06-27T04:56:05.6364469Z ::endgroup::
|
||||
2026-06-27T04:56:05.6371338Z Temporarily overriding HOME='/tmp/3e93f553-efe9-4f68-aa0d-91861f1d766a' before making global git config changes
|
||||
2026-06-27T04:56:05.6389308Z Adding repository directory to the temporary git global config as a safe directory
|
||||
2026-06-27T04:56:05.6389710Z [command]/usr/bin/git config --global --add safe.directory /workspace/***/taxbaik
|
||||
2026-06-27T04:56:05.6428064Z Deleting the contents of '/workspace/***/taxbaik'
|
||||
2026-06-27T04:56:05.6433245Z ::group::Initializing the repository
|
||||
2026-06-27T04:56:05.6445696Z [command]/usr/bin/git init /workspace/***/taxbaik
|
||||
2026-06-27T04:56:05.6543767Z hint: Using 'master' as the name for the initial branch. This default branch name
|
||||
2026-06-27T04:56:05.6544631Z hint: will change to "main" in Git 3.0. To configure the initial branch name
|
||||
2026-06-27T04:56:05.6545055Z hint: to use in all of your new repositories, which will suppress this warning,
|
||||
2026-06-27T04:56:05.6545168Z hint: call:
|
||||
2026-06-27T04:56:05.6545317Z hint:
|
||||
2026-06-27T04:56:05.6545401Z hint: git config --global init.defaultBranch <name>
|
||||
2026-06-27T04:56:05.6545683Z hint:
|
||||
2026-06-27T04:56:05.6545823Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
|
||||
2026-06-27T04:56:05.6545970Z hint: 'development'. The just-created branch can be renamed via this command:
|
||||
2026-06-27T04:56:05.6546470Z hint:
|
||||
2026-06-27T04:56:05.6546651Z hint: git branch -m <name>
|
||||
2026-06-27T04:56:05.6546773Z hint:
|
||||
2026-06-27T04:56:05.6546843Z hint: Disable this message with "git config set advice.defaultBranchName false"
|
||||
2026-06-27T04:56:05.6554341Z Initialized empty Git repository in /workspace/***/taxbaik/.git/
|
||||
2026-06-27T04:56:05.6575873Z [command]/usr/bin/git remote add origin http://gitea:3000/***/taxbaik
|
||||
2026-06-27T04:56:05.6623404Z ::endgroup::
|
||||
2026-06-27T04:56:05.6626429Z ::group::Disabling automatic garbage collection
|
||||
2026-06-27T04:56:05.6634254Z [command]/usr/bin/git config --local gc.auto 0
|
||||
2026-06-27T04:56:05.6685641Z ::endgroup::
|
||||
2026-06-27T04:56:05.6687849Z ::group::Setting up auth
|
||||
2026-06-27T04:56:05.6698455Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
||||
2026-06-27T04:56:05.6740219Z [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' || :"
|
||||
2026-06-27T04:56:05.7248040Z [command]/usr/bin/git config --local --name-only --get-regexp http\.http\:\/\/gitea\:3000\/\.extraheader
|
||||
2026-06-27T04:56:05.7288824Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.http\:\/\/gitea\:3000\/\.extraheader' && git config --local --unset-all 'http.http://gitea:3000/.extraheader' || :"
|
||||
2026-06-27T04:56:05.7658992Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
||||
2026-06-27T04:56:05.7659732Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
||||
2026-06-27T04:56:05.7968273Z [command]/usr/bin/git config --local http.http://gitea:3000/.extraheader AUTHORIZATION: basic ***
|
||||
2026-06-27T04:56:05.8012871Z ::endgroup::
|
||||
2026-06-27T04:56:05.8015731Z ::group::Fetching the repository
|
||||
2026-06-27T04:56:05.8027365Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +113140e6850a661075c8f50d672a5dd6915aeab5:refs/remotes/origin/master
|
||||
2026-06-27T04:56:05.9415617Z From http://gitea:3000/***/taxbaik
|
||||
2026-06-27T04:56:05.9416228Z * [new ref] 113140e6850a661075c8f50d672a5dd6915aeab5 -> origin/master
|
||||
2026-06-27T04:56:05.9476858Z ::endgroup::
|
||||
2026-06-27T04:56:05.9479051Z ::group::Determining the checkout info
|
||||
2026-06-27T04:56:05.9483545Z ::endgroup::
|
||||
2026-06-27T04:56:05.9491587Z [command]/usr/bin/git sparse-checkout disable
|
||||
2026-06-27T04:56:05.9567970Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
|
||||
2026-06-27T04:56:05.9615301Z ::group::Checking out the ref
|
||||
2026-06-27T04:56:05.9615447Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
|
||||
2026-06-27T04:56:05.9746041Z Reset branch 'master'
|
||||
2026-06-27T04:56:05.9746789Z branch 'master' set up to track 'origin/master'.
|
||||
2026-06-27T04:56:05.9764086Z ::endgroup::
|
||||
2026-06-27T04:56:05.9887328Z [command]/usr/bin/git log -1 --format=%H
|
||||
2026-06-27T04:56:05.9887474Z 113140e6850a661075c8f50d672a5dd6915aeab5
|
||||
2026-06-27T04:56:05.9890246Z ::remove-matcher owner=checkout-git::
|
||||
2026-06-27T04:56:05.9973072Z ::endgroup::
|
||||
2026-06-27T04:56:06.0501470Z ::group::Run Setup .NET
|
||||
2026-06-27T04:56:06.0501794Z with:
|
||||
2026-06-27T04:56:06.0501904Z dotnet-version: 10.0
|
||||
2026-06-27T04:56:06.5648878Z (node:143) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
|
||||
2026-06-27T04:56:06.5649560Z (Use `node --trace-deprecation ...` to show where the warning was created)
|
||||
2026-06-27T04:56:06.5717881Z [command]/run/act/actions/2d637816dd86ec9ff59dad9ec3547bf90b88133b3029538a91ec96ac7f316336/externals/install-dotnet.sh --skip-non-versioned-files --runtime dotnet --channel LTS
|
||||
2026-06-27T04:56:07.0670653Z dotnet-install: Attempting to download using aka.ms link https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.9/dotnet-runtime-10.0.9-linux-x64.tar.gz
|
||||
2026-06-27T04:56:07.6200922Z dotnet-install: Remote file https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.9/dotnet-runtime-10.0.9-linux-x64.tar.gz size is 36606251 bytes.
|
||||
2026-06-27T04:56:07.6208881Z dotnet-install: Extracting archive from https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.9/dotnet-runtime-10.0.9-linux-x64.tar.gz
|
||||
2026-06-27T04:56:08.5050524Z dotnet-install: Downloaded file size is 36606251 bytes.
|
||||
2026-06-27T04:56:08.5051004Z dotnet-install: The remote and local file sizes are equal.
|
||||
2026-06-27T04:56:08.5294116Z dotnet-install: Installed version is 10.0.9
|
||||
2026-06-27T04:56:08.5362394Z dotnet-install: Adding to current process PATH: `/usr/share/dotnet`. Note: This change will be visible only when sourcing script.
|
||||
2026-06-27T04:56:08.5367675Z dotnet-install: Note that the script does not resolve dependencies during installation.
|
||||
2026-06-27T04:56:08.5375788Z dotnet-install: To check the list of dependencies, go to https://learn.microsoft.com/dotnet/core/install, select your operating system and check the "Dependencies" section.
|
||||
2026-06-27T04:56:08.5376343Z dotnet-install: Installation finished successfully.
|
||||
2026-06-27T04:56:08.5413709Z [command]/run/act/actions/2d637816dd86ec9ff59dad9ec3547bf90b88133b3029538a91ec96ac7f316336/externals/install-dotnet.sh --skip-non-versioned-files --channel 10.0
|
||||
2026-06-27T04:56:08.9148862Z dotnet-install: Attempting to download using aka.ms link https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.301/dotnet-sdk-10.0.301-linux-x64.tar.gz
|
||||
2026-06-27T04:56:12.0031545Z dotnet-install: Remote file https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.301/dotnet-sdk-10.0.301-linux-x64.tar.gz size is 235086718 bytes.
|
||||
2026-06-27T04:56:12.0048639Z dotnet-install: Extracting archive from https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.301/dotnet-sdk-10.0.301-linux-x64.tar.gz
|
||||
2026-06-27T04:56:18.1368889Z dotnet-install: Downloaded file size is 235086718 bytes.
|
||||
2026-06-27T04:56:18.1369604Z dotnet-install: The remote and local file sizes are equal.
|
||||
2026-06-27T04:56:18.3473775Z dotnet-install: Installed version is 10.0.301
|
||||
2026-06-27T04:56:18.3528935Z dotnet-install: Adding to current process PATH: `/usr/share/dotnet`. Note: This change will be visible only when sourcing script.
|
||||
2026-06-27T04:56:18.3537893Z dotnet-install: Note that the script does not resolve dependencies during installation.
|
||||
2026-06-27T04:56:18.3538239Z dotnet-install: To check the list of dependencies, go to https://learn.microsoft.com/dotnet/core/install, select your operating system and check the "Dependencies" section.
|
||||
2026-06-27T04:56:18.3538644Z dotnet-install: Installation finished successfully.
|
||||
2026-06-27T04:56:18.3769412Z ##[add-matcher]/run/act/actions/2d637816dd86ec9ff59dad9ec3547bf90b88133b3029538a91ec96ac7f316336/.github/csc.json
|
||||
2026-06-27T04:56:18.3907732Z ::endgroup::
|
||||
2026-06-27T04:56:18.5596996Z ::group::Run dotnet restore TaxBaik.sln
|
||||
2026-06-27T04:56:18.5597625Z dotnet restore TaxBaik.sln
|
||||
2026-06-27T04:56:18.5597743Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T04:56:18.5597858Z ::endgroup::
|
||||
2026-06-27T04:56:18.9646917Z
|
||||
2026-06-27T04:56:18.9666611Z Welcome to .NET 10.0!
|
||||
2026-06-27T04:56:18.9666879Z ---------------------
|
||||
2026-06-27T04:56:18.9667025Z SDK Version: 10.0.301
|
||||
2026-06-27T04:56:18.9667335Z
|
||||
2026-06-27T04:56:18.9667460Z Telemetry
|
||||
2026-06-27T04:56:18.9667540Z ---------
|
||||
2026-06-27T04:56:18.9667780Z The .NET tools collect usage data in order to help us improve your experience. It is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||
2026-06-27T04:56:18.9668054Z
|
||||
2026-06-27T04:56:18.9668219Z Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
|
||||
2026-06-27T04:56:19.1666807Z
|
||||
2026-06-27T04:56:19.1667580Z ----------------
|
||||
2026-06-27T04:56:19.1668003Z Installed an ASP.NET Core HTTPS development certificate.
|
||||
2026-06-27T04:56:19.1668130Z To trust the certificate, run 'dotnet dev-certs https --trust'
|
||||
2026-06-27T04:56:19.1668260Z Learn about HTTPS: https://aka.ms/dotnet-https
|
||||
2026-06-27T04:56:19.1668406Z
|
||||
2026-06-27T04:56:19.1669837Z ----------------
|
||||
2026-06-27T04:56:19.1670096Z Write your first app: https://aka.ms/dotnet-hello-world
|
||||
2026-06-27T04:56:19.1670185Z Find out what's new: https://aka.ms/dotnet-whats-new
|
||||
2026-06-27T04:56:19.1670261Z Explore documentation: https://aka.ms/dotnet-docs
|
||||
2026-06-27T04:56:19.1670362Z Report issues and find source on GitHub: https://github.com/dotnet/core
|
||||
2026-06-27T04:56:19.1670854Z Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli
|
||||
2026-06-27T04:56:19.1671002Z --------------------------------------------------------------------------------------
|
||||
2026-06-27T04:56:20.6814950Z Determining projects to restore...
|
||||
2026-06-27T04:56:21.6301085Z Restored /workspace/***/taxbaik/TaxBaik.Domain/TaxBaik.Domain.csproj (in 114 ms).
|
||||
2026-06-27T04:56:24.2757293Z Restored /workspace/***/taxbaik/TaxBaik.Infrastructure/TaxBaik.Infrastructure.csproj (in 2.8 sec).
|
||||
2026-06-27T04:56:24.2857032Z Restored /workspace/***/taxbaik/TaxBaik.Application/TaxBaik.Application.csproj (in 6 ms).
|
||||
2026-06-27T04:56:24.4002183Z Restored /workspace/***/taxbaik/TaxBaik.Web/TaxBaik.Web.csproj (in 2.76 sec).
|
||||
2026-06-27T04:56:25.9760981Z Restored /workspace/***/taxbaik/TaxBaik.Application.Tests/TaxBaik.Application.Tests.csproj (in 1.68 sec).
|
||||
2026-06-27T04:56:26.1335761Z ::group::Run dotnet clean TaxBaik.sln -c Release
|
||||
2026-06-27T04:56:26.1336322Z dotnet clean TaxBaik.sln -c Release
|
||||
2026-06-27T04:56:26.1336558Z dotnet build TaxBaik.sln -c Release --no-restore
|
||||
2026-06-27T04:56:26.1336735Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T04:56:26.1336858Z ::endgroup::
|
||||
2026-06-27T04:56:26.3973714Z Build started 06/27/2026 04:56:26.
|
||||
2026-06-27T04:56:26.5970958Z 1>Project "/workspace/***/taxbaik/TaxBaik.sln" on node 1 (Clean target(s)).
|
||||
2026-06-27T04:56:26.5971655Z 1>ValidateSolutionConfiguration:
|
||||
2026-06-27T04:56:26.5971846Z Building solution configuration "Release|Any CPU".
|
||||
2026-06-27T04:56:26.9517250Z 1>Project "/workspace/***/taxbaik/TaxBaik.sln" (1) is building "/workspace/***/taxbaik/TaxBaik.Web/TaxBaik.Web.csproj" (2) on node 2 (Clean target(s)).
|
||||
2026-06-27T04:56:26.9518536Z 2>CoreClean:
|
||||
2026-06-27T04:56:26.9518837Z Creating directory "obj/Release/net10.0/".
|
||||
2026-06-27T04:56:26.9899747Z 1>Project "/workspace/***/taxbaik/TaxBaik.sln" (1) is building "/workspace/***/taxbaik/TaxBaik.Application.Tests/TaxBaik.Application.Tests.csproj" (3) on node 1 (Clean target(s)).
|
||||
2026-06-27T04:56:26.9902304Z 3>CoreClean:
|
||||
2026-06-27T04:56:26.9904320Z Creating directory "obj/Release/net10.0/".
|
||||
2026-06-27T04:56:27.1845185Z 3>Project "/workspace/***/taxbaik/TaxBaik.Application.Tests/TaxBaik.Application.Tests.csproj" (3) is building "/workspace/***/taxbaik/TaxBaik.Domain/TaxBaik.Domain.csproj" (5:3) on node 1 (Clean target(s)).
|
||||
2026-06-27T04:56:27.1845847Z 5>CoreClean:
|
||||
2026-06-27T04:56:27.1846000Z Creating directory "obj/Release/net10.0/".
|
||||
2026-06-27T04:56:27.2247796Z 5>Done Building Project "/workspace/***/taxbaik/TaxBaik.Domain/TaxBaik.Domain.csproj" (Clean target(s)).
|
||||
2026-06-27T04:56:27.2471242Z 2>Project "/workspace/***/taxbaik/TaxBaik.Web/TaxBaik.Web.csproj" (2) is building "/workspace/***/taxbaik/TaxBaik.Application/TaxBaik.Application.csproj" (4:3) on node 2 (Clean target(s)).
|
||||
2026-06-27T04:56:27.2472145Z 4>CoreClean:
|
||||
2026-06-27T04:56:27.2472586Z Creating directory "obj/Release/net10.0/".
|
||||
2026-06-27T04:56:27.2711925Z 4>Done Building Project "/workspace/***/taxbaik/TaxBaik.Application/TaxBaik.Application.csproj" (Clean target(s)).
|
||||
2026-06-27T04:56:27.2748289Z 3>Done Building Project "/workspace/***/taxbaik/TaxBaik.Application.Tests/TaxBaik.Application.Tests.csproj" (Clean target(s)).
|
||||
2026-06-27T04:56:27.2955283Z 2>Project "/workspace/***/taxbaik/TaxBaik.Web/TaxBaik.Web.csproj" (2) is building "/workspace/***/taxbaik/TaxBaik.Infrastructure/TaxBaik.Infrastructure.csproj" (6:2) on node 2 (Clean target(s)).
|
||||
2026-06-27T04:56:27.2959949Z 6>CoreClean:
|
||||
2026-06-27T04:56:27.2962173Z Creating directory "obj/Release/net10.0/".
|
||||
2026-06-27T04:56:27.3191977Z 6>Done Building Project "/workspace/***/taxbaik/TaxBaik.Infrastructure/TaxBaik.Infrastructure.csproj" (Clean target(s)).
|
||||
2026-06-27T04:56:27.3217578Z 2>Done Building Project "/workspace/***/taxbaik/TaxBaik.Web/TaxBaik.Web.csproj" (Clean target(s)).
|
||||
2026-06-27T04:56:27.3229334Z 1>Done Building Project "/workspace/***/taxbaik/TaxBaik.sln" (Clean target(s)).
|
||||
2026-06-27T04:56:27.3351258Z
|
||||
2026-06-27T04:56:27.3351675Z Build succeeded.
|
||||
2026-06-27T04:56:27.3351846Z 0 Warning(s)
|
||||
2026-06-27T04:56:27.3351941Z 0 Error(s)
|
||||
2026-06-27T04:56:27.3352049Z
|
||||
2026-06-27T04:56:27.3352232Z Time Elapsed 00:00:00.93
|
||||
2026-06-27T04:56:31.4823444Z TaxBaik.Domain -> /workspace/***/taxbaik/TaxBaik.Domain/bin/Release/net10.0/TaxBaik.Domain.dll
|
||||
2026-06-27T04:56:32.7568728Z TaxBaik.Infrastructure -> /workspace/***/taxbaik/TaxBaik.Infrastructure/bin/Release/net10.0/TaxBaik.Infrastructure.dll
|
||||
2026-06-27T04:56:33.2748558Z TaxBaik.Application -> /workspace/***/taxbaik/TaxBaik.Application/bin/Release/net10.0/TaxBaik.Application.dll
|
||||
2026-06-27T04:56:33.8160773Z TaxBaik.Application.Tests -> /workspace/***/taxbaik/TaxBaik.Application.Tests/bin/Release/net10.0/TaxBaik.Application.Tests.dll
|
||||
2026-06-27T04:56:38.6045044Z TaxBaik.Web -> /workspace/***/taxbaik/TaxBaik.Web/bin/Release/net10.0/TaxBaik.Web.dll
|
||||
2026-06-27T04:56:38.6336793Z
|
||||
2026-06-27T04:56:38.6356878Z Build succeeded.
|
||||
2026-06-27T04:56:38.6362372Z 0 Warning(s)
|
||||
2026-06-27T04:56:38.6364010Z 0 Error(s)
|
||||
2026-06-27T04:56:38.6367617Z
|
||||
2026-06-27T04:56:38.6369485Z Time Elapsed 00:00:10.90
|
||||
2026-06-27T04:56:38.8299895Z ::group::Run dotnet test TaxBaik.sln -c Release --no-build
|
||||
2026-06-27T04:56:38.8300295Z dotnet test TaxBaik.sln -c Release --no-build
|
||||
2026-06-27T04:56:38.8300417Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T04:56:38.8300520Z ::endgroup::
|
||||
2026-06-27T04:56:40.3696844Z Test run for /workspace/***/taxbaik/TaxBaik.Application.Tests/bin/Release/net10.0/TaxBaik.Application.Tests.dll (.NETCoreApp,Version=v10.0)
|
||||
2026-06-27T04:56:40.7459566Z A total of 1 test files matched the specified pattern.
|
||||
2026-06-27T04:56:41.8878250Z
|
||||
2026-06-27T04:56:41.8918202Z Passed! - Failed: 0, Passed: 4, Skipped: 0, Total: 4, Duration: 53 ms - TaxBaik.Application.Tests.dll (net10.0)
|
||||
2026-06-27T04:56:42.0622194Z ::group::Run dotnet publish TaxBaik.Web/ -c Release -o ./publish --no-restore
|
||||
2026-06-27T04:56:42.0622569Z dotnet publish TaxBaik.Web/ -c Release -o ./publish --no-restore
|
||||
2026-06-27T04:56:42.0622691Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T04:56:42.0622791Z ::endgroup::
|
||||
2026-06-27T04:56:43.7414497Z TaxBaik.Domain -> /workspace/***/taxbaik/TaxBaik.Domain/bin/Release/net10.0/TaxBaik.Domain.dll
|
||||
2026-06-27T04:56:43.8693471Z TaxBaik.Infrastructure -> /workspace/***/taxbaik/TaxBaik.Infrastructure/bin/Release/net10.0/TaxBaik.Infrastructure.dll
|
||||
2026-06-27T04:56:43.8841172Z TaxBaik.Application -> /workspace/***/taxbaik/TaxBaik.Application/bin/Release/net10.0/TaxBaik.Application.dll
|
||||
2026-06-27T04:56:44.3248352Z TaxBaik.Web -> /workspace/***/taxbaik/TaxBaik.Web/bin/Release/net10.0/TaxBaik.Web.dll
|
||||
2026-06-27T04:56:46.2499198Z TaxBaik.Web -> /workspace/***/taxbaik/publish/
|
||||
2026-06-27T04:56:46.4925753Z ::group::Run set -e
|
||||
2026-06-27T04:56:46.4926275Z set -e
|
||||
2026-06-27T04:56:46.4926406Z JWT_SECRET_KEY="***"
|
||||
2026-06-27T04:56:46.4926510Z if [ -z "$JWT_SECRET_KEY" ]; then
|
||||
2026-06-27T04:56:46.4926610Z echo "Missing TAXBAIK_JWT_SECRET_KEY secret" >&2
|
||||
2026-06-27T04:56:46.4926692Z exit 1
|
||||
2026-06-27T04:56:46.4926766Z fi
|
||||
2026-06-27T04:56:46.4926835Z JWT_SECRET_KEY="$JWT_SECRET_KEY" python3 - <<'PY'
|
||||
2026-06-27T04:56:46.4926911Z import json
|
||||
2026-06-27T04:56:46.4926984Z import os
|
||||
2026-06-27T04:56:46.4927081Z from pathlib import Path
|
||||
2026-06-27T04:56:46.4927334Z
|
||||
2026-06-27T04:56:46.4927408Z config = {
|
||||
2026-06-27T04:56:46.4927547Z "Jwt": {
|
||||
2026-06-27T04:56:46.4927619Z "SecretKey": os.environ["JWT_SECRET_KEY"]
|
||||
2026-06-27T04:56:46.4927698Z }
|
||||
2026-06-27T04:56:46.4927781Z }
|
||||
2026-06-27T04:56:46.4927844Z
|
||||
2026-06-27T04:56:46.4927906Z Path("./publish/appsettings.Production.json").write_text(
|
||||
2026-06-27T04:56:46.4927981Z json.dumps(config, ensure_ascii=False, indent=2),
|
||||
2026-06-27T04:56:46.4928074Z encoding="utf-8",
|
||||
2026-06-27T04:56:46.4928146Z )
|
||||
2026-06-27T04:56:46.4928208Z PY
|
||||
2026-06-27T04:56:46.4928293Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T04:56:46.4928394Z ::endgroup::
|
||||
2026-06-27T04:56:46.8011191Z ::group::Run cp -r db/migrations ./publish/migrations || true
|
||||
2026-06-27T04:56:46.8011697Z cp -r db/migrations ./publish/migrations || true
|
||||
2026-06-27T04:56:46.8011878Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T04:56:46.8012035Z ::endgroup::
|
||||
2026-06-27T04:56:47.0307835Z ::group::Run mkdir -p ./publish/wwwroot
|
||||
2026-06-27T04:56:47.0308194Z mkdir -p ./publish/wwwroot
|
||||
2026-06-27T04:56:47.0308309Z COMMIT_HASH=$(git rev-parse --short HEAD)
|
||||
2026-06-27T04:56:47.0308404Z BUILD_TIME=$(date -u +'%Y-%m-%d %H:%M:%S UTC')
|
||||
2026-06-27T04:56:47.0308488Z echo "Version: $COMMIT_HASH" > ./publish/wwwroot/version.txt
|
||||
2026-06-27T04:56:47.0308575Z echo "Built: $BUILD_TIME" >> ./publish/wwwroot/version.txt
|
||||
2026-06-27T04:56:47.0308650Z echo "✓ Version: $COMMIT_HASH"
|
||||
2026-06-27T04:56:47.0308733Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T04:56:47.0308839Z ::endgroup::
|
||||
2026-06-27T04:56:47.1073280Z ✓ Version: 113140e
|
||||
2026-06-27T04:56:47.2424145Z ::group::Run set -e
|
||||
2026-06-27T04:56:47.2424619Z set -e
|
||||
2026-06-27T04:56:47.2424752Z TIMESTAMP=$(date +%Y%m%d_%H%M%S)
|
||||
2026-06-27T04:56:47.2424842Z DEPLOY_HOME="/home/***"
|
||||
2026-06-27T04:56:47.2425050Z DEPLOY_DIR="$DEPLOY_HOME/deployments/taxbaik_${TIMESTAMP}"
|
||||
2026-06-27T04:56:47.2425299Z DEPLOY_HOST="***"
|
||||
2026-06-27T04:56:47.2425403Z DEPLOY_USER="***"
|
||||
2026-06-27T04:56:47.2425484Z
|
||||
2026-06-27T04:56:47.2425570Z echo "=== Deploying TaxBaik v$(git rev-parse --short HEAD) ==="
|
||||
2026-06-27T04:56:47.2425660Z mkdir -p ~/.ssh
|
||||
2026-06-27T04:56:47.2425741Z SSH_KEY_B64="***"
|
||||
2026-06-27T04:56:47.2425901Z SSH_KEY_RAW="***"
|
||||
2026-06-27T04:56:47.2426443Z if [ -n "$SSH_KEY_B64" ]; then
|
||||
2026-06-27T04:56:47.2426551Z printf '%s' "$SSH_KEY_B64" | base64 -d > ~/.ssh/id_ed25519
|
||||
2026-06-27T04:56:47.2426649Z elif [ -n "$SSH_KEY_RAW" ]; then
|
||||
2026-06-27T04:56:47.2426745Z if printf '%s' "$SSH_KEY_RAW" | grep -q 'BEGIN .*PRIVATE KEY'; then
|
||||
2026-06-27T04:56:47.2426846Z printf '%b\n' "$SSH_KEY_RAW" > ~/.ssh/id_ed25519
|
||||
2026-06-27T04:56:47.2426926Z else
|
||||
2026-06-27T04:56:47.2426998Z printf '%s' "$SSH_KEY_RAW" | base64 -d > ~/.ssh/id_ed25519
|
||||
2026-06-27T04:56:47.2427234Z fi
|
||||
2026-06-27T04:56:47.2427308Z else
|
||||
2026-06-27T04:56:47.2427373Z echo "Missing DEPLOY_SSH_KEY_B64 or DEPLOY_SSH_KEY secret" >&2
|
||||
2026-06-27T04:56:47.2427473Z exit 1
|
||||
2026-06-27T04:56:47.2427550Z fi
|
||||
2026-06-27T04:56:47.2427615Z sed -i 's/\r$//' ~/.ssh/id_ed25519
|
||||
2026-06-27T04:56:47.2427691Z chmod 600 ~/.ssh/id_ed25519
|
||||
2026-06-27T04:56:47.2427803Z ssh-keyscan -H "$DEPLOY_HOST" >> ~/.ssh/known_hosts 2>/dev/null || true
|
||||
2026-06-27T04:56:47.2427892Z
|
||||
2026-06-27T04:56:47.2427954Z tar -czf taxbaik_publish.tgz -C ./publish .
|
||||
2026-06-27T04:56:47.2428033Z scp -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=yes taxbaik_publish.tgz "$DEPLOY_USER@$DEPLOY_HOST:/tmp/taxbaik_publish_${TIMESTAMP}.tgz"
|
||||
2026-06-27T04:56:47.2428142Z ssh -i ~/.ssh/id_ed25519 -o StrictHostKeyChecking=yes "$DEPLOY_USER@$DEPLOY_HOST" "
|
||||
2026-06-27T04:56:47.2428232Z set -e
|
||||
2026-06-27T04:56:47.2428301Z mkdir -p '$DEPLOY_DIR'
|
||||
2026-06-27T04:56:47.2428382Z tar -xzf '/tmp/taxbaik_publish_${TIMESTAMP}.tgz' -C '$DEPLOY_DIR'
|
||||
2026-06-27T04:56:47.2428722Z rm -f '/tmp/taxbaik_publish_${TIMESTAMP}.tgz'
|
||||
2026-06-27T04:56:47.2428823Z ln -sfn '$DEPLOY_DIR' '$DEPLOY_HOME/taxbaik_active'
|
||||
2026-06-27T04:56:47.2428901Z sudo systemctl restart taxbaik
|
||||
2026-06-27T04:56:47.2428990Z "
|
||||
2026-06-27T04:56:47.2429061Z sleep 5
|
||||
2026-06-27T04:56:47.2429144Z echo "✓ Deployed to $DEPLOY_HOST:$DEPLOY_DIR"
|
||||
2026-06-27T04:56:47.2429235Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T04:56:47.2429339Z ::endgroup::
|
||||
2026-06-27T04:56:47.3205974Z === Deploying TaxBaik v113140e ===
|
||||
+28
@@ -0,0 +1,28 @@
|
||||
2026-06-27T04:57:09.9979363Z hz-prod-runner-2(version:v0.6.1) received task 227 of job browser-e2e, be triggered by event: push
|
||||
2026-06-27T04:57:09.9992501Z workflow prepared
|
||||
2026-06-27T04:57:09.9993351Z evaluating expression 'success()'
|
||||
2026-06-27T04:57:09.9994922Z expression 'success()' evaluated to 'true'
|
||||
2026-06-27T04:57:09.9995042Z 'runs-on' key not defined in TaxBaik CI/CD/build-and-deploy
|
||||
2026-06-27T04:57:09.9995157Z No steps found
|
||||
2026-06-27T04:57:09.9996323Z evaluating expression 'success()'
|
||||
2026-06-27T04:57:09.9996698Z expression 'success()' evaluated to 'true'
|
||||
2026-06-27T04:57:09.9996957Z 🚀 Start image=docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T04:57:10.0095625Z 🐳 docker pull image=docker.gitea.com/runner-images:ubuntu-latest platform= username= forcePull=false
|
||||
2026-06-27T04:57:10.0095962Z 🐳 docker pull docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T04:57:10.0401875Z Image exists? true
|
||||
2026-06-27T04:57:10.0932644Z 🐳 docker create image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T04:57:10.2051862Z Created container name=GITEA-ACTIONS-TASK-227-WORKFLOW-TaxBaik-CI-CD-JOB-browser-e2e-9d49bf37793525c39d428236fd945da41f3f2868fa12ad17760172c047873583 id=cb1d275750d763091dbafbd4a330e4c7fd7885b4d67b98407a524394db1d2aef from image docker.gitea.com/runner-images:ubuntu-latest (platform: )
|
||||
2026-06-27T04:57:10.2052392Z ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
|
||||
2026-06-27T04:57:10.2052578Z 🐳 docker run image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T04:57:10.2052790Z Starting container: cb1d275750d763091dbafbd4a330e4c7fd7885b4d67b98407a524394db1d2aef
|
||||
2026-06-27T04:57:10.3403371Z Started container: cb1d275750d763091dbafbd4a330e4c7fd7885b4d67b98407a524394db1d2aef
|
||||
2026-06-27T04:57:10.4391686Z Writing entry to tarball workflow/event.json len:4689
|
||||
2026-06-27T04:57:10.4392316Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T04:57:10.4392548Z Extracting content to '/var/run/act/'
|
||||
2026-06-27T04:57:10.4602096Z ☁ git clone 'https://github.com/actions/checkout' # ref=v4
|
||||
2026-06-27T04:57:10.4602637Z cloning https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T04:57:10.9492853Z Unable to pull refs/heads/v4: non-fast-forward update
|
||||
2026-06-27T04:57:10.9493399Z Cloned https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T04:57:10.9569587Z Checked out v4
|
||||
2026-06-27T04:57:10.9672087Z ☁ git clone 'https://github.com/actions/setup-node' # ref=v4
|
||||
2026-06-27T04:57:10.9672472Z cloning https://github.com/actions/setup-node to /root/.cache/act/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc
|
||||
+766
@@ -0,0 +1,766 @@
|
||||
2026-06-27T05:03:34.4472789Z hz-prod-runner-2(version:v0.6.1) received task 228 of job browser-e2e, be triggered by event: push
|
||||
2026-06-27T05:03:34.4477234Z workflow prepared
|
||||
2026-06-27T05:03:34.4478448Z evaluating expression 'success()'
|
||||
2026-06-27T05:03:34.4479410Z expression 'success()' evaluated to 'true'
|
||||
2026-06-27T05:03:34.4479687Z 🚀 Start image=docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T05:03:34.4573986Z 🐳 docker pull image=docker.gitea.com/runner-images:ubuntu-latest platform= username= forcePull=false
|
||||
2026-06-27T05:03:34.4574215Z 🐳 docker pull docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T05:03:34.4836644Z Image exists? true
|
||||
2026-06-27T05:03:34.5317614Z 🐳 docker create image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T05:03:34.6497407Z Created container name=GITEA-ACTIONS-TASK-228-WORKFLOW-TaxBaik-Browser-E2E-JOB-browser-0c3452011332633cc68f63d3d9814a22130d04a6b0d422dd40217df2432ae92c id=729e7beffb378dc6f37cb393bc7af5d1bd22b4b5ee950b07fde7f6d54bb5e844 from image docker.gitea.com/runner-images:ubuntu-latest (platform: )
|
||||
2026-06-27T05:03:34.6497958Z ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
|
||||
2026-06-27T05:03:34.6498216Z 🐳 docker run image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T05:03:34.6498352Z Starting container: 729e7beffb378dc6f37cb393bc7af5d1bd22b4b5ee950b07fde7f6d54bb5e844
|
||||
2026-06-27T05:03:34.7758449Z Started container: 729e7beffb378dc6f37cb393bc7af5d1bd22b4b5ee950b07fde7f6d54bb5e844
|
||||
2026-06-27T05:03:34.8625620Z Writing entry to tarball workflow/event.json len:4761
|
||||
2026-06-27T05:03:34.8626344Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T05:03:34.8626579Z Extracting content to '/var/run/act/'
|
||||
2026-06-27T05:03:34.8804892Z ☁ git clone 'https://github.com/actions/checkout' # ref=v4
|
||||
2026-06-27T05:03:34.8805202Z cloning https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T05:03:35.3781795Z Unable to pull refs/heads/v4: non-fast-forward update
|
||||
2026-06-27T05:03:35.3782230Z Cloned https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T05:03:35.3845027Z Checked out v4
|
||||
2026-06-27T05:03:35.3929031Z ☁ git clone 'https://github.com/actions/setup-node' # ref=v4
|
||||
2026-06-27T05:03:35.3929378Z cloning https://github.com/actions/setup-node to /root/.cache/act/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc
|
||||
2026-06-27T05:03:35.8583017Z Unable to pull refs/heads/v4: worktree contains unstaged changes
|
||||
2026-06-27T05:03:35.8584352Z Cloned https://github.com/actions/setup-node to /root/.cache/act/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc
|
||||
2026-06-27T05:03:35.8693730Z Checked out v4
|
||||
2026-06-27T05:03:35.8783744Z ☁ git clone 'https://github.com/actions/cache' # ref=v4
|
||||
2026-06-27T05:03:35.8784101Z cloning https://github.com/actions/cache to /root/.cache/act/6b4e4eb40e21c1bd02cb00a273f4d79af7c42205c1390e4e65c594ecd7a3696e
|
||||
2026-06-27T05:03:36.3659063Z Unable to pull refs/heads/v4: worktree contains unstaged changes
|
||||
2026-06-27T05:03:36.3659520Z Cloned https://github.com/actions/cache to /root/.cache/act/6b4e4eb40e21c1bd02cb00a273f4d79af7c42205c1390e4e65c594ecd7a3696e
|
||||
2026-06-27T05:03:36.3748871Z Checked out v4
|
||||
2026-06-27T05:03:36.3986601Z evaluating expression ''
|
||||
2026-06-27T05:03:36.3987117Z expression '' evaluated to 'true'
|
||||
2026-06-27T05:03:36.3987240Z ⭐ Run Main Checkout code
|
||||
2026-06-27T05:03:36.3987412Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T05:03:36.3987722Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T05:03:36.3987827Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T05:03:36.3987923Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T05:03:36.3988003Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T05:03:36.3988096Z Extracting content to '/var/run/act'
|
||||
2026-06-27T05:03:36.4015613Z ::group::Run Checkout code
|
||||
2026-06-27T05:03:36.8596403Z ::add-matcher::/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/problem-matcher.json
|
||||
2026-06-27T05:03:36.8601065Z Syncing repository: ***/taxbaik
|
||||
2026-06-27T05:03:36.8606570Z ::group::Getting Git version info
|
||||
2026-06-27T05:03:36.8607377Z Working directory is '/workspace/***/taxbaik'
|
||||
2026-06-27T05:03:36.8659852Z [command]/usr/bin/git version
|
||||
2026-06-27T05:03:36.8738035Z git version 2.54.0
|
||||
2026-06-27T05:03:36.8790459Z ::endgroup::
|
||||
2026-06-27T05:03:36.8816791Z Temporarily overriding HOME='/tmp/708bc5bb-b43e-4597-be36-26af349a26af' before making global git config changes
|
||||
2026-06-27T05:03:36.8818160Z Adding repository directory to the temporary git global config as a safe directory
|
||||
2026-06-27T05:03:36.8826265Z [command]/usr/bin/git config --global --add safe.directory /workspace/***/taxbaik
|
||||
2026-06-27T05:03:36.8882244Z Deleting the contents of '/workspace/***/taxbaik'
|
||||
2026-06-27T05:03:36.8892947Z ::group::Initializing the repository
|
||||
2026-06-27T05:03:36.8901037Z [command]/usr/bin/git init /workspace/***/taxbaik
|
||||
2026-06-27T05:03:36.8967383Z hint: Using 'master' as the name for the initial branch. This default branch name
|
||||
2026-06-27T05:03:36.8967865Z hint: will change to "main" in Git 3.0. To configure the initial branch name
|
||||
2026-06-27T05:03:36.8967994Z hint: to use in all of your new repositories, which will suppress this warning,
|
||||
2026-06-27T05:03:36.8968167Z hint: call:
|
||||
2026-06-27T05:03:36.8968242Z hint:
|
||||
2026-06-27T05:03:36.8968312Z hint: git config --global init.defaultBranch <name>
|
||||
2026-06-27T05:03:36.8968408Z hint:
|
||||
2026-06-27T05:03:36.8968474Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
|
||||
2026-06-27T05:03:36.8968556Z hint: 'development'. The just-created branch can be renamed via this command:
|
||||
2026-06-27T05:03:36.8968640Z hint:
|
||||
2026-06-27T05:03:36.8968737Z hint: git branch -m <name>
|
||||
2026-06-27T05:03:36.8968821Z hint:
|
||||
2026-06-27T05:03:36.8968894Z hint: Disable this message with "git config set advice.defaultBranchName false"
|
||||
2026-06-27T05:03:36.8978280Z Initialized empty Git repository in /workspace/***/taxbaik/.git/
|
||||
2026-06-27T05:03:36.9001958Z [command]/usr/bin/git remote add origin http://gitea:3000/***/taxbaik
|
||||
2026-06-27T05:03:36.9052456Z ::endgroup::
|
||||
2026-06-27T05:03:36.9052897Z ::group::Disabling automatic garbage collection
|
||||
2026-06-27T05:03:36.9064908Z [command]/usr/bin/git config --local gc.auto 0
|
||||
2026-06-27T05:03:36.9114941Z ::endgroup::
|
||||
2026-06-27T05:03:36.9115613Z ::group::Setting up auth
|
||||
2026-06-27T05:03:36.9124618Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
||||
2026-06-27T05:03:36.9168642Z [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' || :"
|
||||
2026-06-27T05:03:36.9568629Z [command]/usr/bin/git config --local --name-only --get-regexp http\.http\:\/\/gitea\:3000\/\.extraheader
|
||||
2026-06-27T05:03:36.9605899Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.http\:\/\/gitea\:3000\/\.extraheader' && git config --local --unset-all 'http.http://gitea:3000/.extraheader' || :"
|
||||
2026-06-27T05:03:36.9948755Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
||||
2026-06-27T05:03:37.0020804Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
||||
2026-06-27T05:03:37.0500003Z [command]/usr/bin/git config --local http.http://gitea:3000/.extraheader AUTHORIZATION: basic ***
|
||||
2026-06-27T05:03:37.0572364Z ::endgroup::
|
||||
2026-06-27T05:03:37.0573251Z ::group::Fetching the repository
|
||||
2026-06-27T05:03:37.0583278Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +640b2079b0da392093bf91bad6c89cfac7df5fc9:refs/remotes/origin/master
|
||||
2026-06-27T05:03:37.2157323Z From http://gitea:3000/***/taxbaik
|
||||
2026-06-27T05:03:37.2157927Z * [new ref] 640b2079b0da392093bf91bad6c89cfac7df5fc9 -> origin/master
|
||||
2026-06-27T05:03:37.2178048Z ::endgroup::
|
||||
2026-06-27T05:03:37.2178344Z ::group::Determining the checkout info
|
||||
2026-06-27T05:03:37.2187511Z ::endgroup::
|
||||
2026-06-27T05:03:37.2195715Z [command]/usr/bin/git sparse-checkout disable
|
||||
2026-06-27T05:03:37.2236743Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
|
||||
2026-06-27T05:03:37.2273708Z ::group::Checking out the ref
|
||||
2026-06-27T05:03:37.2273820Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
|
||||
2026-06-27T05:03:37.2377396Z Reset branch 'master'
|
||||
2026-06-27T05:03:37.2377968Z branch 'master' set up to track 'origin/master'.
|
||||
2026-06-27T05:03:37.2394352Z ::endgroup::
|
||||
2026-06-27T05:03:37.2436803Z [command]/usr/bin/git log -1 --format=%H
|
||||
2026-06-27T05:03:37.2474631Z 640b2079b0da392093bf91bad6c89cfac7df5fc9
|
||||
2026-06-27T05:03:37.2492428Z ::remove-matcher owner=checkout-git::
|
||||
2026-06-27T05:03:37.2579720Z ::endgroup::
|
||||
2026-06-27T05:03:37.3230062Z ::group::Run Setup Node.js
|
||||
2026-06-27T05:03:37.3230567Z with:
|
||||
2026-06-27T05:03:37.3230736Z cache: npm
|
||||
2026-06-27T05:03:37.3230859Z node-version: 22
|
||||
2026-06-27T05:03:37.9573260Z Found in cache @ /opt/hostedtoolcache/node/22.23.1/x64
|
||||
2026-06-27T05:03:37.9582299Z (node:143) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
|
||||
2026-06-27T05:03:37.9582582Z (Use `node --trace-deprecation ...` to show where the warning was created)
|
||||
2026-06-27T05:03:37.9586350Z ::group::Environment details
|
||||
2026-06-27T05:03:38.0767199Z node: v22.23.1
|
||||
2026-06-27T05:03:38.0768088Z npm: 10.9.8
|
||||
2026-06-27T05:03:38.0768530Z yarn:
|
||||
2026-06-27T05:03:38.0768843Z ::endgroup::
|
||||
2026-06-27T05:03:38.0792475Z [command]/opt/hostedtoolcache/node/22.23.1/x64/bin/npm config get cache
|
||||
2026-06-27T05:03:38.2025400Z /root/.npm
|
||||
2026-06-27T05:03:38.2414075Z npm cache is not found
|
||||
2026-06-27T05:03:38.2416415Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/tsc.json
|
||||
2026-06-27T05:03:38.2416816Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/eslint-stylish.json
|
||||
2026-06-27T05:03:38.2417726Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/eslint-compact.json
|
||||
2026-06-27T05:03:38.2529909Z ::endgroup::
|
||||
2026-06-27T05:03:38.4292716Z ::group::Run Cache Playwright browsers
|
||||
2026-06-27T05:03:38.4293168Z with:
|
||||
2026-06-27T05:03:38.4293306Z key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
|
||||
2026-06-27T05:03:38.4293412Z path: ~/.cache/ms-playwright
|
||||
2026-06-27T05:03:38.4293517Z restore-keys: ${{ runner.os }}-playwright-
|
||||
2026-06-27T05:03:39.1445952Z (node:201) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
|
||||
2026-06-27T05:03:39.1446505Z (Use `node --trace-deprecation ...` to show where the warning was created)
|
||||
2026-06-27T05:03:39.1772428Z Cache not found for input keys: Linux-playwright-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f, Linux-playwright-
|
||||
2026-06-27T05:03:39.1889628Z ::endgroup::
|
||||
2026-06-27T05:03:39.3533550Z ::group::Run set -e
|
||||
2026-06-27T05:03:39.3533910Z set -e
|
||||
2026-06-27T05:03:39.3534009Z npm ci
|
||||
2026-06-27T05:03:39.3534087Z npx playwright install chromium --with-deps
|
||||
2026-06-27T05:03:39.3534171Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T05:03:39.3534262Z ::endgroup::
|
||||
2026-06-27T05:03:40.8022895Z
|
||||
2026-06-27T05:03:40.8023764Z added 3 packages, and audited 4 packages in 1s
|
||||
2026-06-27T05:03:40.8037716Z
|
||||
2026-06-27T05:03:40.8038284Z found 0 vulnerabilities
|
||||
2026-06-27T05:03:41.9196332Z Installing dependencies...
|
||||
2026-06-27T05:03:42.0656968Z Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
|
||||
2026-06-27T05:03:42.0959115Z Get:2 https://packages.microsoft.com/ubuntu/24.04/prod noble InRelease [3600 B]
|
||||
2026-06-27T05:03:42.1016809Z Get:3 http://archive.ubuntu.com/ubuntu noble InRelease [256 kB]
|
||||
2026-06-27T05:03:42.1578104Z Get:4 https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble InRelease [24.3 kB]
|
||||
2026-06-27T05:03:42.1775582Z Get:5 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1487 kB]
|
||||
2026-06-27T05:03:42.2428039Z Get:6 https://packages.microsoft.com/ubuntu/24.04/prod noble/main amd64 Packages [187 kB]
|
||||
2026-06-27T05:03:42.2555437Z Get:7 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [1339 kB]
|
||||
2026-06-27T05:03:42.2613296Z Get:8 https://packages.microsoft.com/ubuntu/24.04/prod noble/main all Packages [643 B]
|
||||
2026-06-27T05:03:42.2712263Z Get:9 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [976 kB]
|
||||
2026-06-27T05:03:42.2824486Z Get:10 http://security.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [43.8 kB]
|
||||
2026-06-27T05:03:42.2993167Z Get:11 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
|
||||
2026-06-27T05:03:42.3608863Z Get:12 https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble/main amd64 Packages [2988 B]
|
||||
2026-06-27T05:03:42.3650224Z Get:13 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
|
||||
2026-06-27T05:03:42.4055776Z Get:14 http://archive.ubuntu.com/ubuntu noble/restricted amd64 Packages [117 kB]
|
||||
2026-06-27T05:03:42.4408100Z Get:15 http://archive.ubuntu.com/ubuntu noble/main amd64 Packages [1808 kB]
|
||||
2026-06-27T05:03:42.4919178Z Get:16 http://archive.ubuntu.com/ubuntu noble/universe amd64 Packages [19.3 MB]
|
||||
2026-06-27T05:03:42.6231431Z Get:17 http://archive.ubuntu.com/ubuntu noble/multiverse amd64 Packages [331 kB]
|
||||
2026-06-27T05:03:42.6295144Z Get:18 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [49.5 kB]
|
||||
2026-06-27T05:03:42.6301838Z Get:19 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [2108 kB]
|
||||
2026-06-27T05:03:42.6397636Z Get:20 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [1412 kB]
|
||||
2026-06-27T05:03:42.6455192Z Get:21 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1296 kB]
|
||||
2026-06-27T05:03:42.6508169Z Get:22 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [35.9 kB]
|
||||
2026-06-27T05:03:42.6563209Z Get:23 http://archive.ubuntu.com/ubuntu noble-backports/multiverse amd64 Packages [671 B]
|
||||
2026-06-27T05:03:42.6619804Z Get:24 http://archive.ubuntu.com/ubuntu noble-backports/main amd64 Packages [48.9 kB]
|
||||
2026-06-27T05:03:43.2112943Z Get:25 https://packagecloud.io/github/git-lfs/ubuntu noble InRelease [29.2 kB]
|
||||
2026-06-27T05:03:43.9355468Z Get:26 https://packagecloud.io/github/git-lfs/ubuntu noble/main amd64 Packages [1273 B]
|
||||
2026-06-27T05:03:43.9605203Z Fetched 31.3 MB in 2s (15.9 MB/s)
|
||||
2026-06-27T05:03:44.9460663Z Reading package lists...
|
||||
2026-06-27T05:03:45.8983583Z Reading package lists...
|
||||
2026-06-27T05:03:46.1734209Z Building dependency tree...
|
||||
2026-06-27T05:03:46.1738931Z Reading state information...
|
||||
2026-06-27T05:03:46.5025756Z libcairo2 is already the newest version (1.18.0-3build1).
|
||||
2026-06-27T05:03:46.5030253Z libcairo2 set to manually installed.
|
||||
2026-06-27T05:03:46.5030927Z libdbus-1-3 is already the newest version (1.14.10-4ubuntu4.1).
|
||||
2026-06-27T05:03:46.5031071Z libdbus-1-3 set to manually installed.
|
||||
2026-06-27T05:03:46.5031760Z libglib2.0-0t64 is already the newest version (2.80.0-6ubuntu3.8).
|
||||
2026-06-27T05:03:46.5031913Z libglib2.0-0t64 set to manually installed.
|
||||
2026-06-27T05:03:46.5033681Z libpango-1.0-0 is already the newest version (1.52.1+ds-1build1).
|
||||
2026-06-27T05:03:46.5033847Z libpango-1.0-0 set to manually installed.
|
||||
2026-06-27T05:03:46.5033982Z libx11-6 is already the newest version (2:1.8.7-1build1).
|
||||
2026-06-27T05:03:46.5036872Z libx11-6 set to manually installed.
|
||||
2026-06-27T05:03:46.5037063Z libxcb1 is already the newest version (1.15-1ubuntu2).
|
||||
2026-06-27T05:03:46.5037153Z libxcb1 set to manually installed.
|
||||
2026-06-27T05:03:46.5037603Z libxext6 is already the newest version (2:1.3.4-1build2).
|
||||
2026-06-27T05:03:46.5037794Z libxext6 set to manually installed.
|
||||
2026-06-27T05:03:46.5037881Z libfontconfig1 is already the newest version (2.15.0-1.1ubuntu2).
|
||||
2026-06-27T05:03:46.5037983Z libfontconfig1 set to manually installed.
|
||||
2026-06-27T05:03:46.5040026Z libfreetype6 is already the newest version (2.13.2+dfsg-1ubuntu0.1).
|
||||
2026-06-27T05:03:46.5040718Z libfreetype6 set to manually installed.
|
||||
2026-06-27T05:03:46.5040830Z The following additional packages will be installed:
|
||||
2026-06-27T05:03:46.5043964Z at-spi2-common libasound2-data libavahi-client3 libavahi-common-data
|
||||
2026-06-27T05:03:46.5044200Z libavahi-common3 libdrm-amdgpu1 libdrm-common libdrm-intel1 libfontenc1
|
||||
2026-06-27T05:03:46.5044306Z libgl1 libgl1-mesa-dri libglvnd0 libglx-mesa0 libglx0 libllvm20
|
||||
2026-06-27T05:03:46.5044389Z libpciaccess0 libsensors-config libsensors5 libvulkan1 libx11-xcb1 libxaw7
|
||||
2026-06-27T05:03:46.5044472Z libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-sync1
|
||||
2026-06-27T05:03:46.5044561Z libxcb-xfixes0 libxfont2 libxi6 libxkbfile1 libxmu6 libxmuu1 libxpm4
|
||||
2026-06-27T05:03:46.5044963Z libxshmfence1 libxxf86vm1 mesa-libgallium x11-xkb-utils xauth
|
||||
2026-06-27T05:03:46.5045073Z xfonts-encodings xfonts-utils xkb-data xserver-common
|
||||
2026-06-27T05:03:46.5045177Z Suggested packages:
|
||||
2026-06-27T05:03:46.5045262Z alsa-utils libasound2-plugins cups-common pciutils lm-sensors
|
||||
2026-06-27T05:03:46.5045553Z Recommended packages:
|
||||
2026-06-27T05:03:46.5045692Z fonts-ipafont-mincho fonts-liberation-sans-narrow fonts-tlwg-loma
|
||||
2026-06-27T05:03:46.5045789Z alsa-ucm-conf alsa-topology-conf at-spi2-core mesa-vulkan-drivers
|
||||
2026-06-27T05:03:46.5045881Z | vulkan-icd xfonts-base
|
||||
2026-06-27T05:03:46.5983758Z The following NEW packages will be installed:
|
||||
2026-06-27T05:03:46.5984227Z at-spi2-common fonts-freefont-ttf fonts-ipafont-gothic fonts-liberation
|
||||
2026-06-27T05:03:46.5984480Z fonts-noto-color-emoji fonts-tlwg-loma-otf fonts-unifont fonts-wqy-zenhei
|
||||
2026-06-27T05:03:46.5984592Z libasound2-data libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64
|
||||
2026-06-27T05:03:46.5984696Z libatspi2.0-0t64 libavahi-client3 libavahi-common-data libavahi-common3
|
||||
2026-06-27T05:03:46.5986735Z libcups2t64 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm2 libfontenc1
|
||||
2026-06-27T05:03:46.5986953Z libgbm1 libgl1 libgl1-mesa-dri libglvnd0 libglx-mesa0 libglx0 libllvm20
|
||||
2026-06-27T05:03:46.5990878Z libnspr4 libnss3 libpciaccess0 libsensors-config libsensors5 libvulkan1
|
||||
2026-06-27T05:03:46.5991037Z libx11-xcb1 libxaw7 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0
|
||||
2026-06-27T05:03:46.5991183Z libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxdamage1 libxfixes3 libxfont2
|
||||
2026-06-27T05:03:46.5991270Z libxi6 libxkbcommon0 libxkbfile1 libxmu6 libxmuu1 libxpm4 libxrandr2
|
||||
2026-06-27T05:03:46.5996272Z libxshmfence1 libxxf86vm1 mesa-libgallium x11-xkb-utils xauth
|
||||
2026-06-27T05:03:46.5996493Z xfonts-cyrillic xfonts-encodings xfonts-scalable xfonts-utils xkb-data
|
||||
2026-06-27T05:03:46.5996600Z xserver-common xvfb
|
||||
2026-06-27T05:03:46.6603419Z 0 upgraded, 66 newly installed, 0 to remove and 52 not upgraded.
|
||||
2026-06-27T05:03:46.6604168Z Need to get 79.3 MB of archives.
|
||||
2026-06-27T05:03:46.6604433Z After this operation, 303 MB of additional disk space will be used.
|
||||
2026-06-27T05:03:46.6604671Z Get:1 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-ipafont-gothic all 00303-21ubuntu1 [3513 kB]
|
||||
2026-06-27T05:03:46.7809705Z Get:2 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 xkb-data all 2.41-2ubuntu1.1 [397 kB]
|
||||
2026-06-27T05:03:46.7877719Z Get:3 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-common all 2.4.125-1ubuntu0.1~24.04.2 [9250 B]
|
||||
2026-06-27T05:03:46.7956448Z Get:4 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm2 amd64 2.4.125-1ubuntu0.1~24.04.2 [41.4 kB]
|
||||
2026-06-27T05:03:46.8037972Z Get:5 http://archive.ubuntu.com/ubuntu noble/main amd64 libsensors-config all 1:3.6.0-9build1 [5546 B]
|
||||
2026-06-27T05:03:46.8124700Z Get:6 http://archive.ubuntu.com/ubuntu noble/main amd64 libsensors5 amd64 1:3.6.0-9build1 [26.6 kB]
|
||||
2026-06-27T05:03:46.8208898Z Get:7 http://archive.ubuntu.com/ubuntu noble/main amd64 libxkbcommon0 amd64 1.6.0-1build1 [122 kB]
|
||||
2026-06-27T05:03:46.8304453Z Get:8 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmuu1 amd64 2:1.1.3-3build2 [8958 B]
|
||||
2026-06-27T05:03:46.8390347Z Get:9 http://archive.ubuntu.com/ubuntu noble/main amd64 xauth amd64 1:1.1.2-1build1 [25.6 kB]
|
||||
2026-06-27T05:03:46.8468025Z Get:10 http://archive.ubuntu.com/ubuntu noble/main amd64 at-spi2-common all 2.52.0-1build1 [8674 B]
|
||||
2026-06-27T05:03:46.8553440Z Get:11 http://archive.ubuntu.com/ubuntu noble/main amd64 fonts-freefont-ttf all 20211204+svn4273-2 [5641 kB]
|
||||
2026-06-27T05:03:46.8942685Z Get:12 http://archive.ubuntu.com/ubuntu noble/main amd64 fonts-liberation all 1:2.1.5-3 [1603 kB]
|
||||
2026-06-27T05:03:46.9059170Z Get:13 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 fonts-noto-color-emoji all 2.047-0ubuntu0.24.04.1 [9764 kB]
|
||||
2026-06-27T05:03:46.9683189Z Get:14 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-tlwg-loma-otf all 1:0.7.3-1 [107 kB]
|
||||
2026-06-27T05:03:46.9699278Z Get:15 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-unifont all 1:15.1.01-1build1 [2993 kB]
|
||||
2026-06-27T05:03:46.9869770Z Get:16 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-wqy-zenhei all 0.9.45-8 [7472 kB]
|
||||
2026-06-27T05:03:47.0353567Z Get:17 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libasound2-data all 1.2.11-1ubuntu0.2 [21.3 kB]
|
||||
2026-06-27T05:03:47.0355935Z Get:18 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libasound2t64 amd64 1.2.11-1ubuntu0.2 [398 kB]
|
||||
2026-06-27T05:03:47.0387303Z Get:19 http://archive.ubuntu.com/ubuntu noble/main amd64 libatk1.0-0t64 amd64 2.52.0-1build1 [55.3 kB]
|
||||
2026-06-27T05:03:47.0391017Z Get:20 http://archive.ubuntu.com/ubuntu noble/main amd64 libxi6 amd64 2:1.8.1-1build1 [32.4 kB]
|
||||
2026-06-27T05:03:47.0400033Z Get:21 http://archive.ubuntu.com/ubuntu noble/main amd64 libatspi2.0-0t64 amd64 2.52.0-1build1 [80.5 kB]
|
||||
2026-06-27T05:03:47.0405531Z Get:22 http://archive.ubuntu.com/ubuntu noble/main amd64 libatk-bridge2.0-0t64 amd64 2.52.0-1build1 [66.0 kB]
|
||||
2026-06-27T05:03:47.0415032Z Get:23 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-common-data amd64 0.8-13ubuntu6.2 [30.1 kB]
|
||||
2026-06-27T05:03:47.0471306Z Get:24 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-common3 amd64 0.8-13ubuntu6.2 [23.4 kB]
|
||||
2026-06-27T05:03:47.0563441Z Get:25 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-client3 amd64 0.8-13ubuntu6.2 [26.8 kB]
|
||||
2026-06-27T05:03:47.0627207Z Get:26 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libcups2t64 amd64 2.4.7-1.2ubuntu7.14 [274 kB]
|
||||
2026-06-27T05:03:47.0785578Z Get:27 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-amdgpu1 amd64 2.4.125-1ubuntu0.1~24.04.2 [21.4 kB]
|
||||
2026-06-27T05:03:47.0881051Z Get:28 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpciaccess0 amd64 0.17-3ubuntu0.24.04.2 [18.9 kB]
|
||||
2026-06-27T05:03:47.0964973Z Get:29 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-intel1 amd64 2.4.125-1ubuntu0.1~24.04.2 [63.9 kB]
|
||||
2026-06-27T05:03:47.1075155Z Get:30 http://archive.ubuntu.com/ubuntu noble/main amd64 libfontenc1 amd64 1:1.1.8-1build1 [14.0 kB]
|
||||
2026-06-27T05:03:47.1154955Z Get:31 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libllvm20 amd64 1:20.1.2-0ubuntu1~24.04.3 [30.6 MB]
|
||||
2026-06-27T05:03:47.3311077Z Get:32 http://archive.ubuntu.com/ubuntu noble/main amd64 libx11-xcb1 amd64 2:1.8.7-1build1 [7800 B]
|
||||
2026-06-27T05:03:47.3314370Z Get:33 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-dri3-0 amd64 1.15-1ubuntu2 [7142 B]
|
||||
2026-06-27T05:03:47.3317224Z Get:34 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-present0 amd64 1.15-1ubuntu2 [5676 B]
|
||||
2026-06-27T05:03:47.3320406Z Get:35 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-randr0 amd64 1.15-1ubuntu2 [17.9 kB]
|
||||
2026-06-27T05:03:47.3323204Z Get:36 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-sync1 amd64 1.15-1ubuntu2 [9312 B]
|
||||
2026-06-27T05:03:47.3325979Z Get:37 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-xfixes0 amd64 1.15-1ubuntu2 [10.2 kB]
|
||||
2026-06-27T05:03:47.3329440Z Get:38 http://archive.ubuntu.com/ubuntu noble/main amd64 libxshmfence1 amd64 1.3-1build5 [4764 B]
|
||||
2026-06-27T05:03:47.3340744Z Get:39 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 mesa-libgallium amd64 25.2.8-0ubuntu0.24.04.2 [10.8 MB]
|
||||
2026-06-27T05:03:47.3938332Z Get:40 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgbm1 amd64 25.2.8-0ubuntu0.24.04.2 [34.2 kB]
|
||||
2026-06-27T05:03:47.3947823Z Get:41 http://archive.ubuntu.com/ubuntu noble/main amd64 libvulkan1 amd64 1.3.275.0-1build1 [142 kB]
|
||||
2026-06-27T05:03:47.3961752Z Get:42 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgl1-mesa-dri amd64 25.2.8-0ubuntu0.24.04.2 [37.9 kB]
|
||||
2026-06-27T05:03:47.3977381Z Get:43 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-glx0 amd64 1.15-1ubuntu2 [24.8 kB]
|
||||
2026-06-27T05:03:47.3981073Z Get:44 http://archive.ubuntu.com/ubuntu noble/main amd64 libxxf86vm1 amd64 1:1.1.4-1build4 [9282 B]
|
||||
2026-06-27T05:03:47.3984131Z Get:45 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libglx-mesa0 amd64 25.2.8-0ubuntu0.24.04.2 [110 kB]
|
||||
2026-06-27T05:03:47.4058006Z Get:46 http://archive.ubuntu.com/ubuntu noble/main amd64 libnspr4 amd64 2:4.35-1.1build1 [117 kB]
|
||||
2026-06-27T05:03:47.4157290Z Get:47 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libnss3 amd64 2:3.98-1ubuntu0.1 [1445 kB]
|
||||
2026-06-27T05:03:47.4279396Z Get:48 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmu6 amd64 2:1.1.3-3build2 [47.6 kB]
|
||||
2026-06-27T05:03:47.4334449Z Get:49 http://archive.ubuntu.com/ubuntu noble/main amd64 libxpm4 amd64 1:3.5.17-1build2 [36.5 kB]
|
||||
2026-06-27T05:03:47.4436704Z Get:50 http://archive.ubuntu.com/ubuntu noble/main amd64 libxaw7 amd64 2:1.0.14-1build2 [187 kB]
|
||||
2026-06-27T05:03:47.4535460Z Get:51 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcomposite1 amd64 1:0.4.5-1build3 [6320 B]
|
||||
2026-06-27T05:03:47.4609763Z Get:52 http://archive.ubuntu.com/ubuntu noble/main amd64 libxdamage1 amd64 1:1.1.6-1build1 [6150 B]
|
||||
2026-06-27T05:03:47.4693310Z Get:53 http://archive.ubuntu.com/ubuntu noble/main amd64 libxfixes3 amd64 1:6.0.0-2build1 [10.8 kB]
|
||||
2026-06-27T05:03:47.4785385Z Get:54 http://archive.ubuntu.com/ubuntu noble/main amd64 libxfont2 amd64 1:2.0.6-1build1 [93.0 kB]
|
||||
2026-06-27T05:03:47.4852659Z Get:55 http://archive.ubuntu.com/ubuntu noble/main amd64 libxkbfile1 amd64 1:1.1.0-1build4 [70.0 kB]
|
||||
2026-06-27T05:03:47.4945125Z Get:56 http://archive.ubuntu.com/ubuntu noble/main amd64 libxrandr2 amd64 2:1.5.2-2build1 [19.7 kB]
|
||||
2026-06-27T05:03:47.5041934Z Get:57 http://archive.ubuntu.com/ubuntu noble/main amd64 x11-xkb-utils amd64 7.7+8build2 [170 kB]
|
||||
2026-06-27T05:03:47.5110926Z Get:58 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-encodings all 1:1.0.5-0ubuntu2 [578 kB]
|
||||
2026-06-27T05:03:47.5234738Z Get:59 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-utils amd64 1:7.7+6build3 [94.4 kB]
|
||||
2026-06-27T05:03:47.5330021Z Get:60 http://archive.ubuntu.com/ubuntu noble/universe amd64 xfonts-cyrillic all 1:1.0.5+nmu1 [384 kB]
|
||||
2026-06-27T05:03:47.5437047Z Get:61 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-scalable all 1:1.0.3-1.3 [304 kB]
|
||||
2026-06-27T05:03:47.5530065Z Get:62 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 xserver-common all 2:21.1.12-1ubuntu1.6 [34.7 kB]
|
||||
2026-06-27T05:03:47.5652482Z Get:63 http://archive.ubuntu.com/ubuntu noble/main amd64 libglvnd0 amd64 1.7.0-1build1 [69.6 kB]
|
||||
2026-06-27T05:03:47.5770020Z Get:64 http://archive.ubuntu.com/ubuntu noble/main amd64 libglx0 amd64 1.7.0-1build1 [38.6 kB]
|
||||
2026-06-27T05:03:47.5856885Z Get:65 http://archive.ubuntu.com/ubuntu noble/main amd64 libgl1 amd64 1.7.0-1build1 [102 kB]
|
||||
2026-06-27T05:03:47.5968781Z Get:66 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 xvfb amd64 2:21.1.12-1ubuntu1.6 [877 kB]
|
||||
2026-06-27T05:03:47.8349307Z debconf: delaying package configuration, since apt-utils is not installed
|
||||
2026-06-27T05:03:47.8876315Z Fetched 79.3 MB in 1s (80.3 MB/s)
|
||||
2026-06-27T05:03:47.9196945Z Selecting previously unselected package fonts-ipafont-gothic.
|
||||
2026-06-27T05:03:48.0973964Z (Reading database ...
|
||||
(Reading database ... 5%
|
||||
(Reading database ... 10%
|
||||
(Reading database ... 15%
|
||||
(Reading database ... 20%
|
||||
(Reading database ... 25%
|
||||
(Reading database ... 30%
|
||||
(Reading database ... 35%
|
||||
(Reading database ... 40%
|
||||
(Reading database ... 45%
|
||||
(Reading database ... 50%
|
||||
(Reading database ... 55%
|
||||
(Reading database ... 60%
|
||||
(Reading database ... 65%
|
||||
(Reading database ... 70%
|
||||
(Reading database ... 75%
|
||||
(Reading database ... 80%
|
||||
(Reading database ... 85%
|
||||
(Reading database ... 90%
|
||||
(Reading database ... 95%
|
||||
(Reading database ... 100%
|
||||
(Reading database ... 26518 files and directories currently installed.)
|
||||
2026-06-27T05:03:48.0974807Z Preparing to unpack .../00-fonts-ipafont-gothic_00303-21ubuntu1_all.deb ...
|
||||
2026-06-27T05:03:48.1082583Z Unpacking fonts-ipafont-gothic (00303-21ubuntu1) ...
|
||||
2026-06-27T05:03:48.4031621Z Selecting previously unselected package xkb-data.
|
||||
2026-06-27T05:03:48.4060725Z Preparing to unpack .../01-xkb-data_2.41-2ubuntu1.1_all.deb ...
|
||||
2026-06-27T05:03:48.4086859Z Unpacking xkb-data (2.41-2ubuntu1.1) ...
|
||||
2026-06-27T05:03:48.4822663Z Selecting previously unselected package libdrm-common.
|
||||
2026-06-27T05:03:48.4851249Z Preparing to unpack .../02-libdrm-common_2.4.125-1ubuntu0.1~24.04.2_all.deb ...
|
||||
2026-06-27T05:03:48.4883947Z Unpacking libdrm-common (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T05:03:48.5126530Z Selecting previously unselected package libdrm2:amd64.
|
||||
2026-06-27T05:03:48.5163740Z Preparing to unpack .../03-libdrm2_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T05:03:48.5247234Z Unpacking libdrm2:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T05:03:48.5574655Z Selecting previously unselected package libsensors-config.
|
||||
2026-06-27T05:03:48.5607811Z Preparing to unpack .../04-libsensors-config_1%3a3.6.0-9build1_all.deb ...
|
||||
2026-06-27T05:03:48.5637165Z Unpacking libsensors-config (1:3.6.0-9build1) ...
|
||||
2026-06-27T05:03:48.5848037Z Selecting previously unselected package libsensors5:amd64.
|
||||
2026-06-27T05:03:48.5860699Z Preparing to unpack .../05-libsensors5_1%3a3.6.0-9build1_amd64.deb ...
|
||||
2026-06-27T05:03:48.6445351Z Unpacking libsensors5:amd64 (1:3.6.0-9build1) ...
|
||||
2026-06-27T05:03:48.6728659Z Selecting previously unselected package libxkbcommon0:amd64.
|
||||
2026-06-27T05:03:48.6761011Z Preparing to unpack .../06-libxkbcommon0_1.6.0-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:48.6787239Z Unpacking libxkbcommon0:amd64 (1.6.0-1build1) ...
|
||||
2026-06-27T05:03:48.7023182Z Selecting previously unselected package libxmuu1:amd64.
|
||||
2026-06-27T05:03:48.7055976Z Preparing to unpack .../07-libxmuu1_2%3a1.1.3-3build2_amd64.deb ...
|
||||
2026-06-27T05:03:48.7074750Z Unpacking libxmuu1:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T05:03:48.7308431Z Selecting previously unselected package xauth.
|
||||
2026-06-27T05:03:48.7320623Z Preparing to unpack .../08-xauth_1%3a1.1.2-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:48.7341843Z Unpacking xauth (1:1.1.2-1build1) ...
|
||||
2026-06-27T05:03:48.7538665Z Selecting previously unselected package at-spi2-common.
|
||||
2026-06-27T05:03:48.7550731Z Preparing to unpack .../09-at-spi2-common_2.52.0-1build1_all.deb ...
|
||||
2026-06-27T05:03:48.7573006Z Unpacking at-spi2-common (2.52.0-1build1) ...
|
||||
2026-06-27T05:03:48.7778611Z Selecting previously unselected package fonts-freefont-ttf.
|
||||
2026-06-27T05:03:48.7792971Z Preparing to unpack .../10-fonts-freefont-ttf_20211204+svn4273-2_all.deb ...
|
||||
2026-06-27T05:03:48.7818022Z Unpacking fonts-freefont-ttf (20211204+svn4273-2) ...
|
||||
2026-06-27T05:03:48.8978122Z Selecting previously unselected package fonts-liberation.
|
||||
2026-06-27T05:03:48.8997829Z Preparing to unpack .../11-fonts-liberation_1%3a2.1.5-3_all.deb ...
|
||||
2026-06-27T05:03:48.9015456Z Unpacking fonts-liberation (1:2.1.5-3) ...
|
||||
2026-06-27T05:03:48.9524035Z Selecting previously unselected package fonts-noto-color-emoji.
|
||||
2026-06-27T05:03:48.9565036Z Preparing to unpack .../12-fonts-noto-color-emoji_2.047-0ubuntu0.24.04.1_all.deb ...
|
||||
2026-06-27T05:03:48.9596491Z Unpacking fonts-noto-color-emoji (2.047-0ubuntu0.24.04.1) ...
|
||||
2026-06-27T05:03:49.1167418Z Selecting previously unselected package fonts-tlwg-loma-otf.
|
||||
2026-06-27T05:03:49.1199369Z Preparing to unpack .../13-fonts-tlwg-loma-otf_1%3a0.7.3-1_all.deb ...
|
||||
2026-06-27T05:03:49.1223278Z Unpacking fonts-tlwg-loma-otf (1:0.7.3-1) ...
|
||||
2026-06-27T05:03:49.1503811Z Selecting previously unselected package fonts-unifont.
|
||||
2026-06-27T05:03:49.1535020Z Preparing to unpack .../14-fonts-unifont_1%3a15.1.01-1build1_all.deb ...
|
||||
2026-06-27T05:03:49.1556920Z Unpacking fonts-unifont (1:15.1.01-1build1) ...
|
||||
2026-06-27T05:03:49.2892089Z Selecting previously unselected package fonts-wqy-zenhei.
|
||||
2026-06-27T05:03:49.2923511Z Preparing to unpack .../15-fonts-wqy-zenhei_0.9.45-8_all.deb ...
|
||||
2026-06-27T05:03:49.3101208Z Unpacking fonts-wqy-zenhei (0.9.45-8) ...
|
||||
2026-06-27T05:03:49.8878955Z Selecting previously unselected package libasound2-data.
|
||||
2026-06-27T05:03:49.8907595Z Preparing to unpack .../16-libasound2-data_1.2.11-1ubuntu0.2_all.deb ...
|
||||
2026-06-27T05:03:49.8933946Z Unpacking libasound2-data (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T05:03:49.9283589Z Selecting previously unselected package libasound2t64:amd64.
|
||||
2026-06-27T05:03:49.9285798Z Preparing to unpack .../17-libasound2t64_1.2.11-1ubuntu0.2_amd64.deb ...
|
||||
2026-06-27T05:03:49.9312658Z Unpacking libasound2t64:amd64 (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T05:03:49.9928919Z Selecting previously unselected package libatk1.0-0t64:amd64.
|
||||
2026-06-27T05:03:49.9945176Z Preparing to unpack .../18-libatk1.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:49.9960739Z Unpacking libatk1.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T05:03:50.0260579Z Selecting previously unselected package libxi6:amd64.
|
||||
2026-06-27T05:03:50.0272150Z Preparing to unpack .../19-libxi6_2%3a1.8.1-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:50.0290412Z Unpacking libxi6:amd64 (2:1.8.1-1build1) ...
|
||||
2026-06-27T05:03:50.1095135Z Selecting previously unselected package libatspi2.0-0t64:amd64.
|
||||
2026-06-27T05:03:50.1095815Z Preparing to unpack .../20-libatspi2.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:50.1112023Z Unpacking libatspi2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T05:03:50.1491432Z Selecting previously unselected package libatk-bridge2.0-0t64:amd64.
|
||||
2026-06-27T05:03:50.1507422Z Preparing to unpack .../21-libatk-bridge2.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:50.1531328Z Unpacking libatk-bridge2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T05:03:50.1798755Z Selecting previously unselected package libavahi-common-data:amd64.
|
||||
2026-06-27T05:03:50.1811070Z Preparing to unpack .../22-libavahi-common-data_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T05:03:50.1834018Z Unpacking libavahi-common-data:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T05:03:50.2060891Z Selecting previously unselected package libavahi-common3:amd64.
|
||||
2026-06-27T05:03:50.2066810Z Preparing to unpack .../23-libavahi-common3_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T05:03:50.2087070Z Unpacking libavahi-common3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T05:03:50.2339970Z Selecting previously unselected package libavahi-client3:amd64.
|
||||
2026-06-27T05:03:50.2346360Z Preparing to unpack .../24-libavahi-client3_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T05:03:50.2372831Z Unpacking libavahi-client3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T05:03:50.2628128Z Selecting previously unselected package libcups2t64:amd64.
|
||||
2026-06-27T05:03:50.2646634Z Preparing to unpack .../25-libcups2t64_2.4.7-1.2ubuntu7.14_amd64.deb ...
|
||||
2026-06-27T05:03:50.2668908Z Unpacking libcups2t64:amd64 (2.4.7-1.2ubuntu7.14) ...
|
||||
2026-06-27T05:03:50.3001930Z Selecting previously unselected package libdrm-amdgpu1:amd64.
|
||||
2026-06-27T05:03:50.3002543Z Preparing to unpack .../26-libdrm-amdgpu1_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T05:03:50.3021001Z Unpacking libdrm-amdgpu1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T05:03:50.3263632Z Selecting previously unselected package libpciaccess0:amd64.
|
||||
2026-06-27T05:03:50.3316040Z Preparing to unpack .../27-libpciaccess0_0.17-3ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T05:03:50.3344539Z Unpacking libpciaccess0:amd64 (0.17-3ubuntu0.24.04.2) ...
|
||||
2026-06-27T05:03:50.3621077Z Selecting previously unselected package libdrm-intel1:amd64.
|
||||
2026-06-27T05:03:50.3632116Z Preparing to unpack .../28-libdrm-intel1_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T05:03:50.3651623Z Unpacking libdrm-intel1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T05:03:50.3898779Z Selecting previously unselected package libfontenc1:amd64.
|
||||
2026-06-27T05:03:50.3926371Z Preparing to unpack .../29-libfontenc1_1%3a1.1.8-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:50.3945541Z Unpacking libfontenc1:amd64 (1:1.1.8-1build1) ...
|
||||
2026-06-27T05:03:50.4228650Z Selecting previously unselected package libllvm20:amd64.
|
||||
2026-06-27T05:03:50.4243240Z Preparing to unpack .../30-libllvm20_1%3a20.1.2-0ubuntu1~24.04.3_amd64.deb ...
|
||||
2026-06-27T05:03:50.4277362Z Unpacking libllvm20:amd64 (1:20.1.2-0ubuntu1~24.04.3) ...
|
||||
2026-06-27T05:03:51.1945688Z Selecting previously unselected package libx11-xcb1:amd64.
|
||||
2026-06-27T05:03:51.1978441Z Preparing to unpack .../31-libx11-xcb1_2%3a1.8.7-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:51.1997818Z Unpacking libx11-xcb1:amd64 (2:1.8.7-1build1) ...
|
||||
2026-06-27T05:03:51.2303914Z Selecting previously unselected package libxcb-dri3-0:amd64.
|
||||
2026-06-27T05:03:51.2306613Z Preparing to unpack .../32-libxcb-dri3-0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T05:03:51.2335569Z Unpacking libxcb-dri3-0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:51.2653511Z Selecting previously unselected package libxcb-present0:amd64.
|
||||
2026-06-27T05:03:51.2683365Z Preparing to unpack .../33-libxcb-present0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T05:03:51.2719323Z Unpacking libxcb-present0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:51.3024417Z Selecting previously unselected package libxcb-randr0:amd64.
|
||||
2026-06-27T05:03:51.3052084Z Preparing to unpack .../34-libxcb-randr0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T05:03:51.3083261Z Unpacking libxcb-randr0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:51.3406389Z Selecting previously unselected package libxcb-sync1:amd64.
|
||||
2026-06-27T05:03:51.3432911Z Preparing to unpack .../35-libxcb-sync1_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T05:03:51.3458534Z Unpacking libxcb-sync1:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:51.3787405Z Selecting previously unselected package libxcb-xfixes0:amd64.
|
||||
2026-06-27T05:03:51.3812637Z Preparing to unpack .../36-libxcb-xfixes0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T05:03:51.3839529Z Unpacking libxcb-xfixes0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:51.4159717Z Selecting previously unselected package libxshmfence1:amd64.
|
||||
2026-06-27T05:03:51.4178371Z Preparing to unpack .../37-libxshmfence1_1.3-1build5_amd64.deb ...
|
||||
2026-06-27T05:03:51.4206795Z Unpacking libxshmfence1:amd64 (1.3-1build5) ...
|
||||
2026-06-27T05:03:51.4482213Z Selecting previously unselected package mesa-libgallium:amd64.
|
||||
2026-06-27T05:03:51.4514699Z Preparing to unpack .../38-mesa-libgallium_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T05:03:51.4531872Z Unpacking mesa-libgallium:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T05:03:51.7058441Z Selecting previously unselected package libgbm1:amd64.
|
||||
2026-06-27T05:03:51.7075418Z Preparing to unpack .../39-libgbm1_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T05:03:51.7102471Z Unpacking libgbm1:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T05:03:51.7369143Z Selecting previously unselected package libvulkan1:amd64.
|
||||
2026-06-27T05:03:51.7374302Z Preparing to unpack .../40-libvulkan1_1.3.275.0-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:51.7400194Z Unpacking libvulkan1:amd64 (1.3.275.0-1build1) ...
|
||||
2026-06-27T05:03:51.7732768Z Selecting previously unselected package libgl1-mesa-dri:amd64.
|
||||
2026-06-27T05:03:51.7774246Z Preparing to unpack .../41-libgl1-mesa-dri_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T05:03:51.7878618Z Unpacking libgl1-mesa-dri:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T05:03:51.8222671Z Selecting previously unselected package libxcb-glx0:amd64.
|
||||
2026-06-27T05:03:51.8256344Z Preparing to unpack .../42-libxcb-glx0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T05:03:51.8288734Z Unpacking libxcb-glx0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:51.8551590Z Selecting previously unselected package libxxf86vm1:amd64.
|
||||
2026-06-27T05:03:51.8580376Z Preparing to unpack .../43-libxxf86vm1_1%3a1.1.4-1build4_amd64.deb ...
|
||||
2026-06-27T05:03:51.8605178Z Unpacking libxxf86vm1:amd64 (1:1.1.4-1build4) ...
|
||||
2026-06-27T05:03:51.8846322Z Selecting previously unselected package libglx-mesa0:amd64.
|
||||
2026-06-27T05:03:51.8878710Z Preparing to unpack .../44-libglx-mesa0_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T05:03:51.8897410Z Unpacking libglx-mesa0:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T05:03:51.9133754Z Selecting previously unselected package libnspr4:amd64.
|
||||
2026-06-27T05:03:51.9168829Z Preparing to unpack .../45-libnspr4_2%3a4.35-1.1build1_amd64.deb ...
|
||||
2026-06-27T05:03:51.9193272Z Unpacking libnspr4:amd64 (2:4.35-1.1build1) ...
|
||||
2026-06-27T05:03:51.9528756Z Selecting previously unselected package libnss3:amd64.
|
||||
2026-06-27T05:03:51.9552805Z Preparing to unpack .../46-libnss3_2%3a3.98-1ubuntu0.1_amd64.deb ...
|
||||
2026-06-27T05:03:51.9582534Z Unpacking libnss3:amd64 (2:3.98-1ubuntu0.1) ...
|
||||
2026-06-27T05:03:52.0149694Z Selecting previously unselected package libxmu6:amd64.
|
||||
2026-06-27T05:03:52.0179910Z Preparing to unpack .../47-libxmu6_2%3a1.1.3-3build2_amd64.deb ...
|
||||
2026-06-27T05:03:52.0207740Z Unpacking libxmu6:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T05:03:52.0692071Z Selecting previously unselected package libxpm4:amd64.
|
||||
2026-06-27T05:03:52.0719622Z Preparing to unpack .../48-libxpm4_1%3a3.5.17-1build2_amd64.deb ...
|
||||
2026-06-27T05:03:52.0888846Z Unpacking libxpm4:amd64 (1:3.5.17-1build2) ...
|
||||
2026-06-27T05:03:52.1524085Z Selecting previously unselected package libxaw7:amd64.
|
||||
2026-06-27T05:03:52.1563258Z Preparing to unpack .../49-libxaw7_2%3a1.0.14-1build2_amd64.deb ...
|
||||
2026-06-27T05:03:52.1629831Z Unpacking libxaw7:amd64 (2:1.0.14-1build2) ...
|
||||
2026-06-27T05:03:52.1971263Z Selecting previously unselected package libxcomposite1:amd64.
|
||||
2026-06-27T05:03:52.2008041Z Preparing to unpack .../50-libxcomposite1_1%3a0.4.5-1build3_amd64.deb ...
|
||||
2026-06-27T05:03:52.2040834Z Unpacking libxcomposite1:amd64 (1:0.4.5-1build3) ...
|
||||
2026-06-27T05:03:52.2346721Z Selecting previously unselected package libxdamage1:amd64.
|
||||
2026-06-27T05:03:52.2404951Z Preparing to unpack .../51-libxdamage1_1%3a1.1.6-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:52.2434919Z Unpacking libxdamage1:amd64 (1:1.1.6-1build1) ...
|
||||
2026-06-27T05:03:52.2721372Z Selecting previously unselected package libxfixes3:amd64.
|
||||
2026-06-27T05:03:52.2754943Z Preparing to unpack .../52-libxfixes3_1%3a6.0.0-2build1_amd64.deb ...
|
||||
2026-06-27T05:03:52.2786629Z Unpacking libxfixes3:amd64 (1:6.0.0-2build1) ...
|
||||
2026-06-27T05:03:52.3089454Z Selecting previously unselected package libxfont2:amd64.
|
||||
2026-06-27T05:03:52.3101819Z Preparing to unpack .../53-libxfont2_1%3a2.0.6-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:52.3126670Z Unpacking libxfont2:amd64 (1:2.0.6-1build1) ...
|
||||
2026-06-27T05:03:52.3420860Z Selecting previously unselected package libxkbfile1:amd64.
|
||||
2026-06-27T05:03:52.3460191Z Preparing to unpack .../54-libxkbfile1_1%3a1.1.0-1build4_amd64.deb ...
|
||||
2026-06-27T05:03:52.3497897Z Unpacking libxkbfile1:amd64 (1:1.1.0-1build4) ...
|
||||
2026-06-27T05:03:52.3792507Z Selecting previously unselected package libxrandr2:amd64.
|
||||
2026-06-27T05:03:52.3825039Z Preparing to unpack .../55-libxrandr2_2%3a1.5.2-2build1_amd64.deb ...
|
||||
2026-06-27T05:03:52.3844434Z Unpacking libxrandr2:amd64 (2:1.5.2-2build1) ...
|
||||
2026-06-27T05:03:52.4078541Z Selecting previously unselected package x11-xkb-utils.
|
||||
2026-06-27T05:03:52.4113337Z Preparing to unpack .../56-x11-xkb-utils_7.7+8build2_amd64.deb ...
|
||||
2026-06-27T05:03:52.4140292Z Unpacking x11-xkb-utils (7.7+8build2) ...
|
||||
2026-06-27T05:03:52.4408851Z Selecting previously unselected package xfonts-encodings.
|
||||
2026-06-27T05:03:52.4435645Z Preparing to unpack .../57-xfonts-encodings_1%3a1.0.5-0ubuntu2_all.deb ...
|
||||
2026-06-27T05:03:52.4453715Z Unpacking xfonts-encodings (1:1.0.5-0ubuntu2) ...
|
||||
2026-06-27T05:03:52.4771188Z Selecting previously unselected package xfonts-utils.
|
||||
2026-06-27T05:03:52.4806262Z Preparing to unpack .../58-xfonts-utils_1%3a7.7+6build3_amd64.deb ...
|
||||
2026-06-27T05:03:52.4828501Z Unpacking xfonts-utils (1:7.7+6build3) ...
|
||||
2026-06-27T05:03:52.5206725Z Selecting previously unselected package xfonts-cyrillic.
|
||||
2026-06-27T05:03:52.5229522Z Preparing to unpack .../59-xfonts-cyrillic_1%3a1.0.5+nmu1_all.deb ...
|
||||
2026-06-27T05:03:52.5253935Z Unpacking xfonts-cyrillic (1:1.0.5+nmu1) ...
|
||||
2026-06-27T05:03:52.5710524Z Selecting previously unselected package xfonts-scalable.
|
||||
2026-06-27T05:03:52.5753480Z Preparing to unpack .../60-xfonts-scalable_1%3a1.0.3-1.3_all.deb ...
|
||||
2026-06-27T05:03:52.5787097Z Unpacking xfonts-scalable (1:1.0.3-1.3) ...
|
||||
2026-06-27T05:03:52.6130349Z Selecting previously unselected package xserver-common.
|
||||
2026-06-27T05:03:52.6164189Z Preparing to unpack .../61-xserver-common_2%3a21.1.12-1ubuntu1.6_all.deb ...
|
||||
2026-06-27T05:03:52.6186350Z Unpacking xserver-common (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T05:03:52.6489802Z Selecting previously unselected package libglvnd0:amd64.
|
||||
2026-06-27T05:03:52.6519485Z Preparing to unpack .../62-libglvnd0_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:52.6541544Z Unpacking libglvnd0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T05:03:52.6908086Z Selecting previously unselected package libglx0:amd64.
|
||||
2026-06-27T05:03:52.6939666Z Preparing to unpack .../63-libglx0_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:52.6966413Z Unpacking libglx0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T05:03:52.8146507Z Selecting previously unselected package libgl1:amd64.
|
||||
2026-06-27T05:03:52.8175689Z Preparing to unpack .../64-libgl1_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T05:03:52.8220815Z Unpacking libgl1:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T05:03:52.8551008Z Selecting previously unselected package xvfb.
|
||||
2026-06-27T05:03:52.8568939Z Preparing to unpack .../65-xvfb_2%3a21.1.12-1ubuntu1.6_amd64.deb ...
|
||||
2026-06-27T05:03:52.8601944Z Unpacking xvfb (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T05:03:52.9196842Z Setting up libxcb-dri3-0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:52.9270072Z Setting up libx11-xcb1:amd64 (2:1.8.7-1build1) ...
|
||||
2026-06-27T05:03:52.9338871Z Setting up libpciaccess0:amd64 (0.17-3ubuntu0.24.04.2) ...
|
||||
2026-06-27T05:03:52.9408849Z Setting up libxmu6:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T05:03:52.9481665Z Setting up libxdamage1:amd64 (1:1.1.6-1build1) ...
|
||||
2026-06-27T05:03:52.9568655Z Setting up libxcb-xfixes0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:52.9632388Z Setting up libxpm4:amd64 (1:3.5.17-1build2) ...
|
||||
2026-06-27T05:03:52.9702860Z Setting up libxi6:amd64 (2:1.8.1-1build1) ...
|
||||
2026-06-27T05:03:52.9795984Z Setting up fonts-noto-color-emoji (2.047-0ubuntu0.24.04.1) ...
|
||||
2026-06-27T05:03:52.9910894Z Setting up libglvnd0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T05:03:52.9982563Z Setting up libxcb-glx0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:53.0067802Z Setting up libsensors-config (1:3.6.0-9build1) ...
|
||||
2026-06-27T05:03:53.0210551Z Setting up fonts-wqy-zenhei (0.9.45-8) ...
|
||||
2026-06-27T05:03:53.0465007Z Setting up fonts-freefont-ttf (20211204+svn4273-2) ...
|
||||
2026-06-27T05:03:53.0549202Z Setting up xkb-data (2.41-2ubuntu1.1) ...
|
||||
2026-06-27T05:03:53.0639844Z Setting up libxaw7:amd64 (2:1.0.14-1build2) ...
|
||||
2026-06-27T05:03:53.0711247Z Setting up libxxf86vm1:amd64 (1:1.1.4-1build4) ...
|
||||
2026-06-27T05:03:53.0796392Z Setting up libxcb-present0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:53.0871074Z Setting up libasound2-data (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T05:03:53.0942314Z Setting up libfontenc1:amd64 (1:1.1.8-1build1) ...
|
||||
2026-06-27T05:03:53.1010849Z Setting up libasound2t64:amd64 (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T05:03:53.1093932Z Setting up fonts-tlwg-loma-otf (1:0.7.3-1) ...
|
||||
2026-06-27T05:03:53.1178299Z Setting up libnspr4:amd64 (2:4.35-1.1build1) ...
|
||||
2026-06-27T05:03:53.1258833Z Setting up libxfixes3:amd64 (1:6.0.0-2build1) ...
|
||||
2026-06-27T05:03:53.1327029Z Setting up libxcb-sync1:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:53.1402893Z Setting up libavahi-common-data:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T05:03:53.1475400Z Setting up libatspi2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T05:03:53.1549982Z Setting up xfonts-encodings (1:1.0.5-0ubuntu2) ...
|
||||
2026-06-27T05:03:53.1616908Z Setting up libxrandr2:amd64 (2:1.5.2-2build1) ...
|
||||
2026-06-27T05:03:53.1668661Z Setting up libllvm20:amd64 (1:20.1.2-0ubuntu1~24.04.3) ...
|
||||
2026-06-27T05:03:53.1727747Z Setting up libsensors5:amd64 (1:3.6.0-9build1) ...
|
||||
2026-06-27T05:03:53.1793936Z Setting up libvulkan1:amd64 (1.3.275.0-1build1) ...
|
||||
2026-06-27T05:03:53.1856188Z Setting up fonts-ipafont-gothic (00303-21ubuntu1) ...
|
||||
2026-06-27T05:03:53.2073121Z 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
|
||||
2026-06-27T05:03:53.2107901Z Setting up libxshmfence1:amd64 (1.3-1build5) ...
|
||||
2026-06-27T05:03:53.2165250Z Setting up at-spi2-common (2.52.0-1build1) ...
|
||||
2026-06-27T05:03:53.2215812Z Setting up libxcb-randr0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T05:03:53.2268002Z Setting up fonts-liberation (1:2.1.5-3) ...
|
||||
2026-06-27T05:03:53.2318805Z Setting up libxkbfile1:amd64 (1:1.1.0-1build4) ...
|
||||
2026-06-27T05:03:53.2385784Z Setting up libdrm-common (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T05:03:53.2443586Z Setting up libxcomposite1:amd64 (1:0.4.5-1build3) ...
|
||||
2026-06-27T05:03:53.2495177Z Setting up libxfont2:amd64 (1:2.0.6-1build1) ...
|
||||
2026-06-27T05:03:53.2540745Z Setting up libxmuu1:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T05:03:53.2591392Z Setting up fonts-unifont (1:15.1.01-1build1) ...
|
||||
2026-06-27T05:03:53.2638764Z Setting up libxkbcommon0:amd64 (1.6.0-1build1) ...
|
||||
2026-06-27T05:03:53.2708443Z Setting up libatk1.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T05:03:53.2757349Z Setting up x11-xkb-utils (7.7+8build2) ...
|
||||
2026-06-27T05:03:53.2822521Z Setting up libavahi-common3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T05:03:53.2890748Z Setting up libnss3:amd64 (2:3.98-1ubuntu0.1) ...
|
||||
2026-06-27T05:03:53.2977276Z Setting up xfonts-utils (1:7.7+6build3) ...
|
||||
2026-06-27T05:03:53.3135746Z Setting up libdrm2:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T05:03:53.3206842Z Setting up xauth (1:1.1.2-1build1) ...
|
||||
2026-06-27T05:03:53.3259026Z Setting up xfonts-cyrillic (1:1.0.5+nmu1) ...
|
||||
2026-06-27T05:03:53.3725744Z Setting up xserver-common (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T05:03:53.3818480Z Setting up libavahi-client3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T05:03:53.3887391Z Setting up xfonts-scalable (1:1.0.3-1.3) ...
|
||||
2026-06-27T05:03:53.4263794Z Setting up libdrm-amdgpu1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T05:03:53.4322346Z Setting up libatk-bridge2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T05:03:53.4391676Z Setting up libdrm-intel1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T05:03:53.4462126Z Setting up libcups2t64:amd64 (2.4.7-1.2ubuntu7.14) ...
|
||||
2026-06-27T05:03:53.4549378Z Setting up mesa-libgallium:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T05:03:53.4613960Z Setting up libgbm1:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T05:03:53.4687587Z Setting up libgl1-mesa-dri:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T05:03:53.4921499Z Setting up libglx-mesa0:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T05:03:53.5016856Z Setting up libglx0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T05:03:53.5076887Z Setting up libgl1:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T05:03:53.5129183Z Setting up xvfb (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T05:03:53.5186300Z Processing triggers for fontconfig (2.15.0-1.1ubuntu2) ...
|
||||
2026-06-27T05:03:53.7260655Z Processing triggers for libc-bin (2.39-0ubuntu8.7) ...
|
||||
2026-06-27T05:03:54.1068348Z Downloading Chromium 143.0.7499.4 (playwright build v1200) from https://cdn.playwright.dev/dbazure/download/playwright/builds/chromium/1200/chromium-linux.zip
|
||||
2026-06-27T05:03:54.5570142Z | | 0% of 164.7 MiB
|
||||
2026-06-27T05:03:55.1093456Z |■■■■■■■■ | 10% of 164.7 MiB
|
||||
2026-06-27T05:03:55.5031508Z |■■■■■■■■■■■■■■■■ | 20% of 164.7 MiB
|
||||
2026-06-27T05:03:55.9123257Z |■■■■■■■■■■■■■■■■■■■■■■■■ | 30% of 164.7 MiB
|
||||
2026-06-27T05:03:56.3075780Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 40% of 164.7 MiB
|
||||
2026-06-27T05:03:56.7004190Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 50% of 164.7 MiB
|
||||
2026-06-27T05:03:57.1010194Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 60% of 164.7 MiB
|
||||
2026-06-27T05:03:57.5039906Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 70% of 164.7 MiB
|
||||
2026-06-27T05:03:57.8972893Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 80% of 164.7 MiB
|
||||
2026-06-27T05:03:58.3006030Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 90% of 164.7 MiB
|
||||
2026-06-27T05:03:58.6921624Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■| 100% of 164.7 MiB
|
||||
2026-06-27T05:04:02.3398057Z Chromium 143.0.7499.4 (playwright build v1200) downloaded to /root/.cache/ms-playwright/chromium-1200
|
||||
2026-06-27T05:04:02.3398756Z Downloading FFMPEG playwright build v1011 from https://cdn.playwright.dev/dbazure/download/playwright/builds/ffmpeg/1011/ffmpeg-linux.zip
|
||||
2026-06-27T05:04:02.6712527Z | | 0% of 2.3 MiB
|
||||
2026-06-27T05:04:02.6774944Z |■■■■■■■■ | 10% of 2.3 MiB
|
||||
2026-06-27T05:04:02.7588604Z |■■■■■■■■■■■■■■■■ | 20% of 2.3 MiB
|
||||
2026-06-27T05:04:02.7589165Z |■■■■■■■■■■■■■■■■■■■■■■■■ | 30% of 2.3 MiB
|
||||
2026-06-27T05:04:02.7589394Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 40% of 2.3 MiB
|
||||
2026-06-27T05:04:02.7589602Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 50% of 2.3 MiB
|
||||
2026-06-27T05:04:02.7589781Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 60% of 2.3 MiB
|
||||
2026-06-27T05:04:02.7589890Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 70% of 2.3 MiB
|
||||
2026-06-27T05:04:02.7590045Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 80% of 2.3 MiB
|
||||
2026-06-27T05:04:02.7590154Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 90% of 2.3 MiB
|
||||
2026-06-27T05:04:02.7590377Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■| 100% of 2.3 MiB
|
||||
2026-06-27T05:04:02.7834173Z FFMPEG playwright build v1011 downloaded to /root/.cache/ms-playwright/ffmpeg-1011
|
||||
2026-06-27T05:04:02.7836024Z Downloading Chromium Headless Shell 143.0.7499.4 (playwright build v1200) from https://cdn.playwright.dev/dbazure/download/playwright/builds/chromium/1200/chromium-headless-shell-linux.zip
|
||||
2026-06-27T05:04:03.2976891Z | | 0% of 109.7 MiB
|
||||
2026-06-27T05:04:04.2033593Z |■■■■■■■■ | 10% of 109.7 MiB
|
||||
2026-06-27T05:04:04.5078388Z |■■■■■■■■■■■■■■■■ | 20% of 109.7 MiB
|
||||
2026-06-27T05:04:04.7311571Z |■■■■■■■■■■■■■■■■■■■■■■■■ | 30% of 109.7 MiB
|
||||
2026-06-27T05:04:05.0189698Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 40% of 109.7 MiB
|
||||
2026-06-27T05:04:05.2693267Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 50% of 109.7 MiB
|
||||
2026-06-27T05:04:05.5555251Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 60% of 109.7 MiB
|
||||
2026-06-27T05:04:05.8546832Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 70% of 109.7 MiB
|
||||
2026-06-27T05:04:06.0755813Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 80% of 109.7 MiB
|
||||
2026-06-27T05:04:06.3443369Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ | 90% of 109.7 MiB
|
||||
2026-06-27T05:04:06.6148896Z |■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■| 100% of 109.7 MiB
|
||||
2026-06-27T05:04:09.9767159Z Chromium Headless Shell 143.0.7499.4 (playwright build v1200) downloaded to /root/.cache/ms-playwright/chromium_headless_shell-1200
|
||||
2026-06-27T05:04:10.6540019Z ::group::Run set -e
|
||||
2026-06-27T05:04:10.6540361Z set -e
|
||||
2026-06-27T05:04:10.6540468Z for i in $(seq 1 30); do
|
||||
2026-06-27T05:04:10.6540553Z if curl -fsS "http://${DEPLOY_HOST}/taxbaik/healthz" >/dev/null; then
|
||||
2026-06-27T05:04:10.6540669Z exit 0
|
||||
2026-06-27T05:04:10.6540751Z fi
|
||||
2026-06-27T05:04:10.6540818Z sleep 10
|
||||
2026-06-27T05:04:10.6540886Z done
|
||||
2026-06-27T05:04:10.6540950Z echo "Deployment did not become healthy in time" >&2
|
||||
2026-06-27T05:04:10.6541033Z exit 1
|
||||
2026-06-27T05:04:10.6541115Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T05:04:10.6541214Z env:
|
||||
2026-06-27T05:04:10.6541289Z DEPLOY_HOST: ***
|
||||
2026-06-27T05:04:10.6541370Z ::endgroup::
|
||||
2026-06-27T05:04:10.9150473Z ::group::Run npm run test:e2e
|
||||
2026-06-27T05:04:10.9150794Z npm run test:e2e
|
||||
2026-06-27T05:04:10.9150903Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T05:04:10.9151028Z env:
|
||||
2026-06-27T05:04:10.9151124Z E2E_BASE_URL: http://***/taxbaik
|
||||
2026-06-27T05:04:10.9151217Z E2E_ADMIN_USERNAME: admin
|
||||
2026-06-27T05:04:10.9151294Z E2E_ADMIN_PASSWORD: ***
|
||||
2026-06-27T05:04:10.9151377Z ::endgroup::
|
||||
2026-06-27T05:04:11.2860195Z
|
||||
2026-06-27T05:04:11.2861110Z > test:e2e
|
||||
2026-06-27T05:04:11.2861247Z > playwright test
|
||||
2026-06-27T05:04:11.2861340Z
|
||||
2026-06-27T05:04:13.6416816Z
|
||||
2026-06-27T05:04:13.6417420Z Running 1 test using 1 worker
|
||||
2026-06-27T05:04:13.6436531Z
|
||||
2026-06-27T05:04:28.4679324Z ✘ 1 [chromium] › tests/e2e/admin-login.spec.ts:8:7 › admin authentication › logs in through the real browser UI and reaches dashboard (12.6s)
|
||||
2026-06-27T05:04:41.9089406Z ✘ 2 [chromium] › tests/e2e/admin-login.spec.ts:8:7 › admin authentication › logs in through the real browser UI and reaches dashboard (retry #1) (11.6s)
|
||||
2026-06-27T05:04:41.9615478Z
|
||||
2026-06-27T05:04:41.9618838Z
|
||||
2026-06-27T05:04:41.9638528Z 1) [chromium] › tests/e2e/admin-login.spec.ts:8:7 › admin authentication › logs in through the real browser UI and reaches dashboard
|
||||
2026-06-27T05:04:41.9639391Z
|
||||
2026-06-27T05:04:41.9639951Z Error: [2mexpect([22m[31mpage[39m[2m).[22mtoHaveURL[2m([22m[32mexpected[39m[2m)[22m failed
|
||||
2026-06-27T05:04:41.9640306Z
|
||||
2026-06-27T05:04:41.9640466Z Expected pattern: [32m/\/taxbaik\/admin\/dashboard$/[39m
|
||||
2026-06-27T05:04:41.9640644Z Received string: [31m"http://***/taxbaik/admin/login"[39m
|
||||
2026-06-27T05:04:41.9640835Z Timeout: 10000ms
|
||||
2026-06-27T05:04:41.9640981Z
|
||||
2026-06-27T05:04:41.9641052Z Call log:
|
||||
2026-06-27T05:04:41.9641138Z [2m - Expect "toHaveURL" with timeout 10000ms[22m
|
||||
2026-06-27T05:04:41.9641227Z [2m 14 × unexpected value "http://***/taxbaik/admin/login"[22m
|
||||
2026-06-27T05:04:41.9641335Z
|
||||
2026-06-27T05:04:41.9641420Z
|
||||
2026-06-27T05:04:41.9641566Z 26 | await page.getByRole('button', { name: '로그인' }).click();
|
||||
2026-06-27T05:04:41.9641779Z 27 |
|
||||
2026-06-27T05:04:41.9641881Z > 28 | await expect(page).toHaveURL(/\/taxbaik\/admin\/dashboard$/);
|
||||
2026-06-27T05:04:41.9641970Z | ^
|
||||
2026-06-27T05:04:41.9642044Z 29 | await expect(page.getByRole('heading', { name: /대시보드/ })).toBeVisible();
|
||||
2026-06-27T05:04:41.9642146Z 30 | await expect(page.getByRole('link', { name: /로그아웃/ })).toBeVisible();
|
||||
2026-06-27T05:04:41.9642232Z 31 |
|
||||
2026-06-27T05:04:41.9642317Z at /workspace/***/taxbaik/tests/e2e/admin-login.spec.ts:28:24
|
||||
2026-06-27T05:04:41.9642473Z
|
||||
2026-06-27T05:04:41.9642601Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9642789Z test-results/admin-login-admin-authenti-8d2e4-er-UI-and-reaches-dashboard-chromium/test-failed-1.png
|
||||
2026-06-27T05:04:41.9642883Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9643008Z
|
||||
2026-06-27T05:04:41.9643083Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9643198Z test-results/admin-login-admin-authenti-8d2e4-er-UI-and-reaches-dashboard-chromium/video.webm
|
||||
2026-06-27T05:04:41.9643315Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9643506Z
|
||||
2026-06-27T05:04:41.9643663Z Error Context: test-results/admin-login-admin-authenti-8d2e4-er-UI-and-reaches-dashboard-chromium/error-context.md
|
||||
2026-06-27T05:04:41.9643843Z
|
||||
2026-06-27T05:04:41.9643972Z attachment #4: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9644106Z test-results/admin-login-admin-authenti-8d2e4-er-UI-and-reaches-dashboard-chromium/trace.zip
|
||||
2026-06-27T05:04:41.9644193Z Usage:
|
||||
2026-06-27T05:04:41.9644270Z
|
||||
2026-06-27T05:04:41.9644338Z npx playwright show-trace test-results/admin-login-admin-authenti-8d2e4-er-UI-and-reaches-dashboard-chromium/trace.zip
|
||||
2026-06-27T05:04:41.9644436Z
|
||||
2026-06-27T05:04:41.9644504Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9644670Z
|
||||
2026-06-27T05:04:41.9644798Z Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9644983Z
|
||||
2026-06-27T05:04:41.9645104Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T05:04:41.9645192Z
|
||||
2026-06-27T05:04:41.9645258Z Locator: getByRole('heading', { name: '관리자 로그인' })
|
||||
2026-06-27T05:04:41.9645354Z Expected: visible
|
||||
2026-06-27T05:04:41.9645427Z Timeout: 10000ms
|
||||
2026-06-27T05:04:41.9645500Z Error: element(s) not found
|
||||
2026-06-27T05:04:41.9645626Z
|
||||
2026-06-27T05:04:41.9645757Z Call log:
|
||||
2026-06-27T05:04:41.9645890Z [2m - Expect "toBeVisible" with timeout 10000ms[22m
|
||||
2026-06-27T05:04:41.9645980Z [2m - waiting for getByRole('heading', { name: '관리자 로그인' })[22m
|
||||
2026-06-27T05:04:41.9646211Z
|
||||
2026-06-27T05:04:41.9646280Z
|
||||
2026-06-27T05:04:41.9646372Z 21 | await page.goto(`${baseUrl}/admin/login`);
|
||||
2026-06-27T05:04:41.9646455Z 22 |
|
||||
2026-06-27T05:04:41.9646607Z > 23 | await expect(page.getByRole('heading', { name: '관리자 로그인' })).toBeVisible();
|
||||
2026-06-27T05:04:41.9646775Z | ^
|
||||
2026-06-27T05:04:41.9646911Z 24 | await page.getByRole('textbox', { name: '사용자명' }).fill(username);
|
||||
2026-06-27T05:04:41.9647007Z 25 | await page.getByRole('textbox', { name: '비밀번호' }).fill(password);
|
||||
2026-06-27T05:04:41.9647090Z 26 | await page.getByRole('button', { name: '로그인' }).click();
|
||||
2026-06-27T05:04:41.9647171Z at /workspace/***/taxbaik/tests/e2e/admin-login.spec.ts:23:66
|
||||
2026-06-27T05:04:41.9647259Z
|
||||
2026-06-27T05:04:41.9647345Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9647447Z test-results/admin-login-admin-authenti-8d2e4-er-UI-and-reaches-dashboard-chromium-retry1/test-failed-1.png
|
||||
2026-06-27T05:04:41.9647702Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9647821Z
|
||||
2026-06-27T05:04:41.9647885Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9647997Z test-results/admin-login-admin-authenti-8d2e4-er-UI-and-reaches-dashboard-chromium-retry1/video.webm
|
||||
2026-06-27T05:04:41.9648081Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9648212Z
|
||||
2026-06-27T05:04:41.9648277Z Error Context: test-results/admin-login-admin-authenti-8d2e4-er-UI-and-reaches-dashboard-chromium-retry1/error-context.md
|
||||
2026-06-27T05:04:41.9648360Z
|
||||
2026-06-27T05:04:41.9648426Z attachment #4: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9648536Z test-results/admin-login-admin-authenti-8d2e4-er-UI-and-reaches-dashboard-chromium-retry1/trace.zip
|
||||
2026-06-27T05:04:41.9648620Z Usage:
|
||||
2026-06-27T05:04:41.9648684Z
|
||||
2026-06-27T05:04:41.9648761Z npx playwright show-trace test-results/admin-login-admin-authenti-8d2e4-er-UI-and-reaches-dashboard-chromium-retry1/trace.zip
|
||||
2026-06-27T05:04:41.9648847Z
|
||||
2026-06-27T05:04:41.9648922Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T05:04:41.9649026Z
|
||||
2026-06-27T05:04:41.9649102Z 1 failed
|
||||
2026-06-27T05:04:41.9649209Z [chromium] › tests/e2e/admin-login.spec.ts:8:7 › admin authentication › logs in through the real browser UI and reaches dashboard
|
||||
2026-06-27T05:04:42.0225416Z ❌ Failure - Main Browser E2E verification
|
||||
2026-06-27T05:04:42.0434087Z exitcode '1': failure
|
||||
2026-06-27T05:04:42.0883354Z expression '${{ runner.os }}-playwright-\n' rewritten to 'format('{0}-playwright-\n', runner.os)'
|
||||
2026-06-27T05:04:42.0883694Z evaluating expression 'format('{0}-playwright-\n', runner.os)'
|
||||
2026-06-27T05:04:42.0883995Z expression 'format('{0}-playwright-\n', runner.os)' evaluated to '%!t(string=Linux-playwright-\n)'
|
||||
2026-06-27T05:04:42.0884230Z expression '${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}' rewritten to 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))'
|
||||
2026-06-27T05:04:42.0884339Z evaluating expression 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))'
|
||||
2026-06-27T05:04:42.0884611Z Writing entry to tarball workflow/hashfiles/index.js len:168437
|
||||
2026-06-27T05:04:42.0893475Z Extracting content to '/var/run/act'
|
||||
2026-06-27T05:04:42.0940280Z 🐳 docker exec cmd=[node /var/run/act/workflow/hashfiles/index.js] user= workdir=
|
||||
2026-06-27T05:04:42.0940720Z Exec command '[node /var/run/act/workflow/hashfiles/index.js]'
|
||||
2026-06-27T05:04:42.0940992Z Working directory '/workspace/***/taxbaik'
|
||||
2026-06-27T05:04:42.2624922Z expression 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))' evaluated to '%!t(string=Linux-playwright-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f)'
|
||||
2026-06-27T05:04:42.2729036Z evaluating expression 'success()'
|
||||
2026-06-27T05:04:42.2729591Z expression 'success()' evaluated to 'false'
|
||||
2026-06-27T05:04:42.2729747Z Skipping step 'Cache Playwright browsers' due to 'success()'
|
||||
2026-06-27T05:04:42.3036579Z evaluating expression 'success()'
|
||||
2026-06-27T05:04:42.3037200Z expression 'success()' evaluated to 'false'
|
||||
2026-06-27T05:04:42.3037410Z Skipping step 'Setup Node.js' due to 'success()'
|
||||
2026-06-27T05:04:42.3364196Z evaluating expression 'always()'
|
||||
2026-06-27T05:04:42.3364766Z expression 'always()' evaluated to 'true'
|
||||
2026-06-27T05:04:42.3364912Z ⭐ Run Post Checkout code
|
||||
2026-06-27T05:04:42.3365128Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T05:04:42.3365282Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T05:04:42.3365379Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T05:04:42.3365477Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T05:04:42.3365590Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T05:04:42.3365680Z Extracting content to '/var/run/act'
|
||||
2026-06-27T05:04:42.3429416Z run post step for 'Checkout code'
|
||||
2026-06-27T05:04:42.3430373Z executing remote job container: [node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js]
|
||||
2026-06-27T05:04:42.3859083Z 🐳 docker exec cmd=[node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js] user= workdir=
|
||||
2026-06-27T05:04:42.3859445Z Exec command '[node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js]'
|
||||
2026-06-27T05:04:42.3859861Z Working directory '/workspace/***/taxbaik'
|
||||
+1018
File diff suppressed because it is too large
Load Diff
+932
@@ -0,0 +1,932 @@
|
||||
2026-06-27T12:24:54.5348434Z hz-prod-runner(version:v0.6.1) received task 262 of job browser-e2e, be triggered by event: push
|
||||
2026-06-27T12:24:54.5361360Z workflow prepared
|
||||
2026-06-27T12:24:54.5364384Z evaluating expression 'success()'
|
||||
2026-06-27T12:24:54.5365287Z expression 'success()' evaluated to 'true'
|
||||
2026-06-27T12:24:54.5365673Z 🚀 Start image=docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T12:24:54.5466861Z 🐳 docker pull image=docker.gitea.com/runner-images:ubuntu-latest platform= username= forcePull=false
|
||||
2026-06-27T12:24:54.5467110Z 🐳 docker pull docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T12:24:54.5787535Z Image exists? true
|
||||
2026-06-27T12:24:54.6291416Z 🐳 docker create image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T12:24:54.7978869Z Created container name=GITEA-ACTIONS-TASK-262-WORKFLOW-TaxBaik-Browser-E2E-JOB-browser-f5d6a3311b3836e51d8fb585a7d6b2a913d48f0455a2a7191285e8b859148f2b id=6a96f281e4aae9be735d17fb93794315e3bc2b5ea755f51629ceeff0d2fa4945 from image docker.gitea.com/runner-images:ubuntu-latest (platform: )
|
||||
2026-06-27T12:24:54.7979438Z ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
|
||||
2026-06-27T12:24:54.7979590Z 🐳 docker run image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T12:24:54.7979739Z Starting container: 6a96f281e4aae9be735d17fb93794315e3bc2b5ea755f51629ceeff0d2fa4945
|
||||
2026-06-27T12:24:54.9636529Z Started container: 6a96f281e4aae9be735d17fb93794315e3bc2b5ea755f51629ceeff0d2fa4945
|
||||
2026-06-27T12:24:55.1013794Z Writing entry to tarball workflow/event.json len:4960
|
||||
2026-06-27T12:24:55.1014599Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T12:24:55.1014906Z Extracting content to '/var/run/act/'
|
||||
2026-06-27T12:24:55.1349772Z ☁ git clone 'https://github.com/actions/checkout' # ref=v4
|
||||
2026-06-27T12:24:55.1350311Z cloning https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T12:24:55.6427083Z Unable to pull refs/heads/v4: non-fast-forward update
|
||||
2026-06-27T12:24:55.6427583Z Cloned https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T12:24:55.6508054Z Checked out v4
|
||||
2026-06-27T12:24:55.6607650Z ☁ git clone 'https://github.com/actions/setup-node' # ref=v4
|
||||
2026-06-27T12:24:55.6607955Z cloning https://github.com/actions/setup-node to /root/.cache/act/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc
|
||||
2026-06-27T12:24:56.2989902Z Unable to pull refs/heads/v4: worktree contains unstaged changes
|
||||
2026-06-27T12:24:56.2990509Z Cloned https://github.com/actions/setup-node to /root/.cache/act/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc
|
||||
2026-06-27T12:24:56.3201201Z Checked out v4
|
||||
2026-06-27T12:24:56.3298756Z ☁ git clone 'https://github.com/actions/cache' # ref=v4
|
||||
2026-06-27T12:24:56.3299299Z cloning https://github.com/actions/cache to /root/.cache/act/6b4e4eb40e21c1bd02cb00a273f4d79af7c42205c1390e4e65c594ecd7a3696e
|
||||
2026-06-27T12:24:57.0167124Z Unable to pull refs/heads/v4: worktree contains unstaged changes
|
||||
2026-06-27T12:24:57.0167917Z Cloned https://github.com/actions/cache to /root/.cache/act/6b4e4eb40e21c1bd02cb00a273f4d79af7c42205c1390e4e65c594ecd7a3696e
|
||||
2026-06-27T12:24:57.0373085Z Checked out v4
|
||||
2026-06-27T12:24:57.0765339Z evaluating expression ''
|
||||
2026-06-27T12:24:57.0765988Z expression '' evaluated to 'true'
|
||||
2026-06-27T12:24:57.0767113Z ⭐ Run Main Checkout code
|
||||
2026-06-27T12:24:57.0767300Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T12:24:57.0767450Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T12:24:57.0767551Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T12:24:57.0767635Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T12:24:57.0767716Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T12:24:57.0767816Z Extracting content to '/var/run/act'
|
||||
2026-06-27T12:24:57.0815444Z ::group::Run Checkout code
|
||||
2026-06-27T12:24:57.6383705Z ::add-matcher::/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/problem-matcher.json
|
||||
2026-06-27T12:24:57.6390917Z Syncing repository: ***/taxbaik
|
||||
2026-06-27T12:24:57.6397276Z ::group::Getting Git version info
|
||||
2026-06-27T12:24:57.6400204Z Working directory is '/workspace/***/taxbaik'
|
||||
2026-06-27T12:24:57.6454189Z [command]/usr/bin/git version
|
||||
2026-06-27T12:24:57.6510122Z git version 2.54.0
|
||||
2026-06-27T12:24:57.6563708Z ::endgroup::
|
||||
2026-06-27T12:24:57.6588064Z Temporarily overriding HOME='/tmp/f6b17812-4704-4d0b-a03f-1993460e77fb' before making global git config changes
|
||||
2026-06-27T12:24:57.6590799Z Adding repository directory to the temporary git global config as a safe directory
|
||||
2026-06-27T12:24:57.6600727Z [command]/usr/bin/git config --global --add safe.directory /workspace/***/taxbaik
|
||||
2026-06-27T12:24:57.6670777Z Deleting the contents of '/workspace/***/taxbaik'
|
||||
2026-06-27T12:24:57.6683421Z ::group::Initializing the repository
|
||||
2026-06-27T12:24:57.6702745Z [command]/usr/bin/git init /workspace/***/taxbaik
|
||||
2026-06-27T12:24:57.6752430Z hint: Using 'master' as the name for the initial branch. This default branch name
|
||||
2026-06-27T12:24:57.6752949Z hint: will change to "main" in Git 3.0. To configure the initial branch name
|
||||
2026-06-27T12:24:57.6753077Z hint: to use in all of your new repositories, which will suppress this warning,
|
||||
2026-06-27T12:24:57.6753235Z hint: call:
|
||||
2026-06-27T12:24:57.6753317Z hint:
|
||||
2026-06-27T12:24:57.6753406Z hint: git config --global init.defaultBranch <name>
|
||||
2026-06-27T12:24:57.6753507Z hint:
|
||||
2026-06-27T12:24:57.6753576Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
|
||||
2026-06-27T12:24:57.6753661Z hint: 'development'. The just-created branch can be renamed via this command:
|
||||
2026-06-27T12:24:57.6753744Z hint:
|
||||
2026-06-27T12:24:57.6753844Z hint: git branch -m <name>
|
||||
2026-06-27T12:24:57.6753912Z hint:
|
||||
2026-06-27T12:24:57.6753989Z hint: Disable this message with "git config set advice.defaultBranchName false"
|
||||
2026-06-27T12:24:57.6754077Z Initialized empty Git repository in /workspace/***/taxbaik/.git/
|
||||
2026-06-27T12:24:57.6784028Z [command]/usr/bin/git remote add origin http://gitea:3000/***/taxbaik
|
||||
2026-06-27T12:24:57.6834723Z ::endgroup::
|
||||
2026-06-27T12:24:57.6834987Z ::group::Disabling automatic garbage collection
|
||||
2026-06-27T12:24:57.6849923Z [command]/usr/bin/git config --local gc.auto 0
|
||||
2026-06-27T12:24:57.6896730Z ::endgroup::
|
||||
2026-06-27T12:24:57.6896969Z ::group::Setting up auth
|
||||
2026-06-27T12:24:57.6903514Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
||||
2026-06-27T12:24:57.6950964Z [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' || :"
|
||||
2026-06-27T12:24:57.7288288Z [command]/usr/bin/git config --local --name-only --get-regexp http\.http\:\/\/gitea\:3000\/\.extraheader
|
||||
2026-06-27T12:24:57.7335736Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.http\:\/\/gitea\:3000\/\.extraheader' && git config --local --unset-all 'http.http://gitea:3000/.extraheader' || :"
|
||||
2026-06-27T12:24:57.7764744Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
||||
2026-06-27T12:24:57.7798993Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
||||
2026-06-27T12:24:57.8039630Z [command]/usr/bin/git config --local http.http://gitea:3000/.extraheader AUTHORIZATION: basic ***
|
||||
2026-06-27T12:24:57.8087518Z ::endgroup::
|
||||
2026-06-27T12:24:57.8087711Z ::group::Fetching the repository
|
||||
2026-06-27T12:24:57.8087805Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +9f7e01652d8eaef9268ba463edc7ccb9f87288f3:refs/remotes/origin/master
|
||||
2026-06-27T12:24:57.9043136Z From http://gitea:3000/***/taxbaik
|
||||
2026-06-27T12:24:57.9043883Z * [new ref] 9f7e01652d8eaef9268ba463edc7ccb9f87288f3 -> origin/master
|
||||
2026-06-27T12:24:57.9093179Z ::endgroup::
|
||||
2026-06-27T12:24:57.9093547Z ::group::Determining the checkout info
|
||||
2026-06-27T12:24:57.9093806Z ::endgroup::
|
||||
2026-06-27T12:24:57.9104830Z [command]/usr/bin/git sparse-checkout disable
|
||||
2026-06-27T12:24:57.9152785Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
|
||||
2026-06-27T12:24:57.9188914Z ::group::Checking out the ref
|
||||
2026-06-27T12:24:57.9195755Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
|
||||
2026-06-27T12:24:57.9306875Z Reset branch 'master'
|
||||
2026-06-27T12:24:57.9311676Z branch 'master' set up to track 'origin/master'.
|
||||
2026-06-27T12:24:57.9323309Z ::endgroup::
|
||||
2026-06-27T12:24:57.9373935Z [command]/usr/bin/git log -1 --format=%H
|
||||
2026-06-27T12:24:57.9399904Z 9f7e01652d8eaef9268ba463edc7ccb9f87288f3
|
||||
2026-06-27T12:24:57.9418995Z ::remove-matcher owner=checkout-git::
|
||||
2026-06-27T12:24:57.9510963Z ::endgroup::
|
||||
2026-06-27T12:24:58.0339931Z ::group::Run Setup Node.js
|
||||
2026-06-27T12:24:58.0340296Z with:
|
||||
2026-06-27T12:24:58.0340412Z cache: npm
|
||||
2026-06-27T12:24:58.0340507Z node-version: 22
|
||||
2026-06-27T12:24:58.9454536Z Found in cache @ /opt/hostedtoolcache/node/22.23.1/x64
|
||||
2026-06-27T12:24:58.9463974Z (node:142) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
|
||||
2026-06-27T12:24:58.9464215Z (Use `node --trace-deprecation ...` to show where the warning was created)
|
||||
2026-06-27T12:24:58.9484091Z ::group::Environment details
|
||||
2026-06-27T12:24:59.1040681Z node: v22.23.1
|
||||
2026-06-27T12:24:59.1041297Z npm: 10.9.8
|
||||
2026-06-27T12:24:59.1041497Z yarn:
|
||||
2026-06-27T12:24:59.1042193Z ::endgroup::
|
||||
2026-06-27T12:24:59.1073895Z [command]/opt/hostedtoolcache/node/22.23.1/x64/bin/npm config get cache
|
||||
2026-06-27T12:24:59.2253589Z /root/.npm
|
||||
2026-06-27T12:24:59.2847981Z Cache Size: ~3 MB (2871987 B)
|
||||
2026-06-27T12:24:59.2874913Z [command]/usr/bin/tar -xf /tmp/091e3aae-a4ba-413c-8154-9b1d3ed41ae0/cache.tzst -P -C /workspace/***/taxbaik --use-compress-program unzstd
|
||||
2026-06-27T12:24:59.3014463Z Cache restored successfully
|
||||
2026-06-27T12:24:59.3024342Z Cache restored from key: node-cache-linux-x64-npm-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f
|
||||
2026-06-27T12:24:59.3027864Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/tsc.json
|
||||
2026-06-27T12:24:59.3028794Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/eslint-stylish.json
|
||||
2026-06-27T12:24:59.3029483Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/eslint-compact.json
|
||||
2026-06-27T12:24:59.3156762Z ::endgroup::
|
||||
2026-06-27T12:24:59.5259797Z ::group::Run Cache Playwright browsers
|
||||
2026-06-27T12:24:59.5260261Z with:
|
||||
2026-06-27T12:24:59.5260382Z key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
|
||||
2026-06-27T12:24:59.5260547Z path: ~/.cache/ms-playwright
|
||||
2026-06-27T12:24:59.5261048Z restore-keys: ${{ runner.os }}-playwright-
|
||||
2026-06-27T12:25:00.3828321Z (node:204) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
|
||||
2026-06-27T12:25:00.3829203Z (Use `node --trace-deprecation ...` to show where the warning was created)
|
||||
2026-06-27T12:25:01.3019019Z Cache Size: ~247 MB (259204371 B)
|
||||
2026-06-27T12:25:01.3155235Z [command]/usr/bin/tar -xf /tmp/5a591f39-ffb7-4ddb-8cb9-ba4eea78b8a0/cache.tzst -P -C /workspace/***/taxbaik --use-compress-program unzstd
|
||||
2026-06-27T12:25:02.9769632Z Cache restored successfully
|
||||
2026-06-27T12:25:03.0033921Z Cache restored from key: linux-playwright-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f
|
||||
2026-06-27T12:25:03.0216544Z ::endgroup::
|
||||
2026-06-27T12:25:03.1500849Z ::group::Run set -e
|
||||
2026-06-27T12:25:03.1501184Z set -e
|
||||
2026-06-27T12:25:03.1501303Z npm ci
|
||||
2026-06-27T12:25:03.1501394Z npx playwright install chromium --with-deps
|
||||
2026-06-27T12:25:03.1501542Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:25:03.1501642Z ::endgroup::
|
||||
2026-06-27T12:25:04.4857006Z
|
||||
2026-06-27T12:25:04.4857770Z added 3 packages, and audited 4 packages in 1s
|
||||
2026-06-27T12:25:04.4859161Z
|
||||
2026-06-27T12:25:04.4859432Z found 0 vulnerabilities
|
||||
2026-06-27T12:25:06.1025784Z Installing dependencies...
|
||||
2026-06-27T12:25:06.5962559Z Get:1 http://archive.ubuntu.com/ubuntu noble InRelease [256 kB]
|
||||
2026-06-27T12:25:06.5963153Z Get:2 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
|
||||
2026-06-27T12:25:06.7329817Z Get:3 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
|
||||
2026-06-27T12:25:06.7551167Z Get:4 https://packages.microsoft.com/ubuntu/24.04/prod noble InRelease [3600 B]
|
||||
2026-06-27T12:25:06.7898601Z Get:5 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
|
||||
2026-06-27T12:25:06.7915103Z Get:6 https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble InRelease [24.3 kB]
|
||||
2026-06-27T12:25:06.8012924Z Get:7 http://security.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [43.8 kB]
|
||||
2026-06-27T12:25:06.8522335Z Get:8 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1487 kB]
|
||||
2026-06-27T12:25:06.9084619Z Get:9 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [1339 kB]
|
||||
2026-06-27T12:25:06.9421547Z Get:10 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [976 kB]
|
||||
2026-06-27T12:25:07.0208068Z Get:11 http://archive.ubuntu.com/ubuntu noble/universe amd64 Packages [19.3 MB]
|
||||
2026-06-27T12:25:07.4083227Z Get:12 https://packagecloud.io/github/git-lfs/ubuntu noble InRelease [29.2 kB]
|
||||
2026-06-27T12:25:07.5452616Z Get:13 http://archive.ubuntu.com/ubuntu noble/multiverse amd64 Packages [331 kB]
|
||||
2026-06-27T12:25:07.5516482Z Get:14 http://archive.ubuntu.com/ubuntu noble/restricted amd64 Packages [117 kB]
|
||||
2026-06-27T12:25:07.5568467Z Get:15 http://archive.ubuntu.com/ubuntu noble/main amd64 Packages [1808 kB]
|
||||
2026-06-27T12:25:07.5770548Z Get:16 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [1412 kB]
|
||||
2026-06-27T12:25:07.5971965Z Get:17 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1296 kB]
|
||||
2026-06-27T12:25:07.6081367Z Get:18 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [49.5 kB]
|
||||
2026-06-27T12:25:07.6108400Z Get:19 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [2108 kB]
|
||||
2026-06-27T12:25:07.7011339Z Get:20 https://packages.microsoft.com/ubuntu/24.04/prod noble/main all Packages [643 B]
|
||||
2026-06-27T12:25:07.7073375Z Get:21 https://packages.microsoft.com/ubuntu/24.04/prod noble/main amd64 Packages [187 kB]
|
||||
2026-06-27T12:25:07.8212545Z Get:22 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [35.9 kB]
|
||||
2026-06-27T12:25:07.8429172Z Get:23 http://archive.ubuntu.com/ubuntu noble-backports/main amd64 Packages [48.9 kB]
|
||||
2026-06-27T12:25:07.8474967Z Get:24 http://archive.ubuntu.com/ubuntu noble-backports/multiverse amd64 Packages [671 B]
|
||||
2026-06-27T12:25:08.0103366Z Get:25 https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble/main amd64 Packages [2988 B]
|
||||
2026-06-27T12:25:08.8441365Z Get:26 https://packagecloud.io/github/git-lfs/ubuntu noble/main amd64 Packages [1273 B]
|
||||
2026-06-27T12:25:09.1241906Z Fetched 31.3 MB in 3s (10.7 MB/s)
|
||||
2026-06-27T12:25:10.5360575Z Reading package lists...
|
||||
2026-06-27T12:25:12.2698618Z Reading package lists...
|
||||
2026-06-27T12:25:12.6910492Z Building dependency tree...
|
||||
2026-06-27T12:25:12.6917607Z Reading state information...
|
||||
2026-06-27T12:25:13.1858629Z libcairo2 is already the newest version (1.18.0-3build1).
|
||||
2026-06-27T12:25:13.1859112Z libcairo2 set to manually installed.
|
||||
2026-06-27T12:25:13.1859229Z libdbus-1-3 is already the newest version (1.14.10-4ubuntu4.1).
|
||||
2026-06-27T12:25:13.1859435Z libdbus-1-3 set to manually installed.
|
||||
2026-06-27T12:25:13.1859522Z libglib2.0-0t64 is already the newest version (2.80.0-6ubuntu3.8).
|
||||
2026-06-27T12:25:13.1859639Z libglib2.0-0t64 set to manually installed.
|
||||
2026-06-27T12:25:13.1859791Z libpango-1.0-0 is already the newest version (1.52.1+ds-1build1).
|
||||
2026-06-27T12:25:13.1859900Z libpango-1.0-0 set to manually installed.
|
||||
2026-06-27T12:25:13.1859977Z libx11-6 is already the newest version (2:1.8.7-1build1).
|
||||
2026-06-27T12:25:13.1860055Z libx11-6 set to manually installed.
|
||||
2026-06-27T12:25:13.1860147Z libxcb1 is already the newest version (1.15-1ubuntu2).
|
||||
2026-06-27T12:25:13.1860224Z libxcb1 set to manually installed.
|
||||
2026-06-27T12:25:13.1860299Z libxext6 is already the newest version (2:1.3.4-1build2).
|
||||
2026-06-27T12:25:13.1860399Z libxext6 set to manually installed.
|
||||
2026-06-27T12:25:13.1860475Z libfontconfig1 is already the newest version (2.15.0-1.1ubuntu2).
|
||||
2026-06-27T12:25:13.1860556Z libfontconfig1 set to manually installed.
|
||||
2026-06-27T12:25:13.1860640Z libfreetype6 is already the newest version (2.13.2+dfsg-1ubuntu0.1).
|
||||
2026-06-27T12:25:13.1860746Z libfreetype6 set to manually installed.
|
||||
2026-06-27T12:25:13.1860824Z The following additional packages will be installed:
|
||||
2026-06-27T12:25:13.1860920Z at-spi2-common libasound2-data libavahi-client3 libavahi-common-data
|
||||
2026-06-27T12:25:13.1861019Z libavahi-common3 libdrm-amdgpu1 libdrm-common libdrm-intel1 libfontenc1
|
||||
2026-06-27T12:25:13.1861099Z libgl1 libgl1-mesa-dri libglvnd0 libglx-mesa0 libglx0 libllvm20
|
||||
2026-06-27T12:25:13.1862774Z libpciaccess0 libsensors-config libsensors5 libvulkan1 libx11-xcb1 libxaw7
|
||||
2026-06-27T12:25:13.1863103Z libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-sync1
|
||||
2026-06-27T12:25:13.1863512Z libxcb-xfixes0 libxfont2 libxi6 libxkbfile1 libxmu6 libxmuu1 libxpm4
|
||||
2026-06-27T12:25:13.1864703Z libxshmfence1 libxxf86vm1 mesa-libgallium x11-xkb-utils xauth
|
||||
2026-06-27T12:25:13.1864901Z xfonts-encodings xfonts-utils xkb-data xserver-common
|
||||
2026-06-27T12:25:13.1887405Z Suggested packages:
|
||||
2026-06-27T12:25:13.1887786Z alsa-utils libasound2-plugins cups-common pciutils lm-sensors
|
||||
2026-06-27T12:25:13.1887898Z Recommended packages:
|
||||
2026-06-27T12:25:13.1887986Z fonts-ipafont-mincho fonts-liberation-sans-narrow fonts-tlwg-loma
|
||||
2026-06-27T12:25:13.1888398Z alsa-ucm-conf alsa-topology-conf at-spi2-core mesa-vulkan-drivers
|
||||
2026-06-27T12:25:13.1888525Z | vulkan-icd xfonts-base
|
||||
2026-06-27T12:25:13.4376794Z The following NEW packages will be installed:
|
||||
2026-06-27T12:25:13.4380936Z at-spi2-common fonts-freefont-ttf fonts-ipafont-gothic fonts-liberation
|
||||
2026-06-27T12:25:13.4387092Z fonts-noto-color-emoji fonts-tlwg-loma-otf fonts-unifont fonts-wqy-zenhei
|
||||
2026-06-27T12:25:13.4388949Z libasound2-data libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64
|
||||
2026-06-27T12:25:13.4391554Z libatspi2.0-0t64 libavahi-client3 libavahi-common-data libavahi-common3
|
||||
2026-06-27T12:25:13.4394306Z libcups2t64 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm2 libfontenc1
|
||||
2026-06-27T12:25:13.4399560Z libgbm1 libgl1 libgl1-mesa-dri libglvnd0 libglx-mesa0 libglx0 libllvm20
|
||||
2026-06-27T12:25:13.4408211Z libnspr4 libnss3 libpciaccess0 libsensors-config libsensors5 libvulkan1
|
||||
2026-06-27T12:25:13.4409722Z libx11-xcb1 libxaw7 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0
|
||||
2026-06-27T12:25:13.4411093Z libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxdamage1 libxfixes3 libxfont2
|
||||
2026-06-27T12:25:13.4412653Z libxi6 libxkbcommon0 libxkbfile1 libxmu6 libxmuu1 libxpm4 libxrandr2
|
||||
2026-06-27T12:25:13.4422977Z libxshmfence1 libxxf86vm1 mesa-libgallium x11-xkb-utils xauth
|
||||
2026-06-27T12:25:13.4424559Z xfonts-cyrillic xfonts-encodings xfonts-scalable xfonts-utils xkb-data
|
||||
2026-06-27T12:25:13.4425990Z xserver-common xvfb
|
||||
2026-06-27T12:25:13.5058139Z 0 upgraded, 66 newly installed, 0 to remove and 52 not upgraded.
|
||||
2026-06-27T12:25:13.5058970Z Need to get 79.3 MB of archives.
|
||||
2026-06-27T12:25:13.5059254Z After this operation, 303 MB of additional disk space will be used.
|
||||
2026-06-27T12:25:13.5059497Z Get:1 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-ipafont-gothic all 00303-21ubuntu1 [3513 kB]
|
||||
2026-06-27T12:25:13.6237335Z Get:2 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 xkb-data all 2.41-2ubuntu1.1 [397 kB]
|
||||
2026-06-27T12:25:13.6297773Z Get:3 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-common all 2.4.125-1ubuntu0.1~24.04.2 [9250 B]
|
||||
2026-06-27T12:25:13.6370981Z Get:4 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm2 amd64 2.4.125-1ubuntu0.1~24.04.2 [41.4 kB]
|
||||
2026-06-27T12:25:13.6439924Z Get:5 http://archive.ubuntu.com/ubuntu noble/main amd64 libsensors-config all 1:3.6.0-9build1 [5546 B]
|
||||
2026-06-27T12:25:13.6512980Z Get:6 http://archive.ubuntu.com/ubuntu noble/main amd64 libsensors5 amd64 1:3.6.0-9build1 [26.6 kB]
|
||||
2026-06-27T12:25:13.6569963Z Get:7 http://archive.ubuntu.com/ubuntu noble/main amd64 libxkbcommon0 amd64 1.6.0-1build1 [122 kB]
|
||||
2026-06-27T12:25:13.6642523Z Get:8 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmuu1 amd64 2:1.1.3-3build2 [8958 B]
|
||||
2026-06-27T12:25:13.6717647Z Get:9 http://archive.ubuntu.com/ubuntu noble/main amd64 xauth amd64 1:1.1.2-1build1 [25.6 kB]
|
||||
2026-06-27T12:25:13.6785307Z Get:10 http://archive.ubuntu.com/ubuntu noble/main amd64 at-spi2-common all 2.52.0-1build1 [8674 B]
|
||||
2026-06-27T12:25:13.6862705Z Get:11 http://archive.ubuntu.com/ubuntu noble/main amd64 fonts-freefont-ttf all 20211204+svn4273-2 [5641 kB]
|
||||
2026-06-27T12:25:13.7656370Z Get:12 http://archive.ubuntu.com/ubuntu noble/main amd64 fonts-liberation all 1:2.1.5-3 [1603 kB]
|
||||
2026-06-27T12:25:13.7754341Z Get:13 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 fonts-noto-color-emoji all 2.047-0ubuntu0.24.04.1 [9764 kB]
|
||||
2026-06-27T12:25:13.8489857Z Get:14 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-tlwg-loma-otf all 1:0.7.3-1 [107 kB]
|
||||
2026-06-27T12:25:13.8520329Z Get:15 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-unifont all 1:15.1.01-1build1 [2993 kB]
|
||||
2026-06-27T12:25:13.8791683Z Get:16 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-wqy-zenhei all 0.9.45-8 [7472 kB]
|
||||
2026-06-27T12:25:13.9445545Z Get:17 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libasound2-data all 1.2.11-1ubuntu0.2 [21.3 kB]
|
||||
2026-06-27T12:25:13.9455241Z Get:18 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libasound2t64 amd64 1.2.11-1ubuntu0.2 [398 kB]
|
||||
2026-06-27T12:25:13.9507365Z Get:19 http://archive.ubuntu.com/ubuntu noble/main amd64 libatk1.0-0t64 amd64 2.52.0-1build1 [55.3 kB]
|
||||
2026-06-27T12:25:13.9526368Z Get:20 http://archive.ubuntu.com/ubuntu noble/main amd64 libxi6 amd64 2:1.8.1-1build1 [32.4 kB]
|
||||
2026-06-27T12:25:13.9534046Z Get:21 http://archive.ubuntu.com/ubuntu noble/main amd64 libatspi2.0-0t64 amd64 2.52.0-1build1 [80.5 kB]
|
||||
2026-06-27T12:25:13.9555904Z Get:22 http://archive.ubuntu.com/ubuntu noble/main amd64 libatk-bridge2.0-0t64 amd64 2.52.0-1build1 [66.0 kB]
|
||||
2026-06-27T12:25:13.9570240Z Get:23 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-common-data amd64 0.8-13ubuntu6.2 [30.1 kB]
|
||||
2026-06-27T12:25:13.9582290Z Get:24 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-common3 amd64 0.8-13ubuntu6.2 [23.4 kB]
|
||||
2026-06-27T12:25:13.9596720Z Get:25 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-client3 amd64 0.8-13ubuntu6.2 [26.8 kB]
|
||||
2026-06-27T12:25:13.9658430Z Get:26 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libcups2t64 amd64 2.4.7-1.2ubuntu7.14 [274 kB]
|
||||
2026-06-27T12:25:13.9786888Z Get:27 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-amdgpu1 amd64 2.4.125-1ubuntu0.1~24.04.2 [21.4 kB]
|
||||
2026-06-27T12:25:13.9845650Z Get:28 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpciaccess0 amd64 0.17-3ubuntu0.24.04.2 [18.9 kB]
|
||||
2026-06-27T12:25:13.9889391Z Get:29 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-intel1 amd64 2.4.125-1ubuntu0.1~24.04.2 [63.9 kB]
|
||||
2026-06-27T12:25:13.9956446Z Get:30 http://archive.ubuntu.com/ubuntu noble/main amd64 libfontenc1 amd64 1:1.1.8-1build1 [14.0 kB]
|
||||
2026-06-27T12:25:14.0020494Z Get:31 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libllvm20 amd64 1:20.1.2-0ubuntu1~24.04.3 [30.6 MB]
|
||||
2026-06-27T12:25:14.3512110Z Get:32 http://archive.ubuntu.com/ubuntu noble/main amd64 libx11-xcb1 amd64 2:1.8.7-1build1 [7800 B]
|
||||
2026-06-27T12:25:14.3524568Z Get:33 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-dri3-0 amd64 1.15-1ubuntu2 [7142 B]
|
||||
2026-06-27T12:25:14.3536276Z Get:34 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-present0 amd64 1.15-1ubuntu2 [5676 B]
|
||||
2026-06-27T12:25:14.3540824Z Get:35 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-randr0 amd64 1.15-1ubuntu2 [17.9 kB]
|
||||
2026-06-27T12:25:14.3630953Z Get:36 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-sync1 amd64 1.15-1ubuntu2 [9312 B]
|
||||
2026-06-27T12:25:14.3643692Z Get:37 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-xfixes0 amd64 1.15-1ubuntu2 [10.2 kB]
|
||||
2026-06-27T12:25:14.3644726Z Get:38 http://archive.ubuntu.com/ubuntu noble/main amd64 libxshmfence1 amd64 1.3-1build5 [4764 B]
|
||||
2026-06-27T12:25:14.3649363Z Get:39 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 mesa-libgallium amd64 25.2.8-0ubuntu0.24.04.2 [10.8 MB]
|
||||
2026-06-27T12:25:14.4958716Z Get:40 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgbm1 amd64 25.2.8-0ubuntu0.24.04.2 [34.2 kB]
|
||||
2026-06-27T12:25:14.4964971Z Get:41 http://archive.ubuntu.com/ubuntu noble/main amd64 libvulkan1 amd64 1.3.275.0-1build1 [142 kB]
|
||||
2026-06-27T12:25:14.4985248Z Get:42 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgl1-mesa-dri amd64 25.2.8-0ubuntu0.24.04.2 [37.9 kB]
|
||||
2026-06-27T12:25:14.5001361Z Get:43 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-glx0 amd64 1.15-1ubuntu2 [24.8 kB]
|
||||
2026-06-27T12:25:14.5002004Z Get:44 http://archive.ubuntu.com/ubuntu noble/main amd64 libxxf86vm1 amd64 1:1.1.4-1build4 [9282 B]
|
||||
2026-06-27T12:25:14.5002482Z Get:45 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libglx-mesa0 amd64 25.2.8-0ubuntu0.24.04.2 [110 kB]
|
||||
2026-06-27T12:25:14.5023508Z Get:46 http://archive.ubuntu.com/ubuntu noble/main amd64 libnspr4 amd64 2:4.35-1.1build1 [117 kB]
|
||||
2026-06-27T12:25:14.5056546Z Get:47 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libnss3 amd64 2:3.98-1ubuntu0.1 [1445 kB]
|
||||
2026-06-27T12:25:14.5135739Z Get:48 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmu6 amd64 2:1.1.3-3build2 [47.6 kB]
|
||||
2026-06-27T12:25:14.5160172Z Get:49 http://archive.ubuntu.com/ubuntu noble/main amd64 libxpm4 amd64 1:3.5.17-1build2 [36.5 kB]
|
||||
2026-06-27T12:25:14.5362960Z Get:50 http://archive.ubuntu.com/ubuntu noble/main amd64 libxaw7 amd64 2:1.0.14-1build2 [187 kB]
|
||||
2026-06-27T12:25:14.5458048Z Get:51 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcomposite1 amd64 1:0.4.5-1build3 [6320 B]
|
||||
2026-06-27T12:25:14.5533493Z Get:52 http://archive.ubuntu.com/ubuntu noble/main amd64 libxdamage1 amd64 1:1.1.6-1build1 [6150 B]
|
||||
2026-06-27T12:25:14.5625598Z Get:53 http://archive.ubuntu.com/ubuntu noble/main amd64 libxfixes3 amd64 1:6.0.0-2build1 [10.8 kB]
|
||||
2026-06-27T12:25:14.5697072Z Get:54 http://archive.ubuntu.com/ubuntu noble/main amd64 libxfont2 amd64 1:2.0.6-1build1 [93.0 kB]
|
||||
2026-06-27T12:25:14.5719456Z Get:55 http://archive.ubuntu.com/ubuntu noble/main amd64 libxkbfile1 amd64 1:1.1.0-1build4 [70.0 kB]
|
||||
2026-06-27T12:25:14.5786293Z Get:56 http://archive.ubuntu.com/ubuntu noble/main amd64 libxrandr2 amd64 2:1.5.2-2build1 [19.7 kB]
|
||||
2026-06-27T12:25:14.5847022Z Get:57 http://archive.ubuntu.com/ubuntu noble/main amd64 x11-xkb-utils amd64 7.7+8build2 [170 kB]
|
||||
2026-06-27T12:25:14.5928264Z Get:58 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-encodings all 1:1.0.5-0ubuntu2 [578 kB]
|
||||
2026-06-27T12:25:14.5996539Z Get:59 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-utils amd64 1:7.7+6build3 [94.4 kB]
|
||||
2026-06-27T12:25:14.6067697Z Get:60 http://archive.ubuntu.com/ubuntu noble/universe amd64 xfonts-cyrillic all 1:1.0.5+nmu1 [384 kB]
|
||||
2026-06-27T12:25:14.6128176Z Get:61 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-scalable all 1:1.0.3-1.3 [304 kB]
|
||||
2026-06-27T12:25:14.6186928Z Get:62 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 xserver-common all 2:21.1.12-1ubuntu1.6 [34.7 kB]
|
||||
2026-06-27T12:25:14.6245655Z Get:63 http://archive.ubuntu.com/ubuntu noble/main amd64 libglvnd0 amd64 1.7.0-1build1 [69.6 kB]
|
||||
2026-06-27T12:25:14.6314597Z Get:64 http://archive.ubuntu.com/ubuntu noble/main amd64 libglx0 amd64 1.7.0-1build1 [38.6 kB]
|
||||
2026-06-27T12:25:14.6385550Z Get:65 http://archive.ubuntu.com/ubuntu noble/main amd64 libgl1 amd64 1.7.0-1build1 [102 kB]
|
||||
2026-06-27T12:25:14.6438583Z Get:66 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 xvfb amd64 2:21.1.12-1ubuntu1.6 [877 kB]
|
||||
2026-06-27T12:25:15.1420657Z debconf: delaying package configuration, since apt-utils is not installed
|
||||
2026-06-27T12:25:15.2108116Z Fetched 79.3 MB in 1s (66.5 MB/s)
|
||||
2026-06-27T12:25:15.2544541Z Selecting previously unselected package fonts-ipafont-gothic.
|
||||
2026-06-27T12:25:15.4019282Z (Reading database ...
|
||||
(Reading database ... 5%
|
||||
(Reading database ... 10%
|
||||
(Reading database ... 15%
|
||||
(Reading database ... 20%
|
||||
(Reading database ... 25%
|
||||
(Reading database ... 30%
|
||||
(Reading database ... 35%
|
||||
(Reading database ... 40%
|
||||
(Reading database ... 45%
|
||||
(Reading database ... 50%
|
||||
(Reading database ... 55%
|
||||
(Reading database ... 60%
|
||||
(Reading database ... 65%
|
||||
(Reading database ... 70%
|
||||
(Reading database ... 75%
|
||||
(Reading database ... 80%
|
||||
(Reading database ... 85%
|
||||
(Reading database ... 90%
|
||||
(Reading database ... 95%
|
||||
(Reading database ... 100%
|
||||
(Reading database ... 26518 files and directories currently installed.)
|
||||
2026-06-27T12:25:15.4039305Z Preparing to unpack .../00-fonts-ipafont-gothic_00303-21ubuntu1_all.deb ...
|
||||
2026-06-27T12:25:15.4170596Z Unpacking fonts-ipafont-gothic (00303-21ubuntu1) ...
|
||||
2026-06-27T12:25:15.7638590Z Selecting previously unselected package xkb-data.
|
||||
2026-06-27T12:25:15.7665619Z Preparing to unpack .../01-xkb-data_2.41-2ubuntu1.1_all.deb ...
|
||||
2026-06-27T12:25:15.7731200Z Unpacking xkb-data (2.41-2ubuntu1.1) ...
|
||||
2026-06-27T12:25:15.8783558Z Selecting previously unselected package libdrm-common.
|
||||
2026-06-27T12:25:15.8872851Z Preparing to unpack .../02-libdrm-common_2.4.125-1ubuntu0.1~24.04.2_all.deb ...
|
||||
2026-06-27T12:25:15.8934497Z Unpacking libdrm-common (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:25:15.9257959Z Selecting previously unselected package libdrm2:amd64.
|
||||
2026-06-27T12:25:15.9258566Z Preparing to unpack .../03-libdrm2_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T12:25:15.9318366Z Unpacking libdrm2:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:25:15.9578149Z Selecting previously unselected package libsensors-config.
|
||||
2026-06-27T12:25:15.9619599Z Preparing to unpack .../04-libsensors-config_1%3a3.6.0-9build1_all.deb ...
|
||||
2026-06-27T12:25:15.9655415Z Unpacking libsensors-config (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:25:15.9977899Z Selecting previously unselected package libsensors5:amd64.
|
||||
2026-06-27T12:25:16.0018522Z Preparing to unpack .../05-libsensors5_1%3a3.6.0-9build1_amd64.deb ...
|
||||
2026-06-27T12:25:16.0532739Z Unpacking libsensors5:amd64 (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:25:16.0808844Z Selecting previously unselected package libxkbcommon0:amd64.
|
||||
2026-06-27T12:25:16.0845443Z Preparing to unpack .../06-libxkbcommon0_1.6.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:16.0892770Z Unpacking libxkbcommon0:amd64 (1.6.0-1build1) ...
|
||||
2026-06-27T12:25:16.1295934Z Selecting previously unselected package libxmuu1:amd64.
|
||||
2026-06-27T12:25:16.1297484Z Preparing to unpack .../07-libxmuu1_2%3a1.1.3-3build2_amd64.deb ...
|
||||
2026-06-27T12:25:16.1319959Z Unpacking libxmuu1:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:25:16.1798353Z Selecting previously unselected package xauth.
|
||||
2026-06-27T12:25:16.1844381Z Preparing to unpack .../08-xauth_1%3a1.1.2-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:16.1873744Z Unpacking xauth (1:1.1.2-1build1) ...
|
||||
2026-06-27T12:25:16.2337376Z Selecting previously unselected package at-spi2-common.
|
||||
2026-06-27T12:25:16.2374210Z Preparing to unpack .../09-at-spi2-common_2.52.0-1build1_all.deb ...
|
||||
2026-06-27T12:25:16.2403654Z Unpacking at-spi2-common (2.52.0-1build1) ...
|
||||
2026-06-27T12:25:16.2640031Z Selecting previously unselected package fonts-freefont-ttf.
|
||||
2026-06-27T12:25:16.2688194Z Preparing to unpack .../10-fonts-freefont-ttf_20211204+svn4273-2_all.deb ...
|
||||
2026-06-27T12:25:16.2715634Z Unpacking fonts-freefont-ttf (20211204+svn4273-2) ...
|
||||
2026-06-27T12:25:16.4624949Z Selecting previously unselected package fonts-liberation.
|
||||
2026-06-27T12:25:16.4664412Z Preparing to unpack .../11-fonts-liberation_1%3a2.1.5-3_all.deb ...
|
||||
2026-06-27T12:25:16.4698233Z Unpacking fonts-liberation (1:2.1.5-3) ...
|
||||
2026-06-27T12:25:16.5758532Z Selecting previously unselected package fonts-noto-color-emoji.
|
||||
2026-06-27T12:25:16.5784846Z Preparing to unpack .../12-fonts-noto-color-emoji_2.047-0ubuntu0.24.04.1_all.deb ...
|
||||
2026-06-27T12:25:16.5818431Z Unpacking fonts-noto-color-emoji (2.047-0ubuntu0.24.04.1) ...
|
||||
2026-06-27T12:25:16.6688110Z Selecting previously unselected package fonts-tlwg-loma-otf.
|
||||
2026-06-27T12:25:16.6697851Z Preparing to unpack .../13-fonts-tlwg-loma-otf_1%3a0.7.3-1_all.deb ...
|
||||
2026-06-27T12:25:16.6728075Z Unpacking fonts-tlwg-loma-otf (1:0.7.3-1) ...
|
||||
2026-06-27T12:25:16.7058383Z Selecting previously unselected package fonts-unifont.
|
||||
2026-06-27T12:25:16.7076283Z Preparing to unpack .../14-fonts-unifont_1%3a15.1.01-1build1_all.deb ...
|
||||
2026-06-27T12:25:16.7119785Z Unpacking fonts-unifont (1:15.1.01-1build1) ...
|
||||
2026-06-27T12:25:16.8738298Z Selecting previously unselected package fonts-wqy-zenhei.
|
||||
2026-06-27T12:25:16.8754729Z Preparing to unpack .../15-fonts-wqy-zenhei_0.9.45-8_all.deb ...
|
||||
2026-06-27T12:25:16.8864258Z Unpacking fonts-wqy-zenhei (0.9.45-8) ...
|
||||
2026-06-27T12:25:17.7398488Z Selecting previously unselected package libasound2-data.
|
||||
2026-06-27T12:25:17.7413325Z Preparing to unpack .../16-libasound2-data_1.2.11-1ubuntu0.2_all.deb ...
|
||||
2026-06-27T12:25:17.7462092Z Unpacking libasound2-data (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:25:17.8189676Z Selecting previously unselected package libasound2t64:amd64.
|
||||
2026-06-27T12:25:17.8228827Z Preparing to unpack .../17-libasound2t64_1.2.11-1ubuntu0.2_amd64.deb ...
|
||||
2026-06-27T12:25:17.8271296Z Unpacking libasound2t64:amd64 (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:25:17.8868281Z Selecting previously unselected package libatk1.0-0t64:amd64.
|
||||
2026-06-27T12:25:17.8893786Z Preparing to unpack .../18-libatk1.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:17.8967249Z Unpacking libatk1.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:25:17.9469807Z Selecting previously unselected package libxi6:amd64.
|
||||
2026-06-27T12:25:18.0106781Z Preparing to unpack .../19-libxi6_2%3a1.8.1-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:18.0150638Z Unpacking libxi6:amd64 (2:1.8.1-1build1) ...
|
||||
2026-06-27T12:25:18.0601129Z Selecting previously unselected package libatspi2.0-0t64:amd64.
|
||||
2026-06-27T12:25:18.0603195Z Preparing to unpack .../20-libatspi2.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:18.0640403Z Unpacking libatspi2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:25:18.1577757Z Selecting previously unselected package libatk-bridge2.0-0t64:amd64.
|
||||
2026-06-27T12:25:18.1595179Z Preparing to unpack .../21-libatk-bridge2.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:18.1634496Z Unpacking libatk-bridge2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:25:18.1971550Z Selecting previously unselected package libavahi-common-data:amd64.
|
||||
2026-06-27T12:25:18.2035440Z Preparing to unpack .../22-libavahi-common-data_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T12:25:18.2091156Z Unpacking libavahi-common-data:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:25:18.2980438Z Selecting previously unselected package libavahi-common3:amd64.
|
||||
2026-06-27T12:25:18.3021286Z Preparing to unpack .../23-libavahi-common3_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T12:25:18.3059229Z Unpacking libavahi-common3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:25:18.3489053Z Selecting previously unselected package libavahi-client3:amd64.
|
||||
2026-06-27T12:25:18.3515870Z Preparing to unpack .../24-libavahi-client3_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T12:25:18.3548912Z Unpacking libavahi-client3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:25:18.3938504Z Selecting previously unselected package libcups2t64:amd64.
|
||||
2026-06-27T12:25:18.3954248Z Preparing to unpack .../25-libcups2t64_2.4.7-1.2ubuntu7.14_amd64.deb ...
|
||||
2026-06-27T12:25:18.4013283Z Unpacking libcups2t64:amd64 (2.4.7-1.2ubuntu7.14) ...
|
||||
2026-06-27T12:25:18.4438106Z Selecting previously unselected package libdrm-amdgpu1:amd64.
|
||||
2026-06-27T12:25:18.4452600Z Preparing to unpack .../26-libdrm-amdgpu1_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T12:25:18.4488012Z Unpacking libdrm-amdgpu1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:25:18.4852562Z Selecting previously unselected package libpciaccess0:amd64.
|
||||
2026-06-27T12:25:18.4871489Z Preparing to unpack .../27-libpciaccess0_0.17-3ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:25:18.4905191Z Unpacking libpciaccess0:amd64 (0.17-3ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:25:18.5257535Z Selecting previously unselected package libdrm-intel1:amd64.
|
||||
2026-06-27T12:25:18.5331423Z Preparing to unpack .../28-libdrm-intel1_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T12:25:18.5387663Z Unpacking libdrm-intel1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:25:18.5829710Z Selecting previously unselected package libfontenc1:amd64.
|
||||
2026-06-27T12:25:18.5830315Z Preparing to unpack .../29-libfontenc1_1%3a1.1.8-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:18.5871022Z Unpacking libfontenc1:amd64 (1:1.1.8-1build1) ...
|
||||
2026-06-27T12:25:18.6417563Z Selecting previously unselected package libllvm20:amd64.
|
||||
2026-06-27T12:25:18.6492294Z Preparing to unpack .../30-libllvm20_1%3a20.1.2-0ubuntu1~24.04.3_amd64.deb ...
|
||||
2026-06-27T12:25:18.6517213Z Unpacking libllvm20:amd64 (1:20.1.2-0ubuntu1~24.04.3) ...
|
||||
2026-06-27T12:25:19.6509055Z Selecting previously unselected package libx11-xcb1:amd64.
|
||||
2026-06-27T12:25:19.6530193Z Preparing to unpack .../31-libx11-xcb1_2%3a1.8.7-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:19.6572298Z Unpacking libx11-xcb1:amd64 (2:1.8.7-1build1) ...
|
||||
2026-06-27T12:25:19.7068262Z Selecting previously unselected package libxcb-dri3-0:amd64.
|
||||
2026-06-27T12:25:19.7087732Z Preparing to unpack .../32-libxcb-dri3-0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:25:19.7122822Z Unpacking libxcb-dri3-0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:19.7678827Z Selecting previously unselected package libxcb-present0:amd64.
|
||||
2026-06-27T12:25:19.7709390Z Preparing to unpack .../33-libxcb-present0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:25:19.7772207Z Unpacking libxcb-present0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:19.8189165Z Selecting previously unselected package libxcb-randr0:amd64.
|
||||
2026-06-27T12:25:19.8211057Z Preparing to unpack .../34-libxcb-randr0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:25:19.8288071Z Unpacking libxcb-randr0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:19.8973149Z Selecting previously unselected package libxcb-sync1:amd64.
|
||||
2026-06-27T12:25:19.9089508Z Preparing to unpack .../35-libxcb-sync1_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:25:19.9139345Z Unpacking libxcb-sync1:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:19.9519040Z Selecting previously unselected package libxcb-xfixes0:amd64.
|
||||
2026-06-27T12:25:19.9540956Z Preparing to unpack .../36-libxcb-xfixes0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:25:19.9570911Z Unpacking libxcb-xfixes0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:20.0108902Z Selecting previously unselected package libxshmfence1:amd64.
|
||||
2026-06-27T12:25:20.0140100Z Preparing to unpack .../37-libxshmfence1_1.3-1build5_amd64.deb ...
|
||||
2026-06-27T12:25:20.0206320Z Unpacking libxshmfence1:amd64 (1.3-1build5) ...
|
||||
2026-06-27T12:25:20.1548281Z Selecting previously unselected package mesa-libgallium:amd64.
|
||||
2026-06-27T12:25:20.1618136Z Preparing to unpack .../38-mesa-libgallium_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:25:20.1698135Z Unpacking mesa-libgallium:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:25:20.4349392Z Selecting previously unselected package libgbm1:amd64.
|
||||
2026-06-27T12:25:20.4407367Z Preparing to unpack .../39-libgbm1_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:25:20.4451117Z Unpacking libgbm1:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:25:20.4978734Z Selecting previously unselected package libvulkan1:amd64.
|
||||
2026-06-27T12:25:20.5001435Z Preparing to unpack .../40-libvulkan1_1.3.275.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:20.5246522Z Unpacking libvulkan1:amd64 (1.3.275.0-1build1) ...
|
||||
2026-06-27T12:25:20.5783283Z Selecting previously unselected package libgl1-mesa-dri:amd64.
|
||||
2026-06-27T12:25:20.5844389Z Preparing to unpack .../41-libgl1-mesa-dri_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:25:20.7319616Z Unpacking libgl1-mesa-dri:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:25:20.8130736Z Selecting previously unselected package libxcb-glx0:amd64.
|
||||
2026-06-27T12:25:20.8131331Z Preparing to unpack .../42-libxcb-glx0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:25:20.8131586Z Unpacking libxcb-glx0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:20.9065341Z Selecting previously unselected package libxxf86vm1:amd64.
|
||||
2026-06-27T12:25:20.9066406Z Preparing to unpack .../43-libxxf86vm1_1%3a1.1.4-1build4_amd64.deb ...
|
||||
2026-06-27T12:25:20.9066603Z Unpacking libxxf86vm1:amd64 (1:1.1.4-1build4) ...
|
||||
2026-06-27T12:25:21.0178713Z Selecting previously unselected package libglx-mesa0:amd64.
|
||||
2026-06-27T12:25:21.0201703Z Preparing to unpack .../44-libglx-mesa0_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:25:21.0304195Z Unpacking libglx-mesa0:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:25:21.1388779Z Selecting previously unselected package libnspr4:amd64.
|
||||
2026-06-27T12:25:21.1403039Z Preparing to unpack .../45-libnspr4_2%3a4.35-1.1build1_amd64.deb ...
|
||||
2026-06-27T12:25:21.1503359Z Unpacking libnspr4:amd64 (2:4.35-1.1build1) ...
|
||||
2026-06-27T12:25:21.2485005Z Selecting previously unselected package libnss3:amd64.
|
||||
2026-06-27T12:25:21.2558864Z Preparing to unpack .../46-libnss3_2%3a3.98-1ubuntu0.1_amd64.deb ...
|
||||
2026-06-27T12:25:21.2597072Z Unpacking libnss3:amd64 (2:3.98-1ubuntu0.1) ...
|
||||
2026-06-27T12:25:21.3476375Z Selecting previously unselected package libxmu6:amd64.
|
||||
2026-06-27T12:25:21.3537982Z Preparing to unpack .../47-libxmu6_2%3a1.1.3-3build2_amd64.deb ...
|
||||
2026-06-27T12:25:21.3573745Z Unpacking libxmu6:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:25:21.4067043Z Selecting previously unselected package libxpm4:amd64.
|
||||
2026-06-27T12:25:21.4129723Z Preparing to unpack .../48-libxpm4_1%3a3.5.17-1build2_amd64.deb ...
|
||||
2026-06-27T12:25:21.4177982Z Unpacking libxpm4:amd64 (1:3.5.17-1build2) ...
|
||||
2026-06-27T12:25:21.4769218Z Selecting previously unselected package libxaw7:amd64.
|
||||
2026-06-27T12:25:21.4818449Z Preparing to unpack .../49-libxaw7_2%3a1.0.14-1build2_amd64.deb ...
|
||||
2026-06-27T12:25:21.4877720Z Unpacking libxaw7:amd64 (2:1.0.14-1build2) ...
|
||||
2026-06-27T12:25:21.7198538Z Selecting previously unselected package libxcomposite1:amd64.
|
||||
2026-06-27T12:25:21.7199108Z Preparing to unpack .../50-libxcomposite1_1%3a0.4.5-1build3_amd64.deb ...
|
||||
2026-06-27T12:25:21.7226404Z Unpacking libxcomposite1:amd64 (1:0.4.5-1build3) ...
|
||||
2026-06-27T12:25:21.7823786Z Selecting previously unselected package libxdamage1:amd64.
|
||||
2026-06-27T12:25:21.7867778Z Preparing to unpack .../51-libxdamage1_1%3a1.1.6-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:21.7868282Z Unpacking libxdamage1:amd64 (1:1.1.6-1build1) ...
|
||||
2026-06-27T12:25:21.8388943Z Selecting previously unselected package libxfixes3:amd64.
|
||||
2026-06-27T12:25:21.8430434Z Preparing to unpack .../52-libxfixes3_1%3a6.0.0-2build1_amd64.deb ...
|
||||
2026-06-27T12:25:21.8508500Z Unpacking libxfixes3:amd64 (1:6.0.0-2build1) ...
|
||||
2026-06-27T12:25:21.9081558Z Selecting previously unselected package libxfont2:amd64.
|
||||
2026-06-27T12:25:21.9083055Z Preparing to unpack .../53-libxfont2_1%3a2.0.6-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:21.9083343Z Unpacking libxfont2:amd64 (1:2.0.6-1build1) ...
|
||||
2026-06-27T12:25:22.0483062Z Selecting previously unselected package libxkbfile1:amd64.
|
||||
2026-06-27T12:25:22.0527958Z Preparing to unpack .../54-libxkbfile1_1%3a1.1.0-1build4_amd64.deb ...
|
||||
2026-06-27T12:25:22.0579759Z Unpacking libxkbfile1:amd64 (1:1.1.0-1build4) ...
|
||||
2026-06-27T12:25:22.1193305Z Selecting previously unselected package libxrandr2:amd64.
|
||||
2026-06-27T12:25:22.1221273Z Preparing to unpack .../55-libxrandr2_2%3a1.5.2-2build1_amd64.deb ...
|
||||
2026-06-27T12:25:22.1254284Z Unpacking libxrandr2:amd64 (2:1.5.2-2build1) ...
|
||||
2026-06-27T12:25:22.1652661Z Selecting previously unselected package x11-xkb-utils.
|
||||
2026-06-27T12:25:22.1685675Z Preparing to unpack .../56-x11-xkb-utils_7.7+8build2_amd64.deb ...
|
||||
2026-06-27T12:25:22.1748649Z Unpacking x11-xkb-utils (7.7+8build2) ...
|
||||
2026-06-27T12:25:22.2074972Z Selecting previously unselected package xfonts-encodings.
|
||||
2026-06-27T12:25:22.2105634Z Preparing to unpack .../57-xfonts-encodings_1%3a1.0.5-0ubuntu2_all.deb ...
|
||||
2026-06-27T12:25:22.2158216Z Unpacking xfonts-encodings (1:1.0.5-0ubuntu2) ...
|
||||
2026-06-27T12:25:22.2939590Z Selecting previously unselected package xfonts-utils.
|
||||
2026-06-27T12:25:22.3268379Z Preparing to unpack .../58-xfonts-utils_1%3a7.7+6build3_amd64.deb ...
|
||||
2026-06-27T12:25:22.3344768Z Unpacking xfonts-utils (1:7.7+6build3) ...
|
||||
2026-06-27T12:25:22.4774674Z Selecting previously unselected package xfonts-cyrillic.
|
||||
2026-06-27T12:25:22.4805186Z Preparing to unpack .../59-xfonts-cyrillic_1%3a1.0.5+nmu1_all.deb ...
|
||||
2026-06-27T12:25:22.4869412Z Unpacking xfonts-cyrillic (1:1.0.5+nmu1) ...
|
||||
2026-06-27T12:25:22.5928434Z Selecting previously unselected package xfonts-scalable.
|
||||
2026-06-27T12:25:22.6009105Z Preparing to unpack .../60-xfonts-scalable_1%3a1.0.3-1.3_all.deb ...
|
||||
2026-06-27T12:25:22.6046032Z Unpacking xfonts-scalable (1:1.0.3-1.3) ...
|
||||
2026-06-27T12:25:22.6553773Z Selecting previously unselected package xserver-common.
|
||||
2026-06-27T12:25:22.6658145Z Preparing to unpack .../61-xserver-common_2%3a21.1.12-1ubuntu1.6_all.deb ...
|
||||
2026-06-27T12:25:22.6693498Z Unpacking xserver-common (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:25:22.7098546Z Selecting previously unselected package libglvnd0:amd64.
|
||||
2026-06-27T12:25:22.7112207Z Preparing to unpack .../62-libglvnd0_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:22.7134464Z Unpacking libglvnd0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:25:22.7793087Z Selecting previously unselected package libglx0:amd64.
|
||||
2026-06-27T12:25:22.7825161Z Preparing to unpack .../63-libglx0_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:22.7892929Z Unpacking libglx0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:25:22.8279183Z Selecting previously unselected package libgl1:amd64.
|
||||
2026-06-27T12:25:22.8309051Z Preparing to unpack .../64-libgl1_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:25:22.8357828Z Unpacking libgl1:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:25:22.8913425Z Selecting previously unselected package xvfb.
|
||||
2026-06-27T12:25:22.8937575Z Preparing to unpack .../65-xvfb_2%3a21.1.12-1ubuntu1.6_amd64.deb ...
|
||||
2026-06-27T12:25:22.8998528Z Unpacking xvfb (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:25:23.0030934Z Setting up libxcb-dri3-0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:23.0107870Z Setting up libx11-xcb1:amd64 (2:1.8.7-1build1) ...
|
||||
2026-06-27T12:25:23.0240084Z Setting up libpciaccess0:amd64 (0.17-3ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:25:23.0389817Z Setting up libxmu6:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:25:23.0548046Z Setting up libxdamage1:amd64 (1:1.1.6-1build1) ...
|
||||
2026-06-27T12:25:23.0880779Z Setting up libxcb-xfixes0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:23.1092069Z Setting up libxpm4:amd64 (1:3.5.17-1build2) ...
|
||||
2026-06-27T12:25:23.1231089Z Setting up libxi6:amd64 (2:1.8.1-1build1) ...
|
||||
2026-06-27T12:25:23.1387593Z Setting up fonts-noto-color-emoji (2.047-0ubuntu0.24.04.1) ...
|
||||
2026-06-27T12:25:23.1517269Z Setting up libglvnd0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:25:23.1636439Z Setting up libxcb-glx0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:23.1757658Z Setting up libsensors-config (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:25:23.1952407Z Setting up fonts-wqy-zenhei (0.9.45-8) ...
|
||||
2026-06-27T12:25:23.2353172Z Setting up fonts-freefont-ttf (20211204+svn4273-2) ...
|
||||
2026-06-27T12:25:23.2477142Z Setting up xkb-data (2.41-2ubuntu1.1) ...
|
||||
2026-06-27T12:25:23.2609198Z Setting up libxaw7:amd64 (2:1.0.14-1build2) ...
|
||||
2026-06-27T12:25:23.2742238Z Setting up libxxf86vm1:amd64 (1:1.1.4-1build4) ...
|
||||
2026-06-27T12:25:23.2892442Z Setting up libxcb-present0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:23.3042771Z Setting up libasound2-data (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:25:23.3182534Z Setting up libfontenc1:amd64 (1:1.1.8-1build1) ...
|
||||
2026-06-27T12:25:23.3294750Z Setting up libasound2t64:amd64 (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:25:23.3430904Z Setting up fonts-tlwg-loma-otf (1:0.7.3-1) ...
|
||||
2026-06-27T12:25:23.3570951Z Setting up libnspr4:amd64 (2:4.35-1.1build1) ...
|
||||
2026-06-27T12:25:23.3719596Z Setting up libxfixes3:amd64 (1:6.0.0-2build1) ...
|
||||
2026-06-27T12:25:23.3863930Z Setting up libxcb-sync1:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:23.4013930Z Setting up libavahi-common-data:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:25:23.4140514Z Setting up libatspi2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:25:23.4273295Z Setting up xfonts-encodings (1:1.0.5-0ubuntu2) ...
|
||||
2026-06-27T12:25:23.4372046Z Setting up libxrandr2:amd64 (2:1.5.2-2build1) ...
|
||||
2026-06-27T12:25:23.4462363Z Setting up libllvm20:amd64 (1:20.1.2-0ubuntu1~24.04.3) ...
|
||||
2026-06-27T12:25:23.4542157Z Setting up libsensors5:amd64 (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:25:23.4652723Z Setting up libvulkan1:amd64 (1.3.275.0-1build1) ...
|
||||
2026-06-27T12:25:23.4738379Z Setting up fonts-ipafont-gothic (00303-21ubuntu1) ...
|
||||
2026-06-27T12:25:23.5017679Z 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
|
||||
2026-06-27T12:25:23.5111406Z Setting up libxshmfence1:amd64 (1.3-1build5) ...
|
||||
2026-06-27T12:25:23.5330443Z Setting up at-spi2-common (2.52.0-1build1) ...
|
||||
2026-06-27T12:25:23.5475834Z Setting up libxcb-randr0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:25:23.5580992Z Setting up fonts-liberation (1:2.1.5-3) ...
|
||||
2026-06-27T12:25:23.5719138Z Setting up libxkbfile1:amd64 (1:1.1.0-1build4) ...
|
||||
2026-06-27T12:25:23.5881350Z Setting up libdrm-common (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:25:23.5960151Z Setting up libxcomposite1:amd64 (1:0.4.5-1build3) ...
|
||||
2026-06-27T12:25:23.6028072Z Setting up libxfont2:amd64 (1:2.0.6-1build1) ...
|
||||
2026-06-27T12:25:23.6111284Z Setting up libxmuu1:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:25:23.6190948Z Setting up fonts-unifont (1:15.1.01-1build1) ...
|
||||
2026-06-27T12:25:23.6253263Z Setting up libxkbcommon0:amd64 (1.6.0-1build1) ...
|
||||
2026-06-27T12:25:23.6376295Z Setting up libatk1.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:25:23.6474344Z Setting up x11-xkb-utils (7.7+8build2) ...
|
||||
2026-06-27T12:25:23.6572761Z Setting up libavahi-common3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:25:23.6657522Z Setting up libnss3:amd64 (2:3.98-1ubuntu0.1) ...
|
||||
2026-06-27T12:25:23.6805104Z Setting up xfonts-utils (1:7.7+6build3) ...
|
||||
2026-06-27T12:25:23.6963274Z Setting up libdrm2:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:25:23.7128113Z Setting up xauth (1:1.1.2-1build1) ...
|
||||
2026-06-27T12:25:23.7210877Z Setting up xfonts-cyrillic (1:1.0.5+nmu1) ...
|
||||
2026-06-27T12:25:23.8012389Z Setting up xserver-common (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:25:23.8159799Z Setting up libavahi-client3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:25:23.8319653Z Setting up xfonts-scalable (1:1.0.3-1.3) ...
|
||||
2026-06-27T12:25:23.8920871Z Setting up libdrm-amdgpu1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:25:23.9061174Z Setting up libatk-bridge2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:25:23.9241008Z Setting up libdrm-intel1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:25:23.9377793Z Setting up libcups2t64:amd64 (2.4.7-1.2ubuntu7.14) ...
|
||||
2026-06-27T12:25:23.9529465Z Setting up mesa-libgallium:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:25:23.9689097Z Setting up libgbm1:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:25:23.9798647Z Setting up libgl1-mesa-dri:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:25:23.9991153Z Setting up libglx-mesa0:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:25:24.0060033Z Setting up libglx0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:25:24.0148874Z Setting up libgl1:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:25:24.0245825Z Setting up xvfb (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:25:24.0347952Z Processing triggers for fontconfig (2.15.0-1.1ubuntu2) ...
|
||||
2026-06-27T12:25:24.2719323Z Processing triggers for libc-bin (2.39-0ubuntu8.7) ...
|
||||
2026-06-27T12:25:24.8537493Z ::group::Run set -e
|
||||
2026-06-27T12:25:24.8537829Z set -e
|
||||
2026-06-27T12:25:24.8537933Z EXPECTED_VERSION="$(git rev-parse --short HEAD)"
|
||||
2026-06-27T12:25:24.8538041Z for i in $(seq 1 60); do
|
||||
2026-06-27T12:25:24.8538129Z VERSION_BODY="$(curl -fsS "http://${DEPLOY_HOST}/taxbaik/version.txt" || true)"
|
||||
2026-06-27T12:25:24.8538238Z BLOG_STATUS="$(curl -s -o /dev/null -w '%{http_code}' "http://${DEPLOY_HOST}/taxbaik/blog/accountant-mistakes-5" || true)"
|
||||
2026-06-27T12:25:24.8538331Z if echo "$VERSION_BODY" | grep -q "Version: ${EXPECTED_VERSION}" && [ "$BLOG_STATUS" = "200" ]; then
|
||||
2026-06-27T12:25:24.8538433Z echo "Deployment is ready for ${EXPECTED_VERSION}"
|
||||
2026-06-27T12:25:24.8538558Z exit 0
|
||||
2026-06-27T12:25:24.8538627Z fi
|
||||
2026-06-27T12:25:24.8538693Z echo "Waiting for deployment ${EXPECTED_VERSION}; blog status=${BLOG_STATUS}; version=${VERSION_BODY}"
|
||||
2026-06-27T12:25:24.8538794Z sleep 10
|
||||
2026-06-27T12:25:24.8538866Z done
|
||||
2026-06-27T12:25:24.8538930Z echo "Deployment did not publish expected version ${EXPECTED_VERSION} in time" >&2
|
||||
2026-06-27T12:25:24.8539017Z exit 1
|
||||
2026-06-27T12:25:24.8539093Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:25:24.8539184Z env:
|
||||
2026-06-27T12:25:24.8539255Z DEPLOY_HOST: ***
|
||||
2026-06-27T12:25:24.8539337Z ::endgroup::
|
||||
2026-06-27T12:25:25.0402214Z curl: (22) The requested URL returned error: 502
|
||||
2026-06-27T12:25:25.0579354Z Waiting for deployment 9f7e016; blog status=502; version=
|
||||
2026-06-27T12:25:35.0698027Z curl: (22) The requested URL returned error: 502
|
||||
2026-06-27T12:25:35.0843291Z Waiting for deployment 9f7e016; blog status=502; version=
|
||||
2026-06-27T12:25:45.0997074Z curl: (22) The requested URL returned error: 502
|
||||
2026-06-27T12:25:45.1210899Z Waiting for deployment 9f7e016; blog status=502; version=
|
||||
2026-06-27T12:25:55.1284047Z curl: (22) The requested URL returned error: 502
|
||||
2026-06-27T12:25:55.1377463Z Waiting for deployment 9f7e016; blog status=502; version=
|
||||
2026-06-27T12:26:05.1672550Z Deployment is ready for 9f7e016
|
||||
2026-06-27T12:26:05.2848371Z ::group::Run npm run test:e2e
|
||||
2026-06-27T12:26:05.2848778Z npm run test:e2e
|
||||
2026-06-27T12:26:05.2848904Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:26:05.2849089Z env:
|
||||
2026-06-27T12:26:05.2849215Z E2E_BASE_URL: http://***/taxbaik
|
||||
2026-06-27T12:26:05.2849346Z E2E_ADMIN_USERNAME: admin
|
||||
2026-06-27T12:26:05.2849438Z E2E_ADMIN_PASSWORD: ***
|
||||
2026-06-27T12:26:05.2849532Z ::endgroup::
|
||||
2026-06-27T12:26:05.4936839Z
|
||||
2026-06-27T12:26:05.4938525Z > test:e2e
|
||||
2026-06-27T12:26:05.4938795Z > playwright test
|
||||
2026-06-27T12:26:05.4938899Z
|
||||
2026-06-27T12:26:07.0908736Z
|
||||
2026-06-27T12:26:07.0909505Z Running 8 tests using 1 worker
|
||||
2026-06-27T12:26:07.0913297Z
|
||||
2026-06-27T12:26:10.2546952Z ✓ 1 [chromium] › tests/e2e/admin-login.spec.ts:8:7 › admin authentication › logs in through the real browser UI and reaches dashboard (2.0s)
|
||||
2026-06-27T12:26:10.5255600Z - 2 [chromium] › tests/e2e/admin-password-change.spec.ts:10:7 › admin password change › changes password through the real admin UI
|
||||
2026-06-27T12:26:32.6254900Z ✘ 3 [chromium] › tests/e2e/admin-smoke.spec.ts:9:7 › admin smoke › navigates the main admin menus without circuit errors (22.0s)
|
||||
2026-06-27T12:26:55.5960306Z ✘ 4 [chromium] › tests/e2e/admin-smoke.spec.ts:9:7 › admin smoke › navigates the main admin menus without circuit errors (retry #1) (22.1s)
|
||||
2026-06-27T12:26:57.5569909Z ✓ 5 [chromium] › tests/e2e/blog-seo.spec.ts:6:7 › blog seo › exposes title description and canonical on blog detail pages (1.1s)
|
||||
2026-06-27T12:26:57.6187120Z ✓ 6 [chromium] › tests/e2e/contact-submit.spec.ts:9:7 › contact submit › creates an inquiry through the public API (42ms)
|
||||
2026-06-27T12:27:19.7145266Z ✘ 7 [chromium] › tests/e2e/contact-submit.spec.ts:26:7 › contact submit › creates an inquiry and shows it in admin list (22.0s)
|
||||
2026-06-27T12:27:42.8326880Z ✘ 8 [chromium] › tests/e2e/contact-submit.spec.ts:26:7 › contact submit › creates an inquiry and shows it in admin list (retry #1) (22.2s)
|
||||
2026-06-27T12:27:55.0994094Z ✘ 9 [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links (11.3s)
|
||||
2026-06-27T12:28:07.3933486Z ✘ 10 [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links (retry #1) (11.3s)
|
||||
2026-06-27T12:28:09.9904674Z ✓ 11 [chromium] › tests/e2e/public-smoke.spec.ts:6:7 › public smoke › loads the main public pages with SEO basics (1.6s)
|
||||
2026-06-27T12:28:10.0454623Z
|
||||
2026-06-27T12:28:10.0460081Z
|
||||
2026-06-27T12:28:10.0473094Z 1) [chromium] › tests/e2e/admin-smoke.spec.ts:9:7 › admin smoke › navigates the main admin menus without circuit errors
|
||||
2026-06-27T12:28:10.0473448Z
|
||||
2026-06-27T12:28:10.0473752Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:28:10.0473949Z
|
||||
2026-06-27T12:28:10.0474156Z Locator: locator('.mud-main-content').getByText(/이번달 문의/).first()
|
||||
2026-06-27T12:28:10.0474341Z Expected: visible
|
||||
2026-06-27T12:28:10.0474485Z Timeout: 20000ms
|
||||
2026-06-27T12:28:10.0474612Z Error: element(s) not found
|
||||
2026-06-27T12:28:10.0474757Z
|
||||
2026-06-27T12:28:10.0474897Z Call log:
|
||||
2026-06-27T12:28:10.0475054Z [2m - Expect "toBeVisible" with timeout 20000ms[22m
|
||||
2026-06-27T12:28:10.0475243Z [2m - waiting for locator('.mud-main-content').getByText(/이번달 문의/).first()[22m
|
||||
2026-06-27T12:28:10.0475428Z
|
||||
2026-06-27T12:28:10.0475506Z
|
||||
2026-06-27T12:28:10.0475574Z 33 | await page.goto(`${baseUrl}${check.path}`);
|
||||
2026-06-27T12:28:10.0475656Z 34 | await expect(page).toHaveURL(new RegExp(`${check.path}$`));
|
||||
2026-06-27T12:28:10.0475761Z > 35 | await expect(page.locator('.mud-main-content').getByText(check.content).first()).toBeVisible({ timeout: 20_000 });
|
||||
2026-06-27T12:28:10.0475935Z | ^
|
||||
2026-06-27T12:28:10.0476343Z 36 | }
|
||||
2026-06-27T12:28:10.0476521Z 37 |
|
||||
2026-06-27T12:28:10.0476702Z 38 | expect(consoleErrors, 'browser console/page errors').toEqual([]);
|
||||
2026-06-27T12:28:10.0476879Z at /workspace/***/taxbaik/tests/e2e/admin-smoke.spec.ts:35:88
|
||||
2026-06-27T12:28:10.0477048Z
|
||||
2026-06-27T12:28:10.0477202Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0477438Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium/test-failed-1.png
|
||||
2026-06-27T12:28:10.0477635Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0477880Z
|
||||
2026-06-27T12:28:10.0478014Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0478232Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium/video.webm
|
||||
2026-06-27T12:28:10.0478409Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0478636Z
|
||||
2026-06-27T12:28:10.0478772Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0478910Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium/trace.zip
|
||||
2026-06-27T12:28:10.0478997Z Usage:
|
||||
2026-06-27T12:28:10.0479074Z
|
||||
2026-06-27T12:28:10.0479200Z npx playwright show-trace test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium/trace.zip
|
||||
2026-06-27T12:28:10.0479361Z
|
||||
2026-06-27T12:28:10.0479495Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0479715Z
|
||||
2026-06-27T12:28:10.0479888Z Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0480088Z
|
||||
2026-06-27T12:28:10.0480218Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:28:10.0480394Z
|
||||
2026-06-27T12:28:10.0480545Z Locator: locator('.mud-main-content').getByText(/이번달 문의/).first()
|
||||
2026-06-27T12:28:10.0480724Z Expected: visible
|
||||
2026-06-27T12:28:10.0480907Z Timeout: 20000ms
|
||||
2026-06-27T12:28:10.0481044Z Error: element(s) not found
|
||||
2026-06-27T12:28:10.0481138Z
|
||||
2026-06-27T12:28:10.0481207Z Call log:
|
||||
2026-06-27T12:28:10.0481284Z [2m - Expect "toBeVisible" with timeout 20000ms[22m
|
||||
2026-06-27T12:28:10.0481366Z [2m - waiting for locator('.mud-main-content').getByText(/이번달 문의/).first()[22m
|
||||
2026-06-27T12:28:10.0481516Z
|
||||
2026-06-27T12:28:10.0481628Z
|
||||
2026-06-27T12:28:10.0481773Z 33 | await page.goto(`${baseUrl}${check.path}`);
|
||||
2026-06-27T12:28:10.0481952Z 34 | await expect(page).toHaveURL(new RegExp(`${check.path}$`));
|
||||
2026-06-27T12:28:10.0482272Z > 35 | await expect(page.locator('.mud-main-content').getByText(check.content).first()).toBeVisible({ timeout: 20_000 });
|
||||
2026-06-27T12:28:10.0482474Z | ^
|
||||
2026-06-27T12:28:10.0482637Z 36 | }
|
||||
2026-06-27T12:28:10.0482772Z 37 |
|
||||
2026-06-27T12:28:10.0482907Z 38 | expect(consoleErrors, 'browser console/page errors').toEqual([]);
|
||||
2026-06-27T12:28:10.0483100Z at /workspace/***/taxbaik/tests/e2e/admin-smoke.spec.ts:35:88
|
||||
2026-06-27T12:28:10.0483254Z
|
||||
2026-06-27T12:28:10.0483373Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0483571Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium-retry1/test-failed-1.png
|
||||
2026-06-27T12:28:10.0483784Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0484013Z
|
||||
2026-06-27T12:28:10.0484140Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0484297Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium-retry1/video.webm
|
||||
2026-06-27T12:28:10.0484449Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0484653Z
|
||||
2026-06-27T12:28:10.0484795Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0485007Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium-retry1/trace.zip
|
||||
2026-06-27T12:28:10.0485201Z Usage:
|
||||
2026-06-27T12:28:10.0485324Z
|
||||
2026-06-27T12:28:10.0485458Z npx playwright show-trace test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium-retry1/trace.zip
|
||||
2026-06-27T12:28:10.0485633Z
|
||||
2026-06-27T12:28:10.0485776Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0486006Z
|
||||
2026-06-27T12:28:10.0489412Z 2) [chromium] › tests/e2e/contact-submit.spec.ts:26:7 › contact submit › creates an inquiry and shows it in admin list
|
||||
2026-06-27T12:28:10.0490271Z
|
||||
2026-06-27T12:28:10.0490398Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:28:10.0490509Z
|
||||
2026-06-27T12:28:10.0490831Z Locator: locator('.mud-main-content').getByText('문의 관리').first()
|
||||
2026-06-27T12:28:10.0491000Z Expected: visible
|
||||
2026-06-27T12:28:10.0491151Z Timeout: 20000ms
|
||||
2026-06-27T12:28:10.0491297Z Error: element(s) not found
|
||||
2026-06-27T12:28:10.0491438Z
|
||||
2026-06-27T12:28:10.0491569Z Call log:
|
||||
2026-06-27T12:28:10.0491724Z [2m - Expect "toBeVisible" with timeout 20000ms[22m
|
||||
2026-06-27T12:28:10.0491891Z [2m - waiting for locator('.mud-main-content').getByText('문의 관리').first()[22m
|
||||
2026-06-27T12:28:10.0492213Z
|
||||
2026-06-27T12:28:10.0492335Z
|
||||
2026-06-27T12:28:10.0492446Z 51 | await installAdminToken(page, token);
|
||||
2026-06-27T12:28:10.0492616Z 52 | await page.goto(`${baseUrl}/admin/inquiries`);
|
||||
2026-06-27T12:28:10.0492785Z > 53 | await expect(page.locator('.mud-main-content').getByText('문의 관리').first()).toBeVisible({ timeout: 20_000 });
|
||||
2026-06-27T12:28:10.0492997Z | ^
|
||||
2026-06-27T12:28:10.0493163Z 54 | });
|
||||
2026-06-27T12:28:10.0493427Z 55 | });
|
||||
2026-06-27T12:28:10.0493507Z 56 |
|
||||
2026-06-27T12:28:10.0493581Z at /workspace/***/taxbaik/tests/e2e/contact-submit.spec.ts:53:80
|
||||
2026-06-27T12:28:10.0493710Z
|
||||
2026-06-27T12:28:10.0493839Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0494121Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium/test-failed-1.png
|
||||
2026-06-27T12:28:10.0494321Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0494637Z
|
||||
2026-06-27T12:28:10.0494824Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0495068Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium/video.webm
|
||||
2026-06-27T12:28:10.0495238Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0495445Z
|
||||
2026-06-27T12:28:10.0495645Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0495842Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium/trace.zip
|
||||
2026-06-27T12:28:10.0495995Z Usage:
|
||||
2026-06-27T12:28:10.0496503Z
|
||||
2026-06-27T12:28:10.0496657Z npx playwright show-trace test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium/trace.zip
|
||||
2026-06-27T12:28:10.0496768Z
|
||||
2026-06-27T12:28:10.0496861Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0497001Z
|
||||
2026-06-27T12:28:10.0497092Z Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0497290Z
|
||||
2026-06-27T12:28:10.0497458Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:28:10.0497624Z
|
||||
2026-06-27T12:28:10.0497749Z Locator: locator('.mud-main-content').getByText('문의 관리').first()
|
||||
2026-06-27T12:28:10.0497901Z Expected: visible
|
||||
2026-06-27T12:28:10.0498098Z Timeout: 20000ms
|
||||
2026-06-27T12:28:10.0498303Z Error: element(s) not found
|
||||
2026-06-27T12:28:10.0498452Z
|
||||
2026-06-27T12:28:10.0498628Z Call log:
|
||||
2026-06-27T12:28:10.0498795Z [2m - Expect "toBeVisible" with timeout 20000ms[22m
|
||||
2026-06-27T12:28:10.0498953Z [2m - waiting for locator('.mud-main-content').getByText('문의 관리').first()[22m
|
||||
2026-06-27T12:28:10.0499066Z
|
||||
2026-06-27T12:28:10.0499173Z
|
||||
2026-06-27T12:28:10.0499241Z 51 | await installAdminToken(page, token);
|
||||
2026-06-27T12:28:10.0499338Z 52 | await page.goto(`${baseUrl}/admin/inquiries`);
|
||||
2026-06-27T12:28:10.0499442Z > 53 | await expect(page.locator('.mud-main-content').getByText('문의 관리').first()).toBeVisible({ timeout: 20_000 });
|
||||
2026-06-27T12:28:10.0499649Z | ^
|
||||
2026-06-27T12:28:10.0499814Z 54 | });
|
||||
2026-06-27T12:28:10.0499962Z 55 | });
|
||||
2026-06-27T12:28:10.0500164Z 56 |
|
||||
2026-06-27T12:28:10.0500308Z at /workspace/***/taxbaik/tests/e2e/contact-submit.spec.ts:53:80
|
||||
2026-06-27T12:28:10.0500477Z
|
||||
2026-06-27T12:28:10.0500662Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0500870Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium-retry1/test-failed-1.png
|
||||
2026-06-27T12:28:10.0501047Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0501249Z
|
||||
2026-06-27T12:28:10.0501420Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0501635Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium-retry1/video.webm
|
||||
2026-06-27T12:28:10.0501890Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0502498Z
|
||||
2026-06-27T12:28:10.0502640Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0502892Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium-retry1/trace.zip
|
||||
2026-06-27T12:28:10.0503047Z Usage:
|
||||
2026-06-27T12:28:10.0503213Z
|
||||
2026-06-27T12:28:10.0503387Z npx playwright show-trace test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium-retry1/trace.zip
|
||||
2026-06-27T12:28:10.0503567Z
|
||||
2026-06-27T12:28:10.0503745Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0503960Z
|
||||
2026-06-27T12:28:10.0504098Z 3) [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links
|
||||
2026-06-27T12:28:10.0504262Z
|
||||
2026-06-27T12:28:10.0504564Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:28:10.0504714Z
|
||||
2026-06-27T12:28:10.0504866Z Locator: getByText('Detail-1782563263796')
|
||||
2026-06-27T12:28:10.0505081Z Expected: visible
|
||||
2026-06-27T12:28:10.0505231Z Timeout: 10000ms
|
||||
2026-06-27T12:28:10.0505381Z Error: element(s) not found
|
||||
2026-06-27T12:28:10.0505528Z
|
||||
2026-06-27T12:28:10.0505645Z Call log:
|
||||
2026-06-27T12:28:10.0505719Z [2m - Expect "toBeVisible" with timeout 10000ms[22m
|
||||
2026-06-27T12:28:10.0505800Z [2m - waiting for getByText('Detail-1782563263796')[22m
|
||||
2026-06-27T12:28:10.0505923Z
|
||||
2026-06-27T12:28:10.0505984Z
|
||||
2026-06-27T12:28:10.0506049Z 36 |
|
||||
2026-06-27T12:28:10.0506702Z 37 | await expect(page).toHaveURL(/\/taxbaik\/admin\/inquiries\/\d+$/);
|
||||
2026-06-27T12:28:10.0506989Z > 38 | await expect(page.getByText(name)).toBeVisible();
|
||||
2026-06-27T12:28:10.0510507Z | ^
|
||||
2026-06-27T12:28:10.0510666Z 39 | await expect(page.getByText(phone)).toBeVisible();
|
||||
2026-06-27T12:28:10.0510874Z 40 | await expect(page.getByText(message)).toBeVisible();
|
||||
2026-06-27T12:28:10.0511030Z 41 | await expect(page.getByRole('button', { name: '신규' })).toBeVisible();
|
||||
2026-06-27T12:28:10.0511191Z at /workspace/***/taxbaik/tests/e2e/inquiry-detail.spec.ts:38:40
|
||||
2026-06-27T12:28:10.0511334Z
|
||||
2026-06-27T12:28:10.0511532Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0511761Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/test-failed-1.png
|
||||
2026-06-27T12:28:10.0511946Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0512343Z
|
||||
2026-06-27T12:28:10.0512455Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0512564Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/video.webm
|
||||
2026-06-27T12:28:10.0512646Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0512938Z
|
||||
2026-06-27T12:28:10.0513083Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0513271Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/trace.zip
|
||||
2026-06-27T12:28:10.0513521Z Usage:
|
||||
2026-06-27T12:28:10.0513669Z
|
||||
2026-06-27T12:28:10.0513795Z npx playwright show-trace test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/trace.zip
|
||||
2026-06-27T12:28:10.0513964Z
|
||||
2026-06-27T12:28:10.0514159Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0514373Z
|
||||
2026-06-27T12:28:10.0514497Z Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0514753Z
|
||||
2026-06-27T12:28:10.0514878Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:28:10.0515020Z
|
||||
2026-06-27T12:28:10.0515134Z Locator: getByText('Detail-1782563276056')
|
||||
2026-06-27T12:28:10.0515379Z Expected: visible
|
||||
2026-06-27T12:28:10.0515530Z Timeout: 10000ms
|
||||
2026-06-27T12:28:10.0515683Z Error: element(s) not found
|
||||
2026-06-27T12:28:10.0515867Z
|
||||
2026-06-27T12:28:10.0515964Z Call log:
|
||||
2026-06-27T12:28:10.0516037Z [2m - Expect "toBeVisible" with timeout 10000ms[22m
|
||||
2026-06-27T12:28:10.0516373Z [2m - waiting for getByText('Detail-1782563276056')[22m
|
||||
2026-06-27T12:28:10.0516612Z
|
||||
2026-06-27T12:28:10.0516748Z
|
||||
2026-06-27T12:28:10.0516877Z 36 |
|
||||
2026-06-27T12:28:10.0517056Z 37 | await expect(page).toHaveURL(/\/taxbaik\/admin\/inquiries\/\d+$/);
|
||||
2026-06-27T12:28:10.0517235Z > 38 | await expect(page.getByText(name)).toBeVisible();
|
||||
2026-06-27T12:28:10.0517379Z | ^
|
||||
2026-06-27T12:28:10.0517518Z 39 | await expect(page.getByText(phone)).toBeVisible();
|
||||
2026-06-27T12:28:10.0517706Z 40 | await expect(page.getByText(message)).toBeVisible();
|
||||
2026-06-27T12:28:10.0517890Z 41 | await expect(page.getByRole('button', { name: '신규' })).toBeVisible();
|
||||
2026-06-27T12:28:10.0518072Z at /workspace/***/taxbaik/tests/e2e/inquiry-detail.spec.ts:38:40
|
||||
2026-06-27T12:28:10.0518298Z
|
||||
2026-06-27T12:28:10.0518452Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0518575Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/test-failed-1.png
|
||||
2026-06-27T12:28:10.0518668Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0518810Z
|
||||
2026-06-27T12:28:10.0518894Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0519174Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/video.webm
|
||||
2026-06-27T12:28:10.0519394Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0519618Z
|
||||
2026-06-27T12:28:10.0519759Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0520059Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/trace.zip
|
||||
2026-06-27T12:28:10.0520271Z Usage:
|
||||
2026-06-27T12:28:10.0520412Z
|
||||
2026-06-27T12:28:10.0520535Z npx playwright show-trace test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/trace.zip
|
||||
2026-06-27T12:28:10.0520722Z
|
||||
2026-06-27T12:28:10.0520896Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:28:10.0521120Z
|
||||
2026-06-27T12:28:10.0521253Z 3 failed
|
||||
2026-06-27T12:28:10.0521464Z [chromium] › tests/e2e/admin-smoke.spec.ts:9:7 › admin smoke › navigates the main admin menus without circuit errors
|
||||
2026-06-27T12:28:10.0521637Z [chromium] › tests/e2e/contact-submit.spec.ts:26:7 › contact submit › creates an inquiry and shows it in admin list
|
||||
2026-06-27T12:28:10.0521739Z [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links
|
||||
2026-06-27T12:28:10.0521851Z 1 skipped
|
||||
2026-06-27T12:28:10.0521946Z 4 passed (2.1m)
|
||||
2026-06-27T12:28:10.1213717Z ❌ Failure - Main Browser E2E verification
|
||||
2026-06-27T12:28:10.1330889Z exitcode '1': failure
|
||||
2026-06-27T12:28:10.2333635Z ::group::Run echo "Executed tests:"
|
||||
2026-06-27T12:28:10.2334218Z echo "Executed tests:"
|
||||
2026-06-27T12:28:10.2334334Z echo "- admin-login"
|
||||
2026-06-27T12:28:10.2334414Z echo "- admin-smoke"
|
||||
2026-06-27T12:28:10.2334506Z echo "- public-smoke"
|
||||
2026-06-27T12:28:10.2334583Z echo "- blog-seo"
|
||||
2026-06-27T12:28:10.2334902Z echo "- contact-submit"
|
||||
2026-06-27T12:28:10.2335042Z echo "- inquiry-detail"
|
||||
2026-06-27T12:28:10.2335155Z echo "- admin-password-change"
|
||||
2026-06-27T12:28:10.2335236Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:28:10.2335329Z ::endgroup::
|
||||
2026-06-27T12:28:10.2801370Z Executed tests:
|
||||
2026-06-27T12:28:10.2802324Z - admin-login
|
||||
2026-06-27T12:28:10.2804066Z - admin-smoke
|
||||
2026-06-27T12:28:10.2804181Z - public-smoke
|
||||
2026-06-27T12:28:10.2804500Z - blog-seo
|
||||
2026-06-27T12:28:10.2804597Z - contact-submit
|
||||
2026-06-27T12:28:10.2804673Z - inquiry-detail
|
||||
2026-06-27T12:28:10.2804767Z - admin-password-change
|
||||
2026-06-27T12:28:10.3160536Z expression '${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}' rewritten to 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))'
|
||||
2026-06-27T12:28:10.3160888Z evaluating expression 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))'
|
||||
2026-06-27T12:28:10.3161546Z Writing entry to tarball workflow/hashfiles/index.js len:168437
|
||||
2026-06-27T12:28:10.3163198Z Extracting content to '/var/run/act'
|
||||
2026-06-27T12:28:10.3205358Z 🐳 docker exec cmd=[node /var/run/act/workflow/hashfiles/index.js] user= workdir=
|
||||
2026-06-27T12:28:10.3205701Z Exec command '[node /var/run/act/workflow/hashfiles/index.js]'
|
||||
2026-06-27T12:28:10.3205967Z Working directory '/workspace/***/taxbaik'
|
||||
2026-06-27T12:28:10.4459391Z expression 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))' evaluated to '%!t(string=Linux-playwright-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f)'
|
||||
2026-06-27T12:28:10.4460222Z expression '${{ runner.os }}-playwright-\n' rewritten to 'format('{0}-playwright-\n', runner.os)'
|
||||
2026-06-27T12:28:10.4460368Z evaluating expression 'format('{0}-playwright-\n', runner.os)'
|
||||
2026-06-27T12:28:10.4461512Z expression 'format('{0}-playwright-\n', runner.os)' evaluated to '%!t(string=Linux-playwright-\n)'
|
||||
2026-06-27T12:28:10.4551474Z evaluating expression 'success()'
|
||||
2026-06-27T12:28:10.4551820Z expression 'success()' evaluated to 'false'
|
||||
2026-06-27T12:28:10.4552213Z Skipping step 'Cache Playwright browsers' due to 'success()'
|
||||
2026-06-27T12:28:10.4779722Z evaluating expression 'success()'
|
||||
2026-06-27T12:28:10.4780359Z expression 'success()' evaluated to 'false'
|
||||
2026-06-27T12:28:10.4780556Z Skipping step 'Setup Node.js' due to 'success()'
|
||||
2026-06-27T12:28:10.5070552Z evaluating expression 'always()'
|
||||
2026-06-27T12:28:10.5071084Z expression 'always()' evaluated to 'true'
|
||||
2026-06-27T12:28:10.5071211Z ⭐ Run Post Checkout code
|
||||
2026-06-27T12:28:10.5071405Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T12:28:10.5071582Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T12:28:10.5071716Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T12:28:10.5073310Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T12:28:10.5074192Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T12:28:10.5074466Z Extracting content to '/var/run/act'
|
||||
2026-06-27T12:28:10.5114732Z run post step for 'Checkout code'
|
||||
2026-06-27T12:28:10.5115552Z executing remote job container: [node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js]
|
||||
2026-06-27T12:28:10.5400613Z 🐳 docker exec cmd=[node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js] user= workdir=
|
||||
2026-06-27T12:28:10.5401169Z Exec command '[node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js]'
|
||||
2026-06-27T12:28:10.5401663Z Working directory '/workspace/***/taxbaik'
|
||||
+933
@@ -0,0 +1,933 @@
|
||||
2026-06-27T12:29:36.7691336Z hz-prod-runner-2(version:v0.6.1) received task 264 of job browser-e2e, be triggered by event: push
|
||||
2026-06-27T12:29:36.7694477Z workflow prepared
|
||||
2026-06-27T12:29:36.7695116Z evaluating expression 'success()'
|
||||
2026-06-27T12:29:36.7695738Z expression 'success()' evaluated to 'true'
|
||||
2026-06-27T12:29:36.7695921Z 🚀 Start image=docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T12:29:36.7777328Z 🐳 docker pull image=docker.gitea.com/runner-images:ubuntu-latest platform= username= forcePull=false
|
||||
2026-06-27T12:29:36.7777566Z 🐳 docker pull docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T12:29:36.8108282Z Image exists? true
|
||||
2026-06-27T12:29:36.8567663Z 🐳 docker create image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T12:29:36.9505056Z Created container name=GITEA-ACTIONS-TASK-264-WORKFLOW-TaxBaik-Browser-E2E-JOB-browser-45217cc8acb25ecbd03632e1a46b98ea77846cb6699a891987ecb2828106b2a7 id=e1e09f1492c3e0bf142559a016c77c16635d610fdfdf3bf41c6ccaa753041b9f from image docker.gitea.com/runner-images:ubuntu-latest (platform: )
|
||||
2026-06-27T12:29:36.9505534Z ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
|
||||
2026-06-27T12:29:36.9505676Z 🐳 docker run image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T12:29:36.9505846Z Starting container: e1e09f1492c3e0bf142559a016c77c16635d610fdfdf3bf41c6ccaa753041b9f
|
||||
2026-06-27T12:29:37.0765396Z Started container: e1e09f1492c3e0bf142559a016c77c16635d610fdfdf3bf41c6ccaa753041b9f
|
||||
2026-06-27T12:29:37.1960199Z Writing entry to tarball workflow/event.json len:4956
|
||||
2026-06-27T12:29:37.1960938Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T12:29:37.1961528Z Extracting content to '/var/run/act/'
|
||||
2026-06-27T12:29:37.2189331Z ☁ git clone 'https://github.com/actions/checkout' # ref=v4
|
||||
2026-06-27T12:29:37.2189664Z cloning https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T12:29:37.8321356Z Unable to pull refs/heads/v4: non-fast-forward update
|
||||
2026-06-27T12:29:37.8321984Z Cloned https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T12:29:37.8437329Z Checked out v4
|
||||
2026-06-27T12:29:37.8542967Z ☁ git clone 'https://github.com/actions/setup-node' # ref=v4
|
||||
2026-06-27T12:29:37.8543514Z cloning https://github.com/actions/setup-node to /root/.cache/act/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc
|
||||
2026-06-27T12:29:38.4811451Z Unable to pull refs/heads/v4: worktree contains unstaged changes
|
||||
2026-06-27T12:29:38.4811901Z Cloned https://github.com/actions/setup-node to /root/.cache/act/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc
|
||||
2026-06-27T12:29:38.4969109Z Checked out v4
|
||||
2026-06-27T12:29:38.5073104Z ☁ git clone 'https://github.com/actions/cache' # ref=v4
|
||||
2026-06-27T12:29:38.5073443Z cloning https://github.com/actions/cache to /root/.cache/act/6b4e4eb40e21c1bd02cb00a273f4d79af7c42205c1390e4e65c594ecd7a3696e
|
||||
2026-06-27T12:29:39.1225618Z Unable to pull refs/heads/v4: worktree contains unstaged changes
|
||||
2026-06-27T12:29:39.1226299Z Cloned https://github.com/actions/cache to /root/.cache/act/6b4e4eb40e21c1bd02cb00a273f4d79af7c42205c1390e4e65c594ecd7a3696e
|
||||
2026-06-27T12:29:39.1456052Z Checked out v4
|
||||
2026-06-27T12:29:39.1824973Z evaluating expression ''
|
||||
2026-06-27T12:29:39.1825523Z expression '' evaluated to 'true'
|
||||
2026-06-27T12:29:39.1825732Z ⭐ Run Main Checkout code
|
||||
2026-06-27T12:29:39.1825937Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T12:29:39.1826290Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T12:29:39.1826431Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T12:29:39.1826531Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T12:29:39.1826614Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T12:29:39.1826716Z Extracting content to '/var/run/act'
|
||||
2026-06-27T12:29:39.1883145Z ::group::Run Checkout code
|
||||
2026-06-27T12:29:39.7220469Z ::add-matcher::/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/problem-matcher.json
|
||||
2026-06-27T12:29:39.7225558Z Syncing repository: ***/taxbaik
|
||||
2026-06-27T12:29:39.7230074Z ::group::Getting Git version info
|
||||
2026-06-27T12:29:39.7231108Z Working directory is '/workspace/***/taxbaik'
|
||||
2026-06-27T12:29:39.7275152Z [command]/usr/bin/git version
|
||||
2026-06-27T12:29:39.7325681Z git version 2.54.0
|
||||
2026-06-27T12:29:39.7354354Z ::endgroup::
|
||||
2026-06-27T12:29:39.7386306Z Temporarily overriding HOME='/tmp/f4bb7af9-eda2-4252-ab12-f87249c5c5d5' before making global git config changes
|
||||
2026-06-27T12:29:39.7387489Z Adding repository directory to the temporary git global config as a safe directory
|
||||
2026-06-27T12:29:39.7393456Z [command]/usr/bin/git config --global --add safe.directory /workspace/***/taxbaik
|
||||
2026-06-27T12:29:39.7436842Z Deleting the contents of '/workspace/***/taxbaik'
|
||||
2026-06-27T12:29:39.7438398Z ::group::Initializing the repository
|
||||
2026-06-27T12:29:39.7449605Z [command]/usr/bin/git init /workspace/***/taxbaik
|
||||
2026-06-27T12:29:39.7487226Z hint: Using 'master' as the name for the initial branch. This default branch name
|
||||
2026-06-27T12:29:39.7487537Z hint: will change to "main" in Git 3.0. To configure the initial branch name
|
||||
2026-06-27T12:29:39.7487662Z hint: to use in all of your new repositories, which will suppress this warning,
|
||||
2026-06-27T12:29:39.7488148Z hint: call:
|
||||
2026-06-27T12:29:39.7488339Z hint:
|
||||
2026-06-27T12:29:39.7488420Z hint: git config --global init.defaultBranch <name>
|
||||
2026-06-27T12:29:39.7488504Z hint:
|
||||
2026-06-27T12:29:39.7488574Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
|
||||
2026-06-27T12:29:39.7491160Z hint: 'development'. The just-created branch can be renamed via this command:
|
||||
2026-06-27T12:29:39.7491362Z hint:
|
||||
2026-06-27T12:29:39.7491856Z hint: git branch -m <name>
|
||||
2026-06-27T12:29:39.7492109Z hint:
|
||||
2026-06-27T12:29:39.7492642Z hint: Disable this message with "git config set advice.defaultBranchName false"
|
||||
2026-06-27T12:29:39.7493529Z Initialized empty Git repository in /workspace/***/taxbaik/.git/
|
||||
2026-06-27T12:29:39.7505742Z [command]/usr/bin/git remote add origin http://gitea:3000/***/taxbaik
|
||||
2026-06-27T12:29:39.7538494Z ::endgroup::
|
||||
2026-06-27T12:29:39.7539121Z ::group::Disabling automatic garbage collection
|
||||
2026-06-27T12:29:39.7548311Z [command]/usr/bin/git config --local gc.auto 0
|
||||
2026-06-27T12:29:39.7579335Z ::endgroup::
|
||||
2026-06-27T12:29:39.7579569Z ::group::Setting up auth
|
||||
2026-06-27T12:29:39.7587386Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
||||
2026-06-27T12:29:39.7621238Z [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' || :"
|
||||
2026-06-27T12:29:39.7873395Z [command]/usr/bin/git config --local --name-only --get-regexp http\.http\:\/\/gitea\:3000\/\.extraheader
|
||||
2026-06-27T12:29:39.7909998Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.http\:\/\/gitea\:3000\/\.extraheader' && git config --local --unset-all 'http.http://gitea:3000/.extraheader' || :"
|
||||
2026-06-27T12:29:39.8254665Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
||||
2026-06-27T12:29:39.8293224Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
||||
2026-06-27T12:29:39.8556850Z [command]/usr/bin/git config --local http.http://gitea:3000/.extraheader AUTHORIZATION: basic ***
|
||||
2026-06-27T12:29:39.8602988Z ::endgroup::
|
||||
2026-06-27T12:29:39.8605503Z ::group::Fetching the repository
|
||||
2026-06-27T12:29:39.8616826Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +a58aa7efe0c15e08b1b44bd2a346c1e396d95d0d:refs/remotes/origin/master
|
||||
2026-06-27T12:29:39.9599596Z From http://gitea:3000/***/taxbaik
|
||||
2026-06-27T12:29:39.9599936Z * [new ref] a58aa7efe0c15e08b1b44bd2a346c1e396d95d0d -> origin/master
|
||||
2026-06-27T12:29:39.9642493Z ::endgroup::
|
||||
2026-06-27T12:29:39.9642737Z ::group::Determining the checkout info
|
||||
2026-06-27T12:29:39.9644555Z ::endgroup::
|
||||
2026-06-27T12:29:39.9650560Z [command]/usr/bin/git sparse-checkout disable
|
||||
2026-06-27T12:29:39.9694614Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
|
||||
2026-06-27T12:29:39.9720917Z ::group::Checking out the ref
|
||||
2026-06-27T12:29:39.9729039Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
|
||||
2026-06-27T12:29:39.9854670Z Reset branch 'master'
|
||||
2026-06-27T12:29:39.9859808Z branch 'master' set up to track 'origin/master'.
|
||||
2026-06-27T12:29:39.9869462Z ::endgroup::
|
||||
2026-06-27T12:29:39.9914900Z [command]/usr/bin/git log -1 --format=%H
|
||||
2026-06-27T12:29:39.9938854Z a58aa7efe0c15e08b1b44bd2a346c1e396d95d0d
|
||||
2026-06-27T12:29:39.9961258Z ::remove-matcher owner=checkout-git::
|
||||
2026-06-27T12:29:40.0064399Z ::endgroup::
|
||||
2026-06-27T12:29:40.0891731Z ::group::Run Setup Node.js
|
||||
2026-06-27T12:29:40.0892076Z with:
|
||||
2026-06-27T12:29:40.0892295Z cache: npm
|
||||
2026-06-27T12:29:40.0892404Z node-version: 22
|
||||
2026-06-27T12:29:40.8936568Z Found in cache @ /opt/hostedtoolcache/node/22.23.1/x64
|
||||
2026-06-27T12:29:40.8941998Z (node:142) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
|
||||
2026-06-27T12:29:40.8942471Z (Use `node --trace-deprecation ...` to show where the warning was created)
|
||||
2026-06-27T12:29:40.8949121Z ::group::Environment details
|
||||
2026-06-27T12:29:41.0292379Z node: v22.23.1
|
||||
2026-06-27T12:29:41.0294290Z npm: 10.9.8
|
||||
2026-06-27T12:29:41.0295741Z yarn:
|
||||
2026-06-27T12:29:41.0300045Z ::endgroup::
|
||||
2026-06-27T12:29:41.0329176Z [command]/opt/hostedtoolcache/node/22.23.1/x64/bin/npm config get cache
|
||||
2026-06-27T12:29:41.1626400Z /root/.npm
|
||||
2026-06-27T12:29:41.2556563Z Cache Size: ~3 MB (2871339 B)
|
||||
2026-06-27T12:29:41.2586533Z [command]/usr/bin/tar -xf /tmp/5d869462-19ad-4a95-88dc-c430536e25e7/cache.tzst -P -C /workspace/***/taxbaik --use-compress-program unzstd
|
||||
2026-06-27T12:29:41.2730544Z Cache restored successfully
|
||||
2026-06-27T12:29:41.2756629Z Cache restored from key: node-cache-linux-x64-npm-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f
|
||||
2026-06-27T12:29:41.2757531Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/tsc.json
|
||||
2026-06-27T12:29:41.2757882Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/eslint-stylish.json
|
||||
2026-06-27T12:29:41.2758133Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/eslint-compact.json
|
||||
2026-06-27T12:29:41.2859242Z ::endgroup::
|
||||
2026-06-27T12:29:41.5247096Z ::group::Run Cache Playwright browsers
|
||||
2026-06-27T12:29:41.5247489Z with:
|
||||
2026-06-27T12:29:41.5247649Z key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
|
||||
2026-06-27T12:29:41.5247797Z path: ~/.cache/ms-playwright
|
||||
2026-06-27T12:29:41.5247918Z restore-keys: ${{ runner.os }}-playwright-
|
||||
2026-06-27T12:29:42.3531176Z (node:203) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
|
||||
2026-06-27T12:29:42.3531512Z (Use `node --trace-deprecation ...` to show where the warning was created)
|
||||
2026-06-27T12:29:43.6146807Z Cache Size: ~247 MB (259214535 B)
|
||||
2026-06-27T12:29:43.6147723Z [command]/usr/bin/tar -xf /tmp/fb50196f-beb8-460f-9b32-c23060625c9f/cache.tzst -P -C /workspace/***/taxbaik --use-compress-program unzstd
|
||||
2026-06-27T12:29:45.3513116Z Cache restored successfully
|
||||
2026-06-27T12:29:45.3879843Z Cache restored from key: linux-playwright-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f
|
||||
2026-06-27T12:29:45.4007468Z ::endgroup::
|
||||
2026-06-27T12:29:45.5403253Z ::group::Run set -e
|
||||
2026-06-27T12:29:45.5403717Z set -e
|
||||
2026-06-27T12:29:45.5403828Z npm ci
|
||||
2026-06-27T12:29:45.5403937Z npx playwright install chromium --with-deps
|
||||
2026-06-27T12:29:45.5404276Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:29:45.5404471Z ::endgroup::
|
||||
2026-06-27T12:29:46.9344675Z
|
||||
2026-06-27T12:29:46.9345427Z added 3 packages, and audited 4 packages in 1s
|
||||
2026-06-27T12:29:46.9356622Z
|
||||
2026-06-27T12:29:46.9356828Z found 0 vulnerabilities
|
||||
2026-06-27T12:29:48.1251425Z Installing dependencies...
|
||||
2026-06-27T12:29:48.2506189Z Get:1 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
|
||||
2026-06-27T12:29:48.2506700Z Get:2 http://archive.ubuntu.com/ubuntu noble InRelease [256 kB]
|
||||
2026-06-27T12:29:48.2788540Z Get:3 https://packages.microsoft.com/ubuntu/24.04/prod noble InRelease [3600 B]
|
||||
2026-06-27T12:29:48.3326485Z Get:4 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
|
||||
2026-06-27T12:29:48.3573970Z Get:5 http://security.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [43.8 kB]
|
||||
2026-06-27T12:29:48.3663352Z Get:6 https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble InRelease [24.3 kB]
|
||||
2026-06-27T12:29:48.3861838Z Get:7 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [1339 kB]
|
||||
2026-06-27T12:29:48.3886937Z Get:8 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
|
||||
2026-06-27T12:29:48.4378908Z Get:9 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1487 kB]
|
||||
2026-06-27T12:29:48.4530261Z Get:10 https://packages.microsoft.com/ubuntu/24.04/prod noble/main all Packages [643 B]
|
||||
2026-06-27T12:29:48.5232927Z Get:11 https://packages.microsoft.com/ubuntu/24.04/prod noble/main amd64 Packages [187 kB]
|
||||
2026-06-27T12:29:48.5233575Z Get:12 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [976 kB]
|
||||
2026-06-27T12:29:48.6284935Z Get:13 http://archive.ubuntu.com/ubuntu noble/multiverse amd64 Packages [331 kB]
|
||||
2026-06-27T12:29:48.6685855Z Get:14 http://archive.ubuntu.com/ubuntu noble/universe amd64 Packages [19.3 MB]
|
||||
2026-06-27T12:29:48.8410616Z Get:15 http://archive.ubuntu.com/ubuntu noble/restricted amd64 Packages [117 kB]
|
||||
2026-06-27T12:29:48.8427854Z Get:16 http://archive.ubuntu.com/ubuntu noble/main amd64 Packages [1808 kB]
|
||||
2026-06-27T12:29:48.8629712Z Get:17 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [49.5 kB]
|
||||
2026-06-27T12:29:48.8671181Z Get:18 https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble/main amd64 Packages [2988 B]
|
||||
2026-06-27T12:29:48.8698245Z Get:19 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1296 kB]
|
||||
2026-06-27T12:29:48.8850929Z Get:20 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [2108 kB]
|
||||
2026-06-27T12:29:48.9123133Z Get:22 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [1412 kB]
|
||||
2026-06-27T12:29:48.9914183Z Get:23 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [35.9 kB]
|
||||
2026-06-27T12:29:49.0132999Z Get:24 http://archive.ubuntu.com/ubuntu noble-backports/multiverse amd64 Packages [671 B]
|
||||
2026-06-27T12:29:49.0177030Z Get:25 http://archive.ubuntu.com/ubuntu noble-backports/main amd64 Packages [48.9 kB]
|
||||
2026-06-27T12:29:49.4290157Z Get:21 https://packagecloud.io/github/git-lfs/ubuntu noble InRelease [29.2 kB]
|
||||
2026-06-27T12:29:49.6712805Z Get:26 https://packagecloud.io/github/git-lfs/ubuntu noble/main amd64 Packages [1273 B]
|
||||
2026-06-27T12:29:49.9781203Z Fetched 31.3 MB in 2s (17.4 MB/s)
|
||||
2026-06-27T12:29:51.1160280Z Reading package lists...
|
||||
2026-06-27T12:29:52.2127226Z Reading package lists...
|
||||
2026-06-27T12:29:52.4888169Z Building dependency tree...
|
||||
2026-06-27T12:29:52.4897505Z Reading state information...
|
||||
2026-06-27T12:29:52.8171581Z libcairo2 is already the newest version (1.18.0-3build1).
|
||||
2026-06-27T12:29:52.8172975Z libcairo2 set to manually installed.
|
||||
2026-06-27T12:29:52.8173274Z libdbus-1-3 is already the newest version (1.14.10-4ubuntu4.1).
|
||||
2026-06-27T12:29:52.8173452Z libdbus-1-3 set to manually installed.
|
||||
2026-06-27T12:29:52.8174021Z libglib2.0-0t64 is already the newest version (2.80.0-6ubuntu3.8).
|
||||
2026-06-27T12:29:52.8174164Z libglib2.0-0t64 set to manually installed.
|
||||
2026-06-27T12:29:52.8174253Z libpango-1.0-0 is already the newest version (1.52.1+ds-1build1).
|
||||
2026-06-27T12:29:52.8174658Z libpango-1.0-0 set to manually installed.
|
||||
2026-06-27T12:29:52.8174829Z libx11-6 is already the newest version (2:1.8.7-1build1).
|
||||
2026-06-27T12:29:52.8174926Z libx11-6 set to manually installed.
|
||||
2026-06-27T12:29:52.8175002Z libxcb1 is already the newest version (1.15-1ubuntu2).
|
||||
2026-06-27T12:29:52.8175117Z libxcb1 set to manually installed.
|
||||
2026-06-27T12:29:52.8175192Z libxext6 is already the newest version (2:1.3.4-1build2).
|
||||
2026-06-27T12:29:52.8175579Z libxext6 set to manually installed.
|
||||
2026-06-27T12:29:52.8175707Z libfontconfig1 is already the newest version (2.15.0-1.1ubuntu2).
|
||||
2026-06-27T12:29:52.8175795Z libfontconfig1 set to manually installed.
|
||||
2026-06-27T12:29:52.8175873Z libfreetype6 is already the newest version (2.13.2+dfsg-1ubuntu0.1).
|
||||
2026-06-27T12:29:52.8175955Z libfreetype6 set to manually installed.
|
||||
2026-06-27T12:29:52.8176539Z The following additional packages will be installed:
|
||||
2026-06-27T12:29:52.8177593Z at-spi2-common libasound2-data libavahi-client3 libavahi-common-data
|
||||
2026-06-27T12:29:52.8183119Z libavahi-common3 libdrm-amdgpu1 libdrm-common libdrm-intel1 libfontenc1
|
||||
2026-06-27T12:29:52.8190965Z libgl1 libgl1-mesa-dri libglvnd0 libglx-mesa0 libglx0 libllvm20
|
||||
2026-06-27T12:29:52.8191332Z libpciaccess0 libsensors-config libsensors5 libvulkan1 libx11-xcb1 libxaw7
|
||||
2026-06-27T12:29:52.8207849Z libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-sync1
|
||||
2026-06-27T12:29:52.8208612Z libxcb-xfixes0 libxfont2 libxi6 libxkbfile1 libxmu6 libxmuu1 libxpm4
|
||||
2026-06-27T12:29:52.8208800Z libxshmfence1 libxxf86vm1 mesa-libgallium x11-xkb-utils xauth
|
||||
2026-06-27T12:29:52.8208952Z xfonts-encodings xfonts-utils xkb-data xserver-common
|
||||
2026-06-27T12:29:52.8215870Z Suggested packages:
|
||||
2026-06-27T12:29:52.8216800Z alsa-utils libasound2-plugins cups-common pciutils lm-sensors
|
||||
2026-06-27T12:29:52.8217268Z Recommended packages:
|
||||
2026-06-27T12:29:52.8217512Z fonts-ipafont-mincho fonts-liberation-sans-narrow fonts-tlwg-loma
|
||||
2026-06-27T12:29:52.8217656Z alsa-ucm-conf alsa-topology-conf at-spi2-core mesa-vulkan-drivers
|
||||
2026-06-27T12:29:52.8217803Z | vulkan-icd xfonts-base
|
||||
2026-06-27T12:29:52.9516943Z The following NEW packages will be installed:
|
||||
2026-06-27T12:29:52.9517535Z at-spi2-common fonts-freefont-ttf fonts-ipafont-gothic fonts-liberation
|
||||
2026-06-27T12:29:52.9525521Z fonts-noto-color-emoji fonts-tlwg-loma-otf fonts-unifont fonts-wqy-zenhei
|
||||
2026-06-27T12:29:52.9525929Z libasound2-data libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64
|
||||
2026-06-27T12:29:52.9526055Z libatspi2.0-0t64 libavahi-client3 libavahi-common-data libavahi-common3
|
||||
2026-06-27T12:29:52.9526656Z libcups2t64 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm2 libfontenc1
|
||||
2026-06-27T12:29:52.9529001Z libgbm1 libgl1 libgl1-mesa-dri libglvnd0 libglx-mesa0 libglx0 libllvm20
|
||||
2026-06-27T12:29:52.9533391Z libnspr4 libnss3 libpciaccess0 libsensors-config libsensors5 libvulkan1
|
||||
2026-06-27T12:29:52.9533730Z libx11-xcb1 libxaw7 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0
|
||||
2026-06-27T12:29:52.9533957Z libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxdamage1 libxfixes3 libxfont2
|
||||
2026-06-27T12:29:52.9535675Z libxi6 libxkbcommon0 libxkbfile1 libxmu6 libxmuu1 libxpm4 libxrandr2
|
||||
2026-06-27T12:29:52.9547165Z libxshmfence1 libxxf86vm1 mesa-libgallium x11-xkb-utils xauth
|
||||
2026-06-27T12:29:52.9547497Z xfonts-cyrillic xfonts-encodings xfonts-scalable xfonts-utils xkb-data
|
||||
2026-06-27T12:29:52.9547633Z xserver-common xvfb
|
||||
2026-06-27T12:29:53.0373995Z 0 upgraded, 66 newly installed, 0 to remove and 52 not upgraded.
|
||||
2026-06-27T12:29:53.0374517Z Need to get 79.3 MB of archives.
|
||||
2026-06-27T12:29:53.0374708Z After this operation, 303 MB of additional disk space will be used.
|
||||
2026-06-27T12:29:53.0374826Z Get:1 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-ipafont-gothic all 00303-21ubuntu1 [3513 kB]
|
||||
2026-06-27T12:29:53.1513498Z Get:2 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 xkb-data all 2.41-2ubuntu1.1 [397 kB]
|
||||
2026-06-27T12:29:53.1573982Z Get:3 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-common all 2.4.125-1ubuntu0.1~24.04.2 [9250 B]
|
||||
2026-06-27T12:29:53.1645112Z Get:4 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm2 amd64 2.4.125-1ubuntu0.1~24.04.2 [41.4 kB]
|
||||
2026-06-27T12:29:53.1707412Z Get:5 http://archive.ubuntu.com/ubuntu noble/main amd64 libsensors-config all 1:3.6.0-9build1 [5546 B]
|
||||
2026-06-27T12:29:53.1770886Z Get:6 http://archive.ubuntu.com/ubuntu noble/main amd64 libsensors5 amd64 1:3.6.0-9build1 [26.6 kB]
|
||||
2026-06-27T12:29:53.1834263Z Get:7 http://archive.ubuntu.com/ubuntu noble/main amd64 libxkbcommon0 amd64 1.6.0-1build1 [122 kB]
|
||||
2026-06-27T12:29:53.1906696Z Get:8 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmuu1 amd64 2:1.1.3-3build2 [8958 B]
|
||||
2026-06-27T12:29:53.1977009Z Get:9 http://archive.ubuntu.com/ubuntu noble/main amd64 xauth amd64 1:1.1.2-1build1 [25.6 kB]
|
||||
2026-06-27T12:29:53.2036591Z Get:10 http://archive.ubuntu.com/ubuntu noble/main amd64 at-spi2-common all 2.52.0-1build1 [8674 B]
|
||||
2026-06-27T12:29:53.2100594Z Get:11 http://archive.ubuntu.com/ubuntu noble/main amd64 fonts-freefont-ttf all 20211204+svn4273-2 [5641 kB]
|
||||
2026-06-27T12:29:53.2682487Z Get:12 http://archive.ubuntu.com/ubuntu noble/main amd64 fonts-liberation all 1:2.1.5-3 [1603 kB]
|
||||
2026-06-27T12:29:53.2815879Z Get:13 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 fonts-noto-color-emoji all 2.047-0ubuntu0.24.04.1 [9764 kB]
|
||||
2026-06-27T12:29:53.3750188Z Get:14 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-tlwg-loma-otf all 1:0.7.3-1 [107 kB]
|
||||
2026-06-27T12:29:53.3767166Z Get:15 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-unifont all 1:15.1.01-1build1 [2993 kB]
|
||||
2026-06-27T12:29:53.4049421Z Get:16 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-wqy-zenhei all 0.9.45-8 [7472 kB]
|
||||
2026-06-27T12:29:53.4441929Z Get:17 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libasound2-data all 1.2.11-1ubuntu0.2 [21.3 kB]
|
||||
2026-06-27T12:29:53.4446837Z Get:18 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libasound2t64 amd64 1.2.11-1ubuntu0.2 [398 kB]
|
||||
2026-06-27T12:29:53.4472919Z Get:19 http://archive.ubuntu.com/ubuntu noble/main amd64 libatk1.0-0t64 amd64 2.52.0-1build1 [55.3 kB]
|
||||
2026-06-27T12:29:53.4509500Z Get:20 http://archive.ubuntu.com/ubuntu noble/main amd64 libxi6 amd64 2:1.8.1-1build1 [32.4 kB]
|
||||
2026-06-27T12:29:53.4780264Z Get:21 http://archive.ubuntu.com/ubuntu noble/main amd64 libatspi2.0-0t64 amd64 2.52.0-1build1 [80.5 kB]
|
||||
2026-06-27T12:29:53.4829146Z Get:22 http://archive.ubuntu.com/ubuntu noble/main amd64 libatk-bridge2.0-0t64 amd64 2.52.0-1build1 [66.0 kB]
|
||||
2026-06-27T12:29:53.4894417Z Get:23 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-common-data amd64 0.8-13ubuntu6.2 [30.1 kB]
|
||||
2026-06-27T12:29:53.4972529Z Get:24 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-common3 amd64 0.8-13ubuntu6.2 [23.4 kB]
|
||||
2026-06-27T12:29:53.5039534Z Get:25 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-client3 amd64 0.8-13ubuntu6.2 [26.8 kB]
|
||||
2026-06-27T12:29:53.5102014Z Get:26 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libcups2t64 amd64 2.4.7-1.2ubuntu7.14 [274 kB]
|
||||
2026-06-27T12:29:53.5204236Z Get:27 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-amdgpu1 amd64 2.4.125-1ubuntu0.1~24.04.2 [21.4 kB]
|
||||
2026-06-27T12:29:53.5261626Z Get:28 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpciaccess0 amd64 0.17-3ubuntu0.24.04.2 [18.9 kB]
|
||||
2026-06-27T12:29:53.5328530Z Get:29 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-intel1 amd64 2.4.125-1ubuntu0.1~24.04.2 [63.9 kB]
|
||||
2026-06-27T12:29:53.5386245Z Get:30 http://archive.ubuntu.com/ubuntu noble/main amd64 libfontenc1 amd64 1:1.1.8-1build1 [14.0 kB]
|
||||
2026-06-27T12:29:53.5508051Z Get:31 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libllvm20 amd64 1:20.1.2-0ubuntu1~24.04.3 [30.6 MB]
|
||||
2026-06-27T12:29:53.7675321Z Get:32 http://archive.ubuntu.com/ubuntu noble/main amd64 libx11-xcb1 amd64 2:1.8.7-1build1 [7800 B]
|
||||
2026-06-27T12:29:53.7678635Z Get:33 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-dri3-0 amd64 1.15-1ubuntu2 [7142 B]
|
||||
2026-06-27T12:29:53.7681087Z Get:34 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-present0 amd64 1.15-1ubuntu2 [5676 B]
|
||||
2026-06-27T12:29:53.7683582Z Get:35 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-randr0 amd64 1.15-1ubuntu2 [17.9 kB]
|
||||
2026-06-27T12:29:53.7686011Z Get:36 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-sync1 amd64 1.15-1ubuntu2 [9312 B]
|
||||
2026-06-27T12:29:53.7688522Z Get:37 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-xfixes0 amd64 1.15-1ubuntu2 [10.2 kB]
|
||||
2026-06-27T12:29:53.7691274Z Get:38 http://archive.ubuntu.com/ubuntu noble/main amd64 libxshmfence1 amd64 1.3-1build5 [4764 B]
|
||||
2026-06-27T12:29:53.7709108Z Get:39 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 mesa-libgallium amd64 25.2.8-0ubuntu0.24.04.2 [10.8 MB]
|
||||
2026-06-27T12:29:53.8458351Z Get:40 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgbm1 amd64 25.2.8-0ubuntu0.24.04.2 [34.2 kB]
|
||||
2026-06-27T12:29:53.8467058Z Get:41 http://archive.ubuntu.com/ubuntu noble/main amd64 libvulkan1 amd64 1.3.275.0-1build1 [142 kB]
|
||||
2026-06-27T12:29:53.8481660Z Get:42 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgl1-mesa-dri amd64 25.2.8-0ubuntu0.24.04.2 [37.9 kB]
|
||||
2026-06-27T12:29:53.8489547Z Get:43 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-glx0 amd64 1.15-1ubuntu2 [24.8 kB]
|
||||
2026-06-27T12:29:53.8496627Z Get:44 http://archive.ubuntu.com/ubuntu noble/main amd64 libxxf86vm1 amd64 1:1.1.4-1build4 [9282 B]
|
||||
2026-06-27T12:29:53.8511134Z Get:45 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libglx-mesa0 amd64 25.2.8-0ubuntu0.24.04.2 [110 kB]
|
||||
2026-06-27T12:29:53.8581593Z Get:46 http://archive.ubuntu.com/ubuntu noble/main amd64 libnspr4 amd64 2:4.35-1.1build1 [117 kB]
|
||||
2026-06-27T12:29:53.8649924Z Get:47 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libnss3 amd64 2:3.98-1ubuntu0.1 [1445 kB]
|
||||
2026-06-27T12:29:53.8827832Z Get:48 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmu6 amd64 2:1.1.3-3build2 [47.6 kB]
|
||||
2026-06-27T12:29:53.8847347Z Get:49 http://archive.ubuntu.com/ubuntu noble/main amd64 libxpm4 amd64 1:3.5.17-1build2 [36.5 kB]
|
||||
2026-06-27T12:29:53.8894999Z Get:50 http://archive.ubuntu.com/ubuntu noble/main amd64 libxaw7 amd64 2:1.0.14-1build2 [187 kB]
|
||||
2026-06-27T12:29:53.8986710Z Get:51 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcomposite1 amd64 1:0.4.5-1build3 [6320 B]
|
||||
2026-06-27T12:29:53.9048187Z Get:52 http://archive.ubuntu.com/ubuntu noble/main amd64 libxdamage1 amd64 1:1.1.6-1build1 [6150 B]
|
||||
2026-06-27T12:29:53.9112911Z Get:53 http://archive.ubuntu.com/ubuntu noble/main amd64 libxfixes3 amd64 1:6.0.0-2build1 [10.8 kB]
|
||||
2026-06-27T12:29:53.9186651Z Get:54 http://archive.ubuntu.com/ubuntu noble/main amd64 libxfont2 amd64 1:2.0.6-1build1 [93.0 kB]
|
||||
2026-06-27T12:29:53.9241391Z Get:55 http://archive.ubuntu.com/ubuntu noble/main amd64 libxkbfile1 amd64 1:1.1.0-1build4 [70.0 kB]
|
||||
2026-06-27T12:29:53.9299425Z Get:56 http://archive.ubuntu.com/ubuntu noble/main amd64 libxrandr2 amd64 2:1.5.2-2build1 [19.7 kB]
|
||||
2026-06-27T12:29:53.9350812Z Get:57 http://archive.ubuntu.com/ubuntu noble/main amd64 x11-xkb-utils amd64 7.7+8build2 [170 kB]
|
||||
2026-06-27T12:29:53.9428679Z Get:58 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-encodings all 1:1.0.5-0ubuntu2 [578 kB]
|
||||
2026-06-27T12:29:53.9504947Z Get:59 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-utils amd64 1:7.7+6build3 [94.4 kB]
|
||||
2026-06-27T12:29:53.9561031Z Get:60 http://archive.ubuntu.com/ubuntu noble/universe amd64 xfonts-cyrillic all 1:1.0.5+nmu1 [384 kB]
|
||||
2026-06-27T12:29:53.9646525Z Get:61 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-scalable all 1:1.0.3-1.3 [304 kB]
|
||||
2026-06-27T12:29:53.9730776Z Get:62 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 xserver-common all 2:21.1.12-1ubuntu1.6 [34.7 kB]
|
||||
2026-06-27T12:29:53.9800405Z Get:63 http://archive.ubuntu.com/ubuntu noble/main amd64 libglvnd0 amd64 1.7.0-1build1 [69.6 kB]
|
||||
2026-06-27T12:29:54.0066025Z Get:64 http://archive.ubuntu.com/ubuntu noble/main amd64 libglx0 amd64 1.7.0-1build1 [38.6 kB]
|
||||
2026-06-27T12:29:54.0071830Z Get:65 http://archive.ubuntu.com/ubuntu noble/main amd64 libgl1 amd64 1.7.0-1build1 [102 kB]
|
||||
2026-06-27T12:29:54.0086721Z Get:66 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 xvfb amd64 2:21.1.12-1ubuntu1.6 [877 kB]
|
||||
2026-06-27T12:29:54.2362385Z debconf: delaying package configuration, since apt-utils is not installed
|
||||
2026-06-27T12:29:54.2759835Z Fetched 79.3 MB in 1s (76.6 MB/s)
|
||||
2026-06-27T12:29:54.3038337Z Selecting previously unselected package fonts-ipafont-gothic.
|
||||
2026-06-27T12:29:54.4436850Z (Reading database ...
|
||||
(Reading database ... 5%
|
||||
(Reading database ... 10%
|
||||
(Reading database ... 15%
|
||||
(Reading database ... 20%
|
||||
(Reading database ... 25%
|
||||
(Reading database ... 30%
|
||||
(Reading database ... 35%
|
||||
(Reading database ... 40%
|
||||
(Reading database ... 45%
|
||||
(Reading database ... 50%
|
||||
(Reading database ... 55%
|
||||
(Reading database ... 60%
|
||||
(Reading database ... 65%
|
||||
(Reading database ... 70%
|
||||
(Reading database ... 75%
|
||||
(Reading database ... 80%
|
||||
(Reading database ... 85%
|
||||
(Reading database ... 90%
|
||||
(Reading database ... 95%
|
||||
(Reading database ... 100%
|
||||
(Reading database ... 26518 files and directories currently installed.)
|
||||
2026-06-27T12:29:54.4453872Z Preparing to unpack .../00-fonts-ipafont-gothic_00303-21ubuntu1_all.deb ...
|
||||
2026-06-27T12:29:54.4547701Z Unpacking fonts-ipafont-gothic (00303-21ubuntu1) ...
|
||||
2026-06-27T12:29:54.7502498Z Selecting previously unselected package xkb-data.
|
||||
2026-06-27T12:29:54.7531013Z Preparing to unpack .../01-xkb-data_2.41-2ubuntu1.1_all.deb ...
|
||||
2026-06-27T12:29:54.7549713Z Unpacking xkb-data (2.41-2ubuntu1.1) ...
|
||||
2026-06-27T12:29:54.8278776Z Selecting previously unselected package libdrm-common.
|
||||
2026-06-27T12:29:54.8307383Z Preparing to unpack .../02-libdrm-common_2.4.125-1ubuntu0.1~24.04.2_all.deb ...
|
||||
2026-06-27T12:29:54.8325886Z Unpacking libdrm-common (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:29:54.8589268Z Selecting previously unselected package libdrm2:amd64.
|
||||
2026-06-27T12:29:54.8589718Z Preparing to unpack .../03-libdrm2_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T12:29:54.8647120Z Unpacking libdrm2:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:29:54.8871350Z Selecting previously unselected package libsensors-config.
|
||||
2026-06-27T12:29:54.8877443Z Preparing to unpack .../04-libsensors-config_1%3a3.6.0-9build1_all.deb ...
|
||||
2026-06-27T12:29:54.8906021Z Unpacking libsensors-config (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:29:54.9113765Z Selecting previously unselected package libsensors5:amd64.
|
||||
2026-06-27T12:29:54.9142070Z Preparing to unpack .../05-libsensors5_1%3a3.6.0-9build1_amd64.deb ...
|
||||
2026-06-27T12:29:54.9490446Z Unpacking libsensors5:amd64 (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:29:54.9749152Z Selecting previously unselected package libxkbcommon0:amd64.
|
||||
2026-06-27T12:29:54.9758453Z Preparing to unpack .../06-libxkbcommon0_1.6.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:54.9799072Z Unpacking libxkbcommon0:amd64 (1.6.0-1build1) ...
|
||||
2026-06-27T12:29:55.0115639Z Selecting previously unselected package libxmuu1:amd64.
|
||||
2026-06-27T12:29:55.0143317Z Preparing to unpack .../07-libxmuu1_2%3a1.1.3-3build2_amd64.deb ...
|
||||
2026-06-27T12:29:55.0172030Z Unpacking libxmuu1:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:29:55.0414724Z Selecting previously unselected package xauth.
|
||||
2026-06-27T12:29:55.0442615Z Preparing to unpack .../08-xauth_1%3a1.1.2-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:55.0465444Z Unpacking xauth (1:1.1.2-1build1) ...
|
||||
2026-06-27T12:29:55.0714732Z Selecting previously unselected package at-spi2-common.
|
||||
2026-06-27T12:29:55.0754268Z Preparing to unpack .../09-at-spi2-common_2.52.0-1build1_all.deb ...
|
||||
2026-06-27T12:29:55.0778632Z Unpacking at-spi2-common (2.52.0-1build1) ...
|
||||
2026-06-27T12:29:55.1049265Z Selecting previously unselected package fonts-freefont-ttf.
|
||||
2026-06-27T12:29:55.1097884Z Preparing to unpack .../10-fonts-freefont-ttf_20211204+svn4273-2_all.deb ...
|
||||
2026-06-27T12:29:55.1123366Z Unpacking fonts-freefont-ttf (20211204+svn4273-2) ...
|
||||
2026-06-27T12:29:55.2872918Z Selecting previously unselected package fonts-liberation.
|
||||
2026-06-27T12:29:55.2899008Z Preparing to unpack .../11-fonts-liberation_1%3a2.1.5-3_all.deb ...
|
||||
2026-06-27T12:29:55.2927974Z Unpacking fonts-liberation (1:2.1.5-3) ...
|
||||
2026-06-27T12:29:55.3568970Z Selecting previously unselected package fonts-noto-color-emoji.
|
||||
2026-06-27T12:29:55.3646821Z Preparing to unpack .../12-fonts-noto-color-emoji_2.047-0ubuntu0.24.04.1_all.deb ...
|
||||
2026-06-27T12:29:55.3724781Z Unpacking fonts-noto-color-emoji (2.047-0ubuntu0.24.04.1) ...
|
||||
2026-06-27T12:29:55.4854579Z Selecting previously unselected package fonts-tlwg-loma-otf.
|
||||
2026-06-27T12:29:55.4889562Z Preparing to unpack .../13-fonts-tlwg-loma-otf_1%3a0.7.3-1_all.deb ...
|
||||
2026-06-27T12:29:55.4913793Z Unpacking fonts-tlwg-loma-otf (1:0.7.3-1) ...
|
||||
2026-06-27T12:29:55.5254192Z Selecting previously unselected package fonts-unifont.
|
||||
2026-06-27T12:29:55.5287898Z Preparing to unpack .../14-fonts-unifont_1%3a15.1.01-1build1_all.deb ...
|
||||
2026-06-27T12:29:55.5304102Z Unpacking fonts-unifont (1:15.1.01-1build1) ...
|
||||
2026-06-27T12:29:55.6708411Z Selecting previously unselected package fonts-wqy-zenhei.
|
||||
2026-06-27T12:29:55.6738944Z Preparing to unpack .../15-fonts-wqy-zenhei_0.9.45-8_all.deb ...
|
||||
2026-06-27T12:29:55.6859814Z Unpacking fonts-wqy-zenhei (0.9.45-8) ...
|
||||
2026-06-27T12:29:56.2792688Z Selecting previously unselected package libasound2-data.
|
||||
2026-06-27T12:29:56.2940002Z Preparing to unpack .../16-libasound2-data_1.2.11-1ubuntu0.2_all.deb ...
|
||||
2026-06-27T12:29:56.3011544Z Unpacking libasound2-data (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:29:56.3930164Z Selecting previously unselected package libasound2t64:amd64.
|
||||
2026-06-27T12:29:56.3997965Z Preparing to unpack .../17-libasound2t64_1.2.11-1ubuntu0.2_amd64.deb ...
|
||||
2026-06-27T12:29:56.4048917Z Unpacking libasound2t64:amd64 (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:29:56.4573839Z Selecting previously unselected package libatk1.0-0t64:amd64.
|
||||
2026-06-27T12:29:56.4598997Z Preparing to unpack .../18-libatk1.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:56.4637724Z Unpacking libatk1.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:29:56.5098277Z Selecting previously unselected package libxi6:amd64.
|
||||
2026-06-27T12:29:56.5124858Z Preparing to unpack .../19-libxi6_2%3a1.8.1-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:56.5188290Z Unpacking libxi6:amd64 (2:1.8.1-1build1) ...
|
||||
2026-06-27T12:29:56.5518533Z Selecting previously unselected package libatspi2.0-0t64:amd64.
|
||||
2026-06-27T12:29:56.5567874Z Preparing to unpack .../20-libatspi2.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:56.5699758Z Unpacking libatspi2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:29:56.6391376Z Selecting previously unselected package libatk-bridge2.0-0t64:amd64.
|
||||
2026-06-27T12:29:56.6457696Z Preparing to unpack .../21-libatk-bridge2.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:56.6509497Z Unpacking libatk-bridge2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:29:56.7348340Z Selecting previously unselected package libavahi-common-data:amd64.
|
||||
2026-06-27T12:29:56.7365329Z Preparing to unpack .../22-libavahi-common-data_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T12:29:56.7413367Z Unpacking libavahi-common-data:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:29:56.8118498Z Selecting previously unselected package libavahi-common3:amd64.
|
||||
2026-06-27T12:29:56.8144825Z Preparing to unpack .../23-libavahi-common3_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T12:29:56.8180402Z Unpacking libavahi-common3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:29:56.8481364Z Selecting previously unselected package libavahi-client3:amd64.
|
||||
2026-06-27T12:29:56.8504185Z Preparing to unpack .../24-libavahi-client3_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T12:29:56.8527325Z Unpacking libavahi-client3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:29:56.8768636Z Selecting previously unselected package libcups2t64:amd64.
|
||||
2026-06-27T12:29:56.8786491Z Preparing to unpack .../25-libcups2t64_2.4.7-1.2ubuntu7.14_amd64.deb ...
|
||||
2026-06-27T12:29:56.8808431Z Unpacking libcups2t64:amd64 (2.4.7-1.2ubuntu7.14) ...
|
||||
2026-06-27T12:29:56.9096960Z Selecting previously unselected package libdrm-amdgpu1:amd64.
|
||||
2026-06-27T12:29:56.9100617Z Preparing to unpack .../26-libdrm-amdgpu1_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T12:29:56.9134511Z Unpacking libdrm-amdgpu1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:29:56.9636914Z Selecting previously unselected package libpciaccess0:amd64.
|
||||
2026-06-27T12:29:56.9697603Z Preparing to unpack .../27-libpciaccess0_0.17-3ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:29:56.9876579Z Unpacking libpciaccess0:amd64 (0.17-3ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:29:57.0211879Z Selecting previously unselected package libdrm-intel1:amd64.
|
||||
2026-06-27T12:29:57.0307871Z Preparing to unpack .../28-libdrm-intel1_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T12:29:57.0351988Z Unpacking libdrm-intel1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:29:57.0748134Z Selecting previously unselected package libfontenc1:amd64.
|
||||
2026-06-27T12:29:57.0777424Z Preparing to unpack .../29-libfontenc1_1%3a1.1.8-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:57.0825973Z Unpacking libfontenc1:amd64 (1:1.1.8-1build1) ...
|
||||
2026-06-27T12:29:57.1267005Z Selecting previously unselected package libllvm20:amd64.
|
||||
2026-06-27T12:29:57.1293565Z Preparing to unpack .../30-libllvm20_1%3a20.1.2-0ubuntu1~24.04.3_amd64.deb ...
|
||||
2026-06-27T12:29:57.1334840Z Unpacking libllvm20:amd64 (1:20.1.2-0ubuntu1~24.04.3) ...
|
||||
2026-06-27T12:29:57.8980898Z Selecting previously unselected package libx11-xcb1:amd64.
|
||||
2026-06-27T12:29:57.9057528Z Preparing to unpack .../31-libx11-xcb1_2%3a1.8.7-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:57.9083148Z Unpacking libx11-xcb1:amd64 (2:1.8.7-1build1) ...
|
||||
2026-06-27T12:29:57.9349231Z Selecting previously unselected package libxcb-dri3-0:amd64.
|
||||
2026-06-27T12:29:57.9385913Z Preparing to unpack .../32-libxcb-dri3-0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:29:57.9417344Z Unpacking libxcb-dri3-0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:29:57.9715654Z Selecting previously unselected package libxcb-present0:amd64.
|
||||
2026-06-27T12:29:57.9716511Z Preparing to unpack .../33-libxcb-present0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:29:57.9734621Z Unpacking libxcb-present0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:29:57.9990875Z Selecting previously unselected package libxcb-randr0:amd64.
|
||||
2026-06-27T12:29:58.0027302Z Preparing to unpack .../34-libxcb-randr0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:29:58.0064111Z Unpacking libxcb-randr0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:29:58.0358335Z Selecting previously unselected package libxcb-sync1:amd64.
|
||||
2026-06-27T12:29:58.0377266Z Preparing to unpack .../35-libxcb-sync1_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:29:58.0404159Z Unpacking libxcb-sync1:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:29:58.0702568Z Selecting previously unselected package libxcb-xfixes0:amd64.
|
||||
2026-06-27T12:29:58.0735170Z Preparing to unpack .../36-libxcb-xfixes0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:29:58.0767209Z Unpacking libxcb-xfixes0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:29:58.1076190Z Selecting previously unselected package libxshmfence1:amd64.
|
||||
2026-06-27T12:29:58.1106936Z Preparing to unpack .../37-libxshmfence1_1.3-1build5_amd64.deb ...
|
||||
2026-06-27T12:29:58.1152686Z Unpacking libxshmfence1:amd64 (1.3-1build5) ...
|
||||
2026-06-27T12:29:58.1441558Z Selecting previously unselected package mesa-libgallium:amd64.
|
||||
2026-06-27T12:29:58.1467943Z Preparing to unpack .../38-mesa-libgallium_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:29:58.1528453Z Unpacking mesa-libgallium:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:29:58.3677723Z Selecting previously unselected package libgbm1:amd64.
|
||||
2026-06-27T12:29:58.3739343Z Preparing to unpack .../39-libgbm1_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:29:58.3781464Z Unpacking libgbm1:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:29:58.4160413Z Selecting previously unselected package libvulkan1:amd64.
|
||||
2026-06-27T12:29:58.4187257Z Preparing to unpack .../40-libvulkan1_1.3.275.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:58.4211230Z Unpacking libvulkan1:amd64 (1.3.275.0-1build1) ...
|
||||
2026-06-27T12:29:58.4577990Z Selecting previously unselected package libgl1-mesa-dri:amd64.
|
||||
2026-06-27T12:29:58.4595883Z Preparing to unpack .../41-libgl1-mesa-dri_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:29:58.4660743Z Unpacking libgl1-mesa-dri:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:29:58.4939126Z Selecting previously unselected package libxcb-glx0:amd64.
|
||||
2026-06-27T12:29:58.4968840Z Preparing to unpack .../42-libxcb-glx0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:29:58.5005512Z Unpacking libxcb-glx0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:29:58.5308734Z Selecting previously unselected package libxxf86vm1:amd64.
|
||||
2026-06-27T12:29:58.5330256Z Preparing to unpack .../43-libxxf86vm1_1%3a1.1.4-1build4_amd64.deb ...
|
||||
2026-06-27T12:29:58.5350775Z Unpacking libxxf86vm1:amd64 (1:1.1.4-1build4) ...
|
||||
2026-06-27T12:29:58.6256611Z Selecting previously unselected package libglx-mesa0:amd64.
|
||||
2026-06-27T12:29:58.6257251Z Preparing to unpack .../44-libglx-mesa0_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:29:58.6304189Z Unpacking libglx-mesa0:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:29:58.7458115Z Selecting previously unselected package libnspr4:amd64.
|
||||
2026-06-27T12:29:58.7495398Z Preparing to unpack .../45-libnspr4_2%3a4.35-1.1build1_amd64.deb ...
|
||||
2026-06-27T12:29:58.7508426Z Unpacking libnspr4:amd64 (2:4.35-1.1build1) ...
|
||||
2026-06-27T12:29:58.7856922Z Selecting previously unselected package libnss3:amd64.
|
||||
2026-06-27T12:29:58.7886591Z Preparing to unpack .../46-libnss3_2%3a3.98-1ubuntu0.1_amd64.deb ...
|
||||
2026-06-27T12:29:58.7907591Z Unpacking libnss3:amd64 (2:3.98-1ubuntu0.1) ...
|
||||
2026-06-27T12:29:58.8538244Z Selecting previously unselected package libxmu6:amd64.
|
||||
2026-06-27T12:29:58.8557712Z Preparing to unpack .../47-libxmu6_2%3a1.1.3-3build2_amd64.deb ...
|
||||
2026-06-27T12:29:58.8628175Z Unpacking libxmu6:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:29:58.9358779Z Selecting previously unselected package libxpm4:amd64.
|
||||
2026-06-27T12:29:58.9378349Z Preparing to unpack .../48-libxpm4_1%3a3.5.17-1build2_amd64.deb ...
|
||||
2026-06-27T12:29:58.9405841Z Unpacking libxpm4:amd64 (1:3.5.17-1build2) ...
|
||||
2026-06-27T12:29:58.9713095Z Selecting previously unselected package libxaw7:amd64.
|
||||
2026-06-27T12:29:58.9749998Z Preparing to unpack .../49-libxaw7_2%3a1.0.14-1build2_amd64.deb ...
|
||||
2026-06-27T12:29:58.9788039Z Unpacking libxaw7:amd64 (2:1.0.14-1build2) ...
|
||||
2026-06-27T12:29:59.0344842Z Selecting previously unselected package libxcomposite1:amd64.
|
||||
2026-06-27T12:29:59.0385144Z Preparing to unpack .../50-libxcomposite1_1%3a0.4.5-1build3_amd64.deb ...
|
||||
2026-06-27T12:29:59.0412966Z Unpacking libxcomposite1:amd64 (1:0.4.5-1build3) ...
|
||||
2026-06-27T12:29:59.1108472Z Selecting previously unselected package libxdamage1:amd64.
|
||||
2026-06-27T12:29:59.1138027Z Preparing to unpack .../51-libxdamage1_1%3a1.1.6-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:59.1198034Z Unpacking libxdamage1:amd64 (1:1.1.6-1build1) ...
|
||||
2026-06-27T12:29:59.1507633Z Selecting previously unselected package libxfixes3:amd64.
|
||||
2026-06-27T12:29:59.1538920Z Preparing to unpack .../52-libxfixes3_1%3a6.0.0-2build1_amd64.deb ...
|
||||
2026-06-27T12:29:59.1588705Z Unpacking libxfixes3:amd64 (1:6.0.0-2build1) ...
|
||||
2026-06-27T12:29:59.1948055Z Selecting previously unselected package libxfont2:amd64.
|
||||
2026-06-27T12:29:59.1976643Z Preparing to unpack .../53-libxfont2_1%3a2.0.6-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:59.2025517Z Unpacking libxfont2:amd64 (1:2.0.6-1build1) ...
|
||||
2026-06-27T12:29:59.2348606Z Selecting previously unselected package libxkbfile1:amd64.
|
||||
2026-06-27T12:29:59.2397660Z Preparing to unpack .../54-libxkbfile1_1%3a1.1.0-1build4_amd64.deb ...
|
||||
2026-06-27T12:29:59.2407377Z Unpacking libxkbfile1:amd64 (1:1.1.0-1build4) ...
|
||||
2026-06-27T12:29:59.2679911Z Selecting previously unselected package libxrandr2:amd64.
|
||||
2026-06-27T12:29:59.2680471Z Preparing to unpack .../55-libxrandr2_2%3a1.5.2-2build1_amd64.deb ...
|
||||
2026-06-27T12:29:59.2704669Z Unpacking libxrandr2:amd64 (2:1.5.2-2build1) ...
|
||||
2026-06-27T12:29:59.2928745Z Selecting previously unselected package x11-xkb-utils.
|
||||
2026-06-27T12:29:59.3010587Z Preparing to unpack .../56-x11-xkb-utils_7.7+8build2_amd64.deb ...
|
||||
2026-06-27T12:29:59.3016591Z Unpacking x11-xkb-utils (7.7+8build2) ...
|
||||
2026-06-27T12:29:59.3398898Z Selecting previously unselected package xfonts-encodings.
|
||||
2026-06-27T12:29:59.3429169Z Preparing to unpack .../57-xfonts-encodings_1%3a1.0.5-0ubuntu2_all.deb ...
|
||||
2026-06-27T12:29:59.3448993Z Unpacking xfonts-encodings (1:1.0.5-0ubuntu2) ...
|
||||
2026-06-27T12:29:59.3848305Z Selecting previously unselected package xfonts-utils.
|
||||
2026-06-27T12:29:59.3872902Z Preparing to unpack .../58-xfonts-utils_1%3a7.7+6build3_amd64.deb ...
|
||||
2026-06-27T12:29:59.3925392Z Unpacking xfonts-utils (1:7.7+6build3) ...
|
||||
2026-06-27T12:29:59.4504135Z Selecting previously unselected package xfonts-cyrillic.
|
||||
2026-06-27T12:29:59.4553841Z Preparing to unpack .../59-xfonts-cyrillic_1%3a1.0.5+nmu1_all.deb ...
|
||||
2026-06-27T12:29:59.4587260Z Unpacking xfonts-cyrillic (1:1.0.5+nmu1) ...
|
||||
2026-06-27T12:29:59.5071994Z Selecting previously unselected package xfonts-scalable.
|
||||
2026-06-27T12:29:59.5148773Z Preparing to unpack .../60-xfonts-scalable_1%3a1.0.3-1.3_all.deb ...
|
||||
2026-06-27T12:29:59.5188958Z Unpacking xfonts-scalable (1:1.0.3-1.3) ...
|
||||
2026-06-27T12:29:59.5761382Z Selecting previously unselected package xserver-common.
|
||||
2026-06-27T12:29:59.5797149Z Preparing to unpack .../61-xserver-common_2%3a21.1.12-1ubuntu1.6_all.deb ...
|
||||
2026-06-27T12:29:59.5833113Z Unpacking xserver-common (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:29:59.6297941Z Selecting previously unselected package libglvnd0:amd64.
|
||||
2026-06-27T12:29:59.6317132Z Preparing to unpack .../62-libglvnd0_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:59.6375824Z Unpacking libglvnd0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:29:59.6898217Z Selecting previously unselected package libglx0:amd64.
|
||||
2026-06-27T12:29:59.6987434Z Preparing to unpack .../63-libglx0_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:59.7041170Z Unpacking libglx0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:29:59.7538201Z Selecting previously unselected package libgl1:amd64.
|
||||
2026-06-27T12:29:59.7567367Z Preparing to unpack .../64-libgl1_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:29:59.7608379Z Unpacking libgl1:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:29:59.8027844Z Selecting previously unselected package xvfb.
|
||||
2026-06-27T12:29:59.8051105Z Preparing to unpack .../65-xvfb_2%3a21.1.12-1ubuntu1.6_amd64.deb ...
|
||||
2026-06-27T12:29:59.8115409Z Unpacking xvfb (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:29:59.8815864Z Setting up libxcb-dri3-0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:29:59.8917302Z Setting up libx11-xcb1:amd64 (2:1.8.7-1build1) ...
|
||||
2026-06-27T12:29:59.9001648Z Setting up libpciaccess0:amd64 (0.17-3ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:29:59.9127426Z Setting up libxmu6:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:29:59.9207499Z Setting up libxdamage1:amd64 (1:1.1.6-1build1) ...
|
||||
2026-06-27T12:29:59.9297509Z Setting up libxcb-xfixes0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:29:59.9369956Z Setting up libxpm4:amd64 (1:3.5.17-1build2) ...
|
||||
2026-06-27T12:29:59.9476533Z Setting up libxi6:amd64 (2:1.8.1-1build1) ...
|
||||
2026-06-27T12:29:59.9547162Z Setting up fonts-noto-color-emoji (2.047-0ubuntu0.24.04.1) ...
|
||||
2026-06-27T12:29:59.9657561Z Setting up libglvnd0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:29:59.9723581Z Setting up libxcb-glx0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:29:59.9789575Z Setting up libsensors-config (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:29:59.9977819Z Setting up fonts-wqy-zenhei (0.9.45-8) ...
|
||||
2026-06-27T12:30:00.0344505Z Setting up fonts-freefont-ttf (20211204+svn4273-2) ...
|
||||
2026-06-27T12:30:00.0438186Z Setting up xkb-data (2.41-2ubuntu1.1) ...
|
||||
2026-06-27T12:30:00.0519182Z Setting up libxaw7:amd64 (2:1.0.14-1build2) ...
|
||||
2026-06-27T12:30:00.0632646Z Setting up libxxf86vm1:amd64 (1:1.1.4-1build4) ...
|
||||
2026-06-27T12:30:00.0728864Z Setting up libxcb-present0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:30:00.0825264Z Setting up libasound2-data (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:30:00.0943785Z Setting up libfontenc1:amd64 (1:1.1.8-1build1) ...
|
||||
2026-06-27T12:30:00.1057780Z Setting up libasound2t64:amd64 (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:30:00.1186853Z Setting up fonts-tlwg-loma-otf (1:0.7.3-1) ...
|
||||
2026-06-27T12:30:00.1286620Z Setting up libnspr4:amd64 (2:4.35-1.1build1) ...
|
||||
2026-06-27T12:30:00.1429741Z Setting up libxfixes3:amd64 (1:6.0.0-2build1) ...
|
||||
2026-06-27T12:30:00.1564533Z Setting up libxcb-sync1:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:30:00.1648849Z Setting up libavahi-common-data:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:30:00.1749059Z Setting up libatspi2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:30:00.1828573Z Setting up xfonts-encodings (1:1.0.5-0ubuntu2) ...
|
||||
2026-06-27T12:30:00.1906805Z Setting up libxrandr2:amd64 (2:1.5.2-2build1) ...
|
||||
2026-06-27T12:30:00.1978076Z Setting up libllvm20:amd64 (1:20.1.2-0ubuntu1~24.04.3) ...
|
||||
2026-06-27T12:30:00.2061550Z Setting up libsensors5:amd64 (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:30:00.2199197Z Setting up libvulkan1:amd64 (1.3.275.0-1build1) ...
|
||||
2026-06-27T12:30:00.2301105Z Setting up fonts-ipafont-gothic (00303-21ubuntu1) ...
|
||||
2026-06-27T12:30:00.2493099Z 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
|
||||
2026-06-27T12:30:00.2582540Z Setting up libxshmfence1:amd64 (1.3-1build5) ...
|
||||
2026-06-27T12:30:00.2699468Z Setting up at-spi2-common (2.52.0-1build1) ...
|
||||
2026-06-27T12:30:00.2828103Z Setting up libxcb-randr0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:30:00.2958465Z Setting up fonts-liberation (1:2.1.5-3) ...
|
||||
2026-06-27T12:30:00.3047180Z Setting up libxkbfile1:amd64 (1:1.1.0-1build4) ...
|
||||
2026-06-27T12:30:00.3169710Z Setting up libdrm-common (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:30:00.3255670Z Setting up libxcomposite1:amd64 (1:0.4.5-1build3) ...
|
||||
2026-06-27T12:30:00.3368403Z Setting up libxfont2:amd64 (1:2.0.6-1build1) ...
|
||||
2026-06-27T12:30:00.3481429Z Setting up libxmuu1:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:30:00.3568481Z Setting up fonts-unifont (1:15.1.01-1build1) ...
|
||||
2026-06-27T12:30:00.3688733Z Setting up libxkbcommon0:amd64 (1.6.0-1build1) ...
|
||||
2026-06-27T12:30:00.3780829Z Setting up libatk1.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:30:00.3892898Z Setting up x11-xkb-utils (7.7+8build2) ...
|
||||
2026-06-27T12:30:00.3955583Z Setting up libavahi-common3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:30:00.4018202Z Setting up libnss3:amd64 (2:3.98-1ubuntu0.1) ...
|
||||
2026-06-27T12:30:00.4091025Z Setting up xfonts-utils (1:7.7+6build3) ...
|
||||
2026-06-27T12:30:00.4200703Z Setting up libdrm2:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:30:00.4253545Z Setting up xauth (1:1.1.2-1build1) ...
|
||||
2026-06-27T12:30:00.4311946Z Setting up xfonts-cyrillic (1:1.0.5+nmu1) ...
|
||||
2026-06-27T12:30:00.4811643Z Setting up xserver-common (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:30:00.4891341Z Setting up libavahi-client3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:30:00.4975965Z Setting up xfonts-scalable (1:1.0.3-1.3) ...
|
||||
2026-06-27T12:30:00.5435339Z Setting up libdrm-amdgpu1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:30:00.5508959Z Setting up libatk-bridge2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:30:00.5598180Z Setting up libdrm-intel1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:30:00.5698547Z Setting up libcups2t64:amd64 (2.4.7-1.2ubuntu7.14) ...
|
||||
2026-06-27T12:30:00.5809612Z Setting up mesa-libgallium:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:30:00.5890583Z Setting up libgbm1:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:30:00.5946424Z Setting up libgl1-mesa-dri:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:30:00.6113114Z Setting up libglx-mesa0:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:30:00.6230623Z Setting up libglx0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:30:00.6358249Z Setting up libgl1:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:30:00.6476917Z Setting up xvfb (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:30:00.6588145Z Processing triggers for fontconfig (2.15.0-1.1ubuntu2) ...
|
||||
2026-06-27T12:30:00.7725048Z Processing triggers for libc-bin (2.39-0ubuntu8.7) ...
|
||||
2026-06-27T12:30:01.2294434Z ::group::Run set -e
|
||||
2026-06-27T12:30:01.2294765Z set -e
|
||||
2026-06-27T12:30:01.2294873Z EXPECTED_VERSION="$(git rev-parse --short HEAD)"
|
||||
2026-06-27T12:30:01.2294970Z for i in $(seq 1 60); do
|
||||
2026-06-27T12:30:01.2295049Z VERSION_BODY="$(curl -fsS "http://${DEPLOY_HOST}/taxbaik/version.txt" || true)"
|
||||
2026-06-27T12:30:01.2295148Z BLOG_STATUS="$(curl -s -o /dev/null -w '%{http_code}' "http://${DEPLOY_HOST}/taxbaik/blog/accountant-mistakes-5" || true)"
|
||||
2026-06-27T12:30:01.2295260Z if echo "$VERSION_BODY" | grep -q "Version: ${EXPECTED_VERSION}" && [ "$BLOG_STATUS" = "200" ]; then
|
||||
2026-06-27T12:30:01.2295356Z echo "Deployment is ready for ${EXPECTED_VERSION}"
|
||||
2026-06-27T12:30:01.2295435Z exit 0
|
||||
2026-06-27T12:30:01.2295546Z fi
|
||||
2026-06-27T12:30:01.2295634Z echo "Waiting for deployment ${EXPECTED_VERSION}; blog status=${BLOG_STATUS}; version=${VERSION_BODY}"
|
||||
2026-06-27T12:30:01.2295732Z sleep 10
|
||||
2026-06-27T12:30:01.2295818Z done
|
||||
2026-06-27T12:30:01.2295888Z echo "Deployment did not publish expected version ${EXPECTED_VERSION} in time" >&2
|
||||
2026-06-27T12:30:01.2295977Z exit 1
|
||||
2026-06-27T12:30:01.2296048Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:30:01.2296336Z env:
|
||||
2026-06-27T12:30:01.2296411Z DEPLOY_HOST: ***
|
||||
2026-06-27T12:30:01.2296493Z ::endgroup::
|
||||
2026-06-27T12:30:01.3254169Z Waiting for deployment a58aa7e; blog status=200; version=Version: 9f7e016
|
||||
2026-06-27T12:30:01.3255216Z Built: 2026-06-27 12:25:52 UTC
|
||||
2026-06-27T12:30:11.4042857Z Waiting for deployment a58aa7e; blog status=200; version=Version: 9f7e016
|
||||
2026-06-27T12:30:11.4043666Z Built: 2026-06-27 12:25:52 UTC
|
||||
2026-06-27T12:30:21.4167471Z curl: (22) The requested URL returned error: 502
|
||||
2026-06-27T12:30:21.4277572Z Waiting for deployment a58aa7e; blog status=502; version=
|
||||
2026-06-27T12:30:31.4431020Z curl: (22) The requested URL returned error: 502
|
||||
2026-06-27T12:30:31.4639354Z Waiting for deployment a58aa7e; blog status=502; version=
|
||||
2026-06-27T12:30:41.5808920Z Deployment is ready for a58aa7e
|
||||
2026-06-27T12:30:41.7045667Z ::group::Run npm run test:e2e
|
||||
2026-06-27T12:30:41.7046302Z npm run test:e2e
|
||||
2026-06-27T12:30:41.7046499Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:30:41.7046695Z env:
|
||||
2026-06-27T12:30:41.7046797Z E2E_BASE_URL: http://***/taxbaik
|
||||
2026-06-27T12:30:41.7046897Z E2E_ADMIN_USERNAME: admin
|
||||
2026-06-27T12:30:41.7046972Z E2E_ADMIN_PASSWORD: ***
|
||||
2026-06-27T12:30:41.7047051Z ::endgroup::
|
||||
2026-06-27T12:30:41.9109487Z
|
||||
2026-06-27T12:30:41.9110189Z > test:e2e
|
||||
2026-06-27T12:30:41.9110310Z > playwright test
|
||||
2026-06-27T12:30:41.9110396Z
|
||||
2026-06-27T12:30:43.8046225Z
|
||||
2026-06-27T12:30:43.8046928Z Running 8 tests using 1 worker
|
||||
2026-06-27T12:30:43.8050479Z
|
||||
2026-06-27T12:30:48.0177348Z ✓ 1 [chromium] › tests/e2e/admin-login.spec.ts:8:7 › admin authentication › logs in through the real browser UI and reaches dashboard (2.5s)
|
||||
2026-06-27T12:30:48.2915426Z - 2 [chromium] › tests/e2e/admin-password-change.spec.ts:10:7 › admin password change › changes password through the real admin UI
|
||||
2026-06-27T12:31:11.0534606Z ✘ 3 [chromium] › tests/e2e/admin-smoke.spec.ts:9:7 › admin smoke › navigates the main admin menus without circuit errors (22.6s)
|
||||
2026-06-27T12:31:35.0777222Z ✘ 4 [chromium] › tests/e2e/admin-smoke.spec.ts:9:7 › admin smoke › navigates the main admin menus without circuit errors (retry #1) (23.0s)
|
||||
2026-06-27T12:31:37.0886042Z ✓ 5 [chromium] › tests/e2e/blog-seo.spec.ts:6:7 › blog seo › exposes title description and canonical on blog detail pages (1.2s)
|
||||
2026-06-27T12:31:37.1698892Z ✓ 6 [chromium] › tests/e2e/contact-submit.spec.ts:9:7 › contact submit › creates an inquiry through the public API (56ms)
|
||||
2026-06-27T12:32:08.5039961Z ✘ 7 [chromium] › tests/e2e/contact-submit.spec.ts:26:7 › contact submit › creates an inquiry and shows it in admin list (31.2s)
|
||||
2026-06-27T12:32:33.1123930Z ✘ 8 [chromium] › tests/e2e/contact-submit.spec.ts:26:7 › contact submit › creates an inquiry and shows it in admin list (retry #1) (23.6s)
|
||||
2026-06-27T12:32:46.3480272Z ✘ 9 [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links (12.2s)
|
||||
2026-06-27T12:32:59.5966610Z ✘ 10 [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links (retry #1) (12.3s)
|
||||
2026-06-27T12:33:02.1968464Z ✓ 11 [chromium] › tests/e2e/public-smoke.spec.ts:6:7 › public smoke › loads the main public pages with SEO basics (1.8s)
|
||||
2026-06-27T12:33:02.2524349Z
|
||||
2026-06-27T12:33:02.2531287Z
|
||||
2026-06-27T12:33:02.2545075Z 1) [chromium] › tests/e2e/admin-smoke.spec.ts:9:7 › admin smoke › navigates the main admin menus without circuit errors
|
||||
2026-06-27T12:33:02.2545755Z
|
||||
2026-06-27T12:33:02.2545909Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:33:02.2547433Z
|
||||
2026-06-27T12:33:02.2547631Z Locator: locator('.mud-main-content').getByText(/이번달 문의/).first()
|
||||
2026-06-27T12:33:02.2547801Z Expected: visible
|
||||
2026-06-27T12:33:02.2548037Z Timeout: 20000ms
|
||||
2026-06-27T12:33:02.2548148Z Error: element(s) not found
|
||||
2026-06-27T12:33:02.2548252Z
|
||||
2026-06-27T12:33:02.2548343Z Call log:
|
||||
2026-06-27T12:33:02.2548577Z [2m - Expect "toBeVisible" with timeout 20000ms[22m
|
||||
2026-06-27T12:33:02.2548699Z [2m - waiting for locator('.mud-main-content').getByText(/이번달 문의/).first()[22m
|
||||
2026-06-27T12:33:02.2548836Z
|
||||
2026-06-27T12:33:02.2548926Z
|
||||
2026-06-27T12:33:02.2549044Z 32 | await page.goto(`${baseUrl}${check.path}`);
|
||||
2026-06-27T12:33:02.2549157Z 33 | await expect(page).toHaveURL(new RegExp(`${check.path}$`));
|
||||
2026-06-27T12:33:02.2549284Z > 34 | await expect(page.locator('.mud-main-content').getByText(check.content).first()).toBeVisible({ timeout: 20_000 });
|
||||
2026-06-27T12:33:02.2549443Z | ^
|
||||
2026-06-27T12:33:02.2549564Z 35 | }
|
||||
2026-06-27T12:33:02.2549660Z 36 |
|
||||
2026-06-27T12:33:02.2549761Z 37 | expect(consoleErrors, 'browser console/page errors').toEqual([]);
|
||||
2026-06-27T12:33:02.2549890Z at /workspace/***/taxbaik/tests/e2e/admin-smoke.spec.ts:34:88
|
||||
2026-06-27T12:33:02.2550023Z
|
||||
2026-06-27T12:33:02.2550178Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2550366Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium/test-failed-1.png
|
||||
2026-06-27T12:33:02.2550570Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2550741Z
|
||||
2026-06-27T12:33:02.2550871Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2551052Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium/video.webm
|
||||
2026-06-27T12:33:02.2551185Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2551346Z
|
||||
2026-06-27T12:33:02.2551477Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2551622Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium/trace.zip
|
||||
2026-06-27T12:33:02.2551734Z Usage:
|
||||
2026-06-27T12:33:02.2551838Z
|
||||
2026-06-27T12:33:02.2551951Z npx playwright show-trace test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium/trace.zip
|
||||
2026-06-27T12:33:02.2552089Z
|
||||
2026-06-27T12:33:02.2552180Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2552352Z
|
||||
2026-06-27T12:33:02.2552705Z Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2552879Z
|
||||
2026-06-27T12:33:02.2552985Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:33:02.2553138Z
|
||||
2026-06-27T12:33:02.2553264Z Locator: locator('.mud-main-content').getByText(/이번달 문의/).first()
|
||||
2026-06-27T12:33:02.2553424Z Expected: visible
|
||||
2026-06-27T12:33:02.2553606Z Timeout: 20000ms
|
||||
2026-06-27T12:33:02.2553767Z Error: element(s) not found
|
||||
2026-06-27T12:33:02.2553930Z
|
||||
2026-06-27T12:33:02.2554063Z Call log:
|
||||
2026-06-27T12:33:02.2554230Z [2m - Expect "toBeVisible" with timeout 20000ms[22m
|
||||
2026-06-27T12:33:02.2554388Z [2m - waiting for locator('.mud-main-content').getByText(/이번달 문의/).first()[22m
|
||||
2026-06-27T12:33:02.2554539Z
|
||||
2026-06-27T12:33:02.2554701Z
|
||||
2026-06-27T12:33:02.2554856Z 32 | await page.goto(`${baseUrl}${check.path}`);
|
||||
2026-06-27T12:33:02.2555020Z 33 | await expect(page).toHaveURL(new RegExp(`${check.path}$`));
|
||||
2026-06-27T12:33:02.2555200Z > 34 | await expect(page.locator('.mud-main-content').getByText(check.content).first()).toBeVisible({ timeout: 20_000 });
|
||||
2026-06-27T12:33:02.2555419Z | ^
|
||||
2026-06-27T12:33:02.2555591Z 35 | }
|
||||
2026-06-27T12:33:02.2555723Z 36 |
|
||||
2026-06-27T12:33:02.2555884Z 37 | expect(consoleErrors, 'browser console/page errors').toEqual([]);
|
||||
2026-06-27T12:33:02.2556012Z at /workspace/***/taxbaik/tests/e2e/admin-smoke.spec.ts:34:88
|
||||
2026-06-27T12:33:02.2556425Z
|
||||
2026-06-27T12:33:02.2556578Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2556826Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium-retry1/test-failed-1.png
|
||||
2026-06-27T12:33:02.2557065Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2557269Z
|
||||
2026-06-27T12:33:02.2557459Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2557681Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium-retry1/video.webm
|
||||
2026-06-27T12:33:02.2557852Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2558051Z
|
||||
2026-06-27T12:33:02.2558201Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2558410Z test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium-retry1/trace.zip
|
||||
2026-06-27T12:33:02.2558562Z Usage:
|
||||
2026-06-27T12:33:02.2558720Z
|
||||
2026-06-27T12:33:02.2558865Z npx playwright show-trace test-results/admin-smoke-admin-smoke-na-bbce9-enus-without-circuit-errors-chromium-retry1/trace.zip
|
||||
2026-06-27T12:33:02.2559018Z
|
||||
2026-06-27T12:33:02.2559090Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2559220Z
|
||||
2026-06-27T12:33:02.2561056Z 2) [chromium] › tests/e2e/contact-submit.spec.ts:26:7 › contact submit › creates an inquiry and shows it in admin list
|
||||
2026-06-27T12:33:02.2561492Z
|
||||
2026-06-27T12:33:02.2561598Z [31mTest timeout of 30000ms exceeded.[39m
|
||||
2026-06-27T12:33:02.2562083Z
|
||||
2026-06-27T12:33:02.2562226Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:33:02.2562342Z
|
||||
2026-06-27T12:33:02.2562694Z Locator: locator('.mud-main-content').getByText('문의 관리').first()
|
||||
2026-06-27T12:33:02.2562800Z Expected: visible
|
||||
2026-06-27T12:33:02.2562878Z Error: element(s) not found
|
||||
2026-06-27T12:33:02.2562949Z
|
||||
2026-06-27T12:33:02.2563044Z Call log:
|
||||
2026-06-27T12:33:02.2563126Z [2m - Expect "toBeVisible" with timeout 20000ms[22m
|
||||
2026-06-27T12:33:02.2563214Z [2m - waiting for locator('.mud-main-content').getByText('문의 관리').first()[22m
|
||||
2026-06-27T12:33:02.2563313Z
|
||||
2026-06-27T12:33:02.2563378Z
|
||||
2026-06-27T12:33:02.2563458Z 51 | await loginThroughAdminUi(page, baseUrl, username, password);
|
||||
2026-06-27T12:33:02.2563544Z 52 | await page.goto(`${baseUrl}/admin/inquiries`);
|
||||
2026-06-27T12:33:02.2563685Z > 53 | await expect(page.locator('.mud-main-content').getByText('문의 관리').first()).toBeVisible({ timeout: 20_000 });
|
||||
2026-06-27T12:33:02.2563793Z | ^
|
||||
2026-06-27T12:33:02.2563877Z 54 | });
|
||||
2026-06-27T12:33:02.2563959Z 55 | });
|
||||
2026-06-27T12:33:02.2564031Z 56 |
|
||||
2026-06-27T12:33:02.2564102Z at /workspace/***/taxbaik/tests/e2e/contact-submit.spec.ts:53:80
|
||||
2026-06-27T12:33:02.2564189Z
|
||||
2026-06-27T12:33:02.2564665Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2564824Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium/test-failed-1.png
|
||||
2026-06-27T12:33:02.2564924Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2565086Z
|
||||
2026-06-27T12:33:02.2565264Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2565612Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium/video.webm
|
||||
2026-06-27T12:33:02.2565790Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2565968Z
|
||||
2026-06-27T12:33:02.2566036Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2566448Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium/trace.zip
|
||||
2026-06-27T12:33:02.2566566Z Usage:
|
||||
2026-06-27T12:33:02.2566640Z
|
||||
2026-06-27T12:33:02.2566803Z npx playwright show-trace test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium/trace.zip
|
||||
2026-06-27T12:33:02.2567001Z
|
||||
2026-06-27T12:33:02.2567250Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2567454Z
|
||||
2026-06-27T12:33:02.2567634Z Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2567917Z
|
||||
2026-06-27T12:33:02.2568054Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:33:02.2568190Z
|
||||
2026-06-27T12:33:02.2568258Z Locator: locator('.mud-main-content').getByText('문의 관리').first()
|
||||
2026-06-27T12:33:02.2568382Z Expected: visible
|
||||
2026-06-27T12:33:02.2568511Z Timeout: 20000ms
|
||||
2026-06-27T12:33:02.2568719Z Error: element(s) not found
|
||||
2026-06-27T12:33:02.2568899Z
|
||||
2026-06-27T12:33:02.2569009Z Call log:
|
||||
2026-06-27T12:33:02.2569138Z [2m - Expect "toBeVisible" with timeout 20000ms[22m
|
||||
2026-06-27T12:33:02.2569294Z [2m - waiting for locator('.mud-main-content').getByText('문의 관리').first()[22m
|
||||
2026-06-27T12:33:02.2569504Z
|
||||
2026-06-27T12:33:02.2569628Z
|
||||
2026-06-27T12:33:02.2569753Z 51 | await loginThroughAdminUi(page, baseUrl, username, password);
|
||||
2026-06-27T12:33:02.2569892Z 52 | await page.goto(`${baseUrl}/admin/inquiries`);
|
||||
2026-06-27T12:33:02.2569976Z > 53 | await expect(page.locator('.mud-main-content').getByText('문의 관리').first()).toBeVisible({ timeout: 20_000 });
|
||||
2026-06-27T12:33:02.2570072Z | ^
|
||||
2026-06-27T12:33:02.2570155Z 54 | });
|
||||
2026-06-27T12:33:02.2570252Z 55 | });
|
||||
2026-06-27T12:33:02.2570325Z 56 |
|
||||
2026-06-27T12:33:02.2570398Z at /workspace/***/taxbaik/tests/e2e/contact-submit.spec.ts:53:80
|
||||
2026-06-27T12:33:02.2570519Z
|
||||
2026-06-27T12:33:02.2570685Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2570950Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium-retry1/test-failed-1.png
|
||||
2026-06-27T12:33:02.2571233Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2571528Z
|
||||
2026-06-27T12:33:02.2571734Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2571969Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium-retry1/video.webm
|
||||
2026-06-27T12:33:02.2572189Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2572701Z
|
||||
2026-06-27T12:33:02.2572875Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2573007Z test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium-retry1/trace.zip
|
||||
2026-06-27T12:33:02.2573164Z Usage:
|
||||
2026-06-27T12:33:02.2573236Z
|
||||
2026-06-27T12:33:02.2573316Z npx playwright show-trace test-results/contact-submit-contact-sub-0fd92--and-shows-it-in-admin-list-chromium-retry1/trace.zip
|
||||
2026-06-27T12:33:02.2573497Z
|
||||
2026-06-27T12:33:02.2573634Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2573839Z
|
||||
2026-06-27T12:33:02.2573970Z 3) [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links
|
||||
2026-06-27T12:33:02.2574089Z
|
||||
2026-06-27T12:33:02.2574157Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:33:02.2574251Z
|
||||
2026-06-27T12:33:02.2574417Z Locator: getByText('Detail-1782563554052')
|
||||
2026-06-27T12:33:02.2574630Z Expected: visible
|
||||
2026-06-27T12:33:02.2574767Z Timeout: 10000ms
|
||||
2026-06-27T12:33:02.2574896Z Error: element(s) not found
|
||||
2026-06-27T12:33:02.2575075Z
|
||||
2026-06-27T12:33:02.2575189Z Call log:
|
||||
2026-06-27T12:33:02.2575335Z [2m - Expect "toBeVisible" with timeout 10000ms[22m
|
||||
2026-06-27T12:33:02.2575571Z [2m - waiting for getByText('Detail-1782563554052')[22m
|
||||
2026-06-27T12:33:02.2575703Z
|
||||
2026-06-27T12:33:02.2575787Z
|
||||
2026-06-27T12:33:02.2575907Z 36 |
|
||||
2026-06-27T12:33:02.2576443Z 37 | await expect(page).toHaveURL(/\/taxbaik\/admin\/inquiries\/\d+$/);
|
||||
2026-06-27T12:33:02.2576618Z > 38 | await expect(page.getByText(name)).toBeVisible();
|
||||
2026-06-27T12:33:02.2580360Z | ^
|
||||
2026-06-27T12:33:02.2580564Z 39 | await expect(page.getByText(phone)).toBeVisible();
|
||||
2026-06-27T12:33:02.2580751Z 40 | await expect(page.getByText(message)).toBeVisible();
|
||||
2026-06-27T12:33:02.2580953Z 41 | await expect(page.getByRole('button', { name: '신규' })).toBeVisible();
|
||||
2026-06-27T12:33:02.2581466Z at /workspace/***/taxbaik/tests/e2e/inquiry-detail.spec.ts:38:40
|
||||
2026-06-27T12:33:02.2581734Z
|
||||
2026-06-27T12:33:02.2582304Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2582750Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/test-failed-1.png
|
||||
2026-06-27T12:33:02.2583124Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2583293Z
|
||||
2026-06-27T12:33:02.2583368Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2583479Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/video.webm
|
||||
2026-06-27T12:33:02.2583602Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2583876Z
|
||||
2026-06-27T12:33:02.2583952Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2584087Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/trace.zip
|
||||
2026-06-27T12:33:02.2584245Z Usage:
|
||||
2026-06-27T12:33:02.2584378Z
|
||||
2026-06-27T12:33:02.2584476Z npx playwright show-trace test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/trace.zip
|
||||
2026-06-27T12:33:02.2584793Z
|
||||
2026-06-27T12:33:02.2584870Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2584975Z
|
||||
2026-06-27T12:33:02.2585062Z Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2585181Z
|
||||
2026-06-27T12:33:02.2585249Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:33:02.2585473Z
|
||||
2026-06-27T12:33:02.2585583Z Locator: getByText('Detail-1782563567239')
|
||||
2026-06-27T12:33:02.2585678Z Expected: visible
|
||||
2026-06-27T12:33:02.2585754Z Timeout: 10000ms
|
||||
2026-06-27T12:33:02.2585852Z Error: element(s) not found
|
||||
2026-06-27T12:33:02.2585928Z
|
||||
2026-06-27T12:33:02.2585992Z Call log:
|
||||
2026-06-27T12:33:02.2586254Z [2m - Expect "toBeVisible" with timeout 10000ms[22m
|
||||
2026-06-27T12:33:02.2586384Z [2m - waiting for getByText('Detail-1782563567239')[22m
|
||||
2026-06-27T12:33:02.2586464Z
|
||||
2026-06-27T12:33:02.2586529Z
|
||||
2026-06-27T12:33:02.2586746Z 36 |
|
||||
2026-06-27T12:33:02.2586860Z 37 | await expect(page).toHaveURL(/\/taxbaik\/admin\/inquiries\/\d+$/);
|
||||
2026-06-27T12:33:02.2587263Z > 38 | await expect(page.getByText(name)).toBeVisible();
|
||||
2026-06-27T12:33:02.2587352Z | ^
|
||||
2026-06-27T12:33:02.2587457Z 39 | await expect(page.getByText(phone)).toBeVisible();
|
||||
2026-06-27T12:33:02.2587540Z 40 | await expect(page.getByText(message)).toBeVisible();
|
||||
2026-06-27T12:33:02.2587629Z 41 | await expect(page.getByRole('button', { name: '신규' })).toBeVisible();
|
||||
2026-06-27T12:33:02.2587733Z at /workspace/***/taxbaik/tests/e2e/inquiry-detail.spec.ts:38:40
|
||||
2026-06-27T12:33:02.2588063Z
|
||||
2026-06-27T12:33:02.2588139Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2588254Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/test-failed-1.png
|
||||
2026-06-27T12:33:02.2588399Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2589026Z
|
||||
2026-06-27T12:33:02.2589173Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2589377Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/video.webm
|
||||
2026-06-27T12:33:02.2589531Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2589941Z
|
||||
2026-06-27T12:33:02.2590016Z attachment #3: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2590155Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/trace.zip
|
||||
2026-06-27T12:33:02.2590240Z Usage:
|
||||
2026-06-27T12:33:02.2590305Z
|
||||
2026-06-27T12:33:02.2590387Z npx playwright show-trace test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/trace.zip
|
||||
2026-06-27T12:33:02.2590758Z
|
||||
2026-06-27T12:33:02.2590843Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:33:02.2590948Z
|
||||
2026-06-27T12:33:02.2591071Z 3 failed
|
||||
2026-06-27T12:33:02.2591147Z [chromium] › tests/e2e/admin-smoke.spec.ts:9:7 › admin smoke › navigates the main admin menus without circuit errors
|
||||
2026-06-27T12:33:02.2591241Z [chromium] › tests/e2e/contact-submit.spec.ts:26:7 › contact submit › creates an inquiry and shows it in admin list
|
||||
2026-06-27T12:33:02.2594170Z [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links
|
||||
2026-06-27T12:33:02.2594319Z 1 skipped
|
||||
2026-06-27T12:33:02.2594396Z 4 passed (2.3m)
|
||||
2026-06-27T12:33:02.3292719Z ❌ Failure - Main Browser E2E verification
|
||||
2026-06-27T12:33:02.3407069Z exitcode '1': failure
|
||||
2026-06-27T12:33:02.4237692Z ::group::Run echo "Executed tests:"
|
||||
2026-06-27T12:33:02.4238089Z echo "Executed tests:"
|
||||
2026-06-27T12:33:02.4238203Z echo "- admin-login"
|
||||
2026-06-27T12:33:02.4238288Z echo "- admin-smoke"
|
||||
2026-06-27T12:33:02.4238374Z echo "- public-smoke"
|
||||
2026-06-27T12:33:02.4238450Z echo "- blog-seo"
|
||||
2026-06-27T12:33:02.4238523Z echo "- contact-submit"
|
||||
2026-06-27T12:33:02.4238594Z echo "- inquiry-detail"
|
||||
2026-06-27T12:33:02.4238663Z echo "- admin-password-change"
|
||||
2026-06-27T12:33:02.4238739Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:33:02.4238836Z ::endgroup::
|
||||
2026-06-27T12:33:02.4726718Z Executed tests:
|
||||
2026-06-27T12:33:02.4727412Z - admin-login
|
||||
2026-06-27T12:33:02.4727523Z - admin-smoke
|
||||
2026-06-27T12:33:02.4727620Z - public-smoke
|
||||
2026-06-27T12:33:02.4730668Z - blog-seo
|
||||
2026-06-27T12:33:02.4730940Z - contact-submit
|
||||
2026-06-27T12:33:02.4731066Z - inquiry-detail
|
||||
2026-06-27T12:33:02.4731169Z - admin-password-change
|
||||
2026-06-27T12:33:02.5034245Z expression '${{ runner.os }}-playwright-\n' rewritten to 'format('{0}-playwright-\n', runner.os)'
|
||||
2026-06-27T12:33:02.5034624Z evaluating expression 'format('{0}-playwright-\n', runner.os)'
|
||||
2026-06-27T12:33:02.5035263Z expression 'format('{0}-playwright-\n', runner.os)' evaluated to '%!t(string=Linux-playwright-\n)'
|
||||
2026-06-27T12:33:02.5035477Z expression '${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}' rewritten to 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))'
|
||||
2026-06-27T12:33:02.5035585Z evaluating expression 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))'
|
||||
2026-06-27T12:33:02.5036023Z Writing entry to tarball workflow/hashfiles/index.js len:168437
|
||||
2026-06-27T12:33:02.5038055Z Extracting content to '/var/run/act'
|
||||
2026-06-27T12:33:02.5066826Z 🐳 docker exec cmd=[node /var/run/act/workflow/hashfiles/index.js] user= workdir=
|
||||
2026-06-27T12:33:02.5067069Z Exec command '[node /var/run/act/workflow/hashfiles/index.js]'
|
||||
2026-06-27T12:33:02.5067254Z Working directory '/workspace/***/taxbaik'
|
||||
2026-06-27T12:33:02.6130490Z expression 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))' evaluated to '%!t(string=Linux-playwright-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f)'
|
||||
2026-06-27T12:33:02.6222628Z evaluating expression 'success()'
|
||||
2026-06-27T12:33:02.6223194Z expression 'success()' evaluated to 'false'
|
||||
2026-06-27T12:33:02.6223347Z Skipping step 'Cache Playwright browsers' due to 'success()'
|
||||
2026-06-27T12:33:02.6495905Z evaluating expression 'success()'
|
||||
2026-06-27T12:33:02.6496788Z expression 'success()' evaluated to 'false'
|
||||
2026-06-27T12:33:02.6496993Z Skipping step 'Setup Node.js' due to 'success()'
|
||||
2026-06-27T12:33:02.6731068Z evaluating expression 'always()'
|
||||
2026-06-27T12:33:02.6731572Z expression 'always()' evaluated to 'true'
|
||||
2026-06-27T12:33:02.6731704Z ⭐ Run Post Checkout code
|
||||
2026-06-27T12:33:02.6731911Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T12:33:02.6732075Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T12:33:02.6732180Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T12:33:02.6732274Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T12:33:02.6732355Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T12:33:02.6732618Z Extracting content to '/var/run/act'
|
||||
2026-06-27T12:33:02.6753720Z run post step for 'Checkout code'
|
||||
2026-06-27T12:33:02.6754319Z executing remote job container: [node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js]
|
||||
2026-06-27T12:33:02.6992161Z 🐳 docker exec cmd=[node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js] user= workdir=
|
||||
2026-06-27T12:33:02.6992721Z Exec command '[node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js]'
|
||||
2026-06-27T12:33:02.6993156Z Working directory '/workspace/***/taxbaik'
|
||||
+776
@@ -0,0 +1,776 @@
|
||||
2026-06-27T12:42:01.6386894Z hz-prod-runner-2(version:v0.6.1) received task 270 of job browser-e2e, be triggered by event: push
|
||||
2026-06-27T12:42:01.6396613Z workflow prepared
|
||||
2026-06-27T12:42:01.6398704Z evaluating expression 'success()'
|
||||
2026-06-27T12:42:01.6399563Z expression 'success()' evaluated to 'true'
|
||||
2026-06-27T12:42:01.6399754Z 🚀 Start image=docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T12:42:01.6520723Z 🐳 docker pull image=docker.gitea.com/runner-images:ubuntu-latest platform= username= forcePull=false
|
||||
2026-06-27T12:42:01.6520983Z 🐳 docker pull docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T12:42:01.6877959Z Image exists? true
|
||||
2026-06-27T12:42:01.7509267Z 🐳 docker create image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T12:42:01.8735173Z Created container name=GITEA-ACTIONS-TASK-270-WORKFLOW-TaxBaik-Browser-E2E-JOB-browser-1a7ccf27222150b898262b9f6434702d14b01902006135d71a3535eab49f7b6d id=982b0f68e285f79ba36d4d0701d74eeea99659440d4c4ecce1608c6564098795 from image docker.gitea.com/runner-images:ubuntu-latest (platform: )
|
||||
2026-06-27T12:42:01.8736490Z ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
|
||||
2026-06-27T12:42:01.8737047Z 🐳 docker run image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T12:42:01.8737327Z Starting container: 982b0f68e285f79ba36d4d0701d74eeea99659440d4c4ecce1608c6564098795
|
||||
2026-06-27T12:42:02.1359887Z Started container: 982b0f68e285f79ba36d4d0701d74eeea99659440d4c4ecce1608c6564098795
|
||||
2026-06-27T12:42:02.3790246Z Writing entry to tarball workflow/event.json len:5280
|
||||
2026-06-27T12:42:02.3790832Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T12:42:02.3791000Z Extracting content to '/var/run/act/'
|
||||
2026-06-27T12:42:02.4012853Z ☁ git clone 'https://github.com/actions/checkout' # ref=v4
|
||||
2026-06-27T12:42:02.4013315Z cloning https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T12:42:03.0003869Z Unable to pull refs/heads/v4: non-fast-forward update
|
||||
2026-06-27T12:42:03.0004261Z Cloned https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T12:42:03.0170721Z Checked out v4
|
||||
2026-06-27T12:42:03.0281354Z ☁ git clone 'https://github.com/actions/setup-node' # ref=v4
|
||||
2026-06-27T12:42:03.0281846Z cloning https://github.com/actions/setup-node to /root/.cache/act/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc
|
||||
2026-06-27T12:42:04.0062532Z Unable to pull refs/heads/v4: worktree contains unstaged changes
|
||||
2026-06-27T12:42:04.0063352Z Cloned https://github.com/actions/setup-node to /root/.cache/act/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc
|
||||
2026-06-27T12:42:04.0894172Z Checked out v4
|
||||
2026-06-27T12:42:04.1081453Z ☁ git clone 'https://github.com/actions/cache' # ref=v4
|
||||
2026-06-27T12:42:04.1082338Z cloning https://github.com/actions/cache to /root/.cache/act/6b4e4eb40e21c1bd02cb00a273f4d79af7c42205c1390e4e65c594ecd7a3696e
|
||||
2026-06-27T12:42:05.1714832Z Unable to pull refs/heads/v4: worktree contains unstaged changes
|
||||
2026-06-27T12:42:05.1715383Z Cloned https://github.com/actions/cache to /root/.cache/act/6b4e4eb40e21c1bd02cb00a273f4d79af7c42205c1390e4e65c594ecd7a3696e
|
||||
2026-06-27T12:42:05.1991055Z Checked out v4
|
||||
2026-06-27T12:42:05.2278587Z evaluating expression ''
|
||||
2026-06-27T12:42:05.2279122Z expression '' evaluated to 'true'
|
||||
2026-06-27T12:42:05.2279244Z ⭐ Run Main Checkout code
|
||||
2026-06-27T12:42:05.2279432Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T12:42:05.2279589Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T12:42:05.2279696Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T12:42:05.2279790Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T12:42:05.2279870Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T12:42:05.2279974Z Extracting content to '/var/run/act'
|
||||
2026-06-27T12:42:05.2312103Z ::group::Run Checkout code
|
||||
2026-06-27T12:42:06.0822754Z ::add-matcher::/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/problem-matcher.json
|
||||
2026-06-27T12:42:06.0822922Z Syncing repository: ***/taxbaik
|
||||
2026-06-27T12:42:06.0823350Z ::group::Getting Git version info
|
||||
2026-06-27T12:42:06.0823482Z Working directory is '/workspace/***/taxbaik'
|
||||
2026-06-27T12:42:06.0902223Z [command]/usr/bin/git version
|
||||
2026-06-27T12:42:06.1010380Z git version 2.54.0
|
||||
2026-06-27T12:42:06.1081645Z ::endgroup::
|
||||
2026-06-27T12:42:06.1147488Z Temporarily overriding HOME='/tmp/f4c0183f-62e7-4412-be65-07f3e2ab46a9' before making global git config changes
|
||||
2026-06-27T12:42:06.1148124Z Adding repository directory to the temporary git global config as a safe directory
|
||||
2026-06-27T12:42:06.1148261Z [command]/usr/bin/git config --global --add safe.directory /workspace/***/taxbaik
|
||||
2026-06-27T12:42:06.1359311Z Deleting the contents of '/workspace/***/taxbaik'
|
||||
2026-06-27T12:42:06.1418742Z ::group::Initializing the repository
|
||||
2026-06-27T12:42:06.1474526Z [command]/usr/bin/git init /workspace/***/taxbaik
|
||||
2026-06-27T12:42:06.1479903Z hint: Using 'master' as the name for the initial branch. This default branch name
|
||||
2026-06-27T12:42:06.1480214Z hint: will change to "main" in Git 3.0. To configure the initial branch name
|
||||
2026-06-27T12:42:06.1480483Z hint: to use in all of your new repositories, which will suppress this warning,
|
||||
2026-06-27T12:42:06.1480703Z hint: call:
|
||||
2026-06-27T12:42:06.1480853Z hint:
|
||||
2026-06-27T12:42:06.1480993Z hint: git config --global init.defaultBranch <name>
|
||||
2026-06-27T12:42:06.1481142Z hint:
|
||||
2026-06-27T12:42:06.1481276Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
|
||||
2026-06-27T12:42:06.1481367Z hint: 'development'. The just-created branch can be renamed via this command:
|
||||
2026-06-27T12:42:06.1481477Z hint:
|
||||
2026-06-27T12:42:06.1481576Z hint: git branch -m <name>
|
||||
2026-06-27T12:42:06.1481655Z hint:
|
||||
2026-06-27T12:42:06.1481723Z hint: Disable this message with "git config set advice.defaultBranchName false"
|
||||
2026-06-27T12:42:06.1482595Z Initialized empty Git repository in /workspace/***/taxbaik/.git/
|
||||
2026-06-27T12:42:06.1505611Z [command]/usr/bin/git remote add origin http://gitea:3000/***/taxbaik
|
||||
2026-06-27T12:42:06.1577597Z ::endgroup::
|
||||
2026-06-27T12:42:06.1577889Z ::group::Disabling automatic garbage collection
|
||||
2026-06-27T12:42:06.1589531Z [command]/usr/bin/git config --local gc.auto 0
|
||||
2026-06-27T12:42:06.1619903Z ::endgroup::
|
||||
2026-06-27T12:42:06.1621291Z ::group::Setting up auth
|
||||
2026-06-27T12:42:06.1636909Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
||||
2026-06-27T12:42:06.1707066Z [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' || :"
|
||||
2026-06-27T12:42:06.2785700Z [command]/usr/bin/git config --local --name-only --get-regexp http\.http\:\/\/gitea\:3000\/\.extraheader
|
||||
2026-06-27T12:42:06.2869237Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.http\:\/\/gitea\:3000\/\.extraheader' && git config --local --unset-all 'http.http://gitea:3000/.extraheader' || :"
|
||||
2026-06-27T12:42:06.3698626Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
||||
2026-06-27T12:42:06.3700619Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
||||
2026-06-27T12:42:06.4085787Z [command]/usr/bin/git config --local http.http://gitea:3000/.extraheader AUTHORIZATION: basic ***
|
||||
2026-06-27T12:42:06.4120486Z ::endgroup::
|
||||
2026-06-27T12:42:06.4120806Z ::group::Fetching the repository
|
||||
2026-06-27T12:42:06.4120949Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +0c49e12fa0fc23b036bbc8dee75093d4a85b3d76:refs/remotes/origin/master
|
||||
2026-06-27T12:42:06.5987617Z From http://gitea:3000/***/taxbaik
|
||||
2026-06-27T12:42:06.5988267Z * [new ref] 0c49e12fa0fc23b036bbc8dee75093d4a85b3d76 -> origin/master
|
||||
2026-06-27T12:42:06.6167946Z ::endgroup::
|
||||
2026-06-27T12:42:06.6168185Z ::group::Determining the checkout info
|
||||
2026-06-27T12:42:06.6168365Z ::endgroup::
|
||||
2026-06-27T12:42:06.6169527Z [command]/usr/bin/git sparse-checkout disable
|
||||
2026-06-27T12:42:06.6260145Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
|
||||
2026-06-27T12:42:06.6260922Z ::group::Checking out the ref
|
||||
2026-06-27T12:42:06.6261061Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
|
||||
2026-06-27T12:42:06.6388475Z Reset branch 'master'
|
||||
2026-06-27T12:42:06.6389089Z branch 'master' set up to track 'origin/master'.
|
||||
2026-06-27T12:42:06.6390090Z ::endgroup::
|
||||
2026-06-27T12:42:06.6491410Z [command]/usr/bin/git log -1 --format=%H
|
||||
2026-06-27T12:42:06.6491547Z 0c49e12fa0fc23b036bbc8dee75093d4a85b3d76
|
||||
2026-06-27T12:42:06.6492312Z ::remove-matcher owner=checkout-git::
|
||||
2026-06-27T12:42:06.6624647Z ::endgroup::
|
||||
2026-06-27T12:42:06.7413480Z ::group::Run Setup Node.js
|
||||
2026-06-27T12:42:06.7413874Z with:
|
||||
2026-06-27T12:42:06.7413979Z cache: npm
|
||||
2026-06-27T12:42:06.7414076Z node-version: 22
|
||||
2026-06-27T12:42:07.8937720Z Found in cache @ /opt/hostedtoolcache/node/22.23.1/x64
|
||||
2026-06-27T12:42:07.8949175Z (node:141) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
|
||||
2026-06-27T12:42:07.8949935Z (Use `node --trace-deprecation ...` to show where the warning was created)
|
||||
2026-06-27T12:42:07.8967820Z ::group::Environment details
|
||||
2026-06-27T12:42:08.1615731Z node: v22.23.1
|
||||
2026-06-27T12:42:08.1616400Z npm: 10.9.8
|
||||
2026-06-27T12:42:08.1616511Z yarn:
|
||||
2026-06-27T12:42:08.1619964Z ::endgroup::
|
||||
2026-06-27T12:42:08.1663162Z [command]/opt/hostedtoolcache/node/22.23.1/x64/bin/npm config get cache
|
||||
2026-06-27T12:42:08.4460517Z /root/.npm
|
||||
2026-06-27T12:42:08.5309728Z Cache Size: ~3 MB (2871339 B)
|
||||
2026-06-27T12:42:08.5351578Z [command]/usr/bin/tar -xf /tmp/2dd4e48b-472d-4f3a-a544-b26c6f1b0d51/cache.tzst -P -C /workspace/***/taxbaik --use-compress-program unzstd
|
||||
2026-06-27T12:42:08.5634529Z Cache restored successfully
|
||||
2026-06-27T12:42:08.5644759Z Cache restored from key: node-cache-linux-x64-npm-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f
|
||||
2026-06-27T12:42:08.5648316Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/tsc.json
|
||||
2026-06-27T12:42:08.5650463Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/eslint-stylish.json
|
||||
2026-06-27T12:42:08.5652549Z ##[add-matcher]/run/act/actions/e5877e7fc2f7e5000a2f22526584a2565cc2ae38cd26a9b1938dbca653b056cc/.github/eslint-compact.json
|
||||
2026-06-27T12:42:08.5841243Z ::endgroup::
|
||||
2026-06-27T12:42:08.8646431Z ::group::Run Cache Playwright browsers
|
||||
2026-06-27T12:42:08.8647004Z with:
|
||||
2026-06-27T12:42:08.8647176Z key: ${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}
|
||||
2026-06-27T12:42:08.8647331Z path: ~/.cache/ms-playwright
|
||||
2026-06-27T12:42:08.8647452Z restore-keys: ${{ runner.os }}-playwright-
|
||||
2026-06-27T12:42:10.1096593Z (node:204) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
|
||||
2026-06-27T12:42:10.1097075Z (Use `node --trace-deprecation ...` to show where the warning was created)
|
||||
2026-06-27T12:42:11.7373570Z Cache Size: ~247 MB (259214535 B)
|
||||
2026-06-27T12:42:11.7906926Z [command]/usr/bin/tar -xf /tmp/8a35e074-42a1-41e7-a6db-5d90d2a72d9e/cache.tzst -P -C /workspace/***/taxbaik --use-compress-program unzstd
|
||||
2026-06-27T12:42:13.9851947Z Cache restored successfully
|
||||
2026-06-27T12:42:14.0534634Z Cache restored from key: linux-playwright-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f
|
||||
2026-06-27T12:42:14.0822392Z ::endgroup::
|
||||
2026-06-27T12:42:14.3070146Z ::group::Run set -e
|
||||
2026-06-27T12:42:14.3070488Z set -e
|
||||
2026-06-27T12:42:14.3070607Z npm ci
|
||||
2026-06-27T12:42:14.3070684Z npx playwright install chromium --with-deps
|
||||
2026-06-27T12:42:14.3070790Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:42:14.3070903Z ::endgroup::
|
||||
2026-06-27T12:42:16.1634222Z
|
||||
2026-06-27T12:42:16.1635023Z added 3 packages, and audited 4 packages in 2s
|
||||
2026-06-27T12:42:16.1635720Z
|
||||
2026-06-27T12:42:16.1635892Z found 0 vulnerabilities
|
||||
2026-06-27T12:42:18.0684354Z Installing dependencies...
|
||||
2026-06-27T12:42:18.2404112Z Get:1 http://archive.ubuntu.com/ubuntu noble InRelease [256 kB]
|
||||
2026-06-27T12:42:18.2425817Z Get:2 http://security.ubuntu.com/ubuntu noble-security InRelease [126 kB]
|
||||
2026-06-27T12:42:18.2750992Z Get:3 https://packages.microsoft.com/ubuntu/24.04/prod noble InRelease [3600 B]
|
||||
2026-06-27T12:42:18.3259169Z Get:4 http://archive.ubuntu.com/ubuntu noble-updates InRelease [126 kB]
|
||||
2026-06-27T12:42:18.3637236Z Get:5 https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble InRelease [24.3 kB]
|
||||
2026-06-27T12:42:18.3834344Z Get:6 http://archive.ubuntu.com/ubuntu noble-backports InRelease [126 kB]
|
||||
2026-06-27T12:42:18.3966479Z Get:7 http://security.ubuntu.com/ubuntu noble-security/main amd64 Packages [976 kB]
|
||||
2026-06-27T12:42:18.4887305Z Get:8 http://security.ubuntu.com/ubuntu noble-security/multiverse amd64 Packages [43.8 kB]
|
||||
2026-06-27T12:42:18.4888027Z Get:9 https://packages.microsoft.com/ubuntu/24.04/prod noble/main all Packages [643 B]
|
||||
2026-06-27T12:42:18.4954082Z Get:10 http://security.ubuntu.com/ubuntu noble-security/restricted amd64 Packages [1339 kB]
|
||||
2026-06-27T12:42:18.4967739Z Get:11 https://packages.microsoft.com/ubuntu/24.04/prod noble/main amd64 Packages [187 kB]
|
||||
2026-06-27T12:42:18.5858529Z Get:12 http://security.ubuntu.com/ubuntu noble-security/universe amd64 Packages [1487 kB]
|
||||
2026-06-27T12:42:18.7430683Z Get:13 http://archive.ubuntu.com/ubuntu noble/main amd64 Packages [1808 kB]
|
||||
2026-06-27T12:42:18.8818902Z Get:14 http://archive.ubuntu.com/ubuntu noble/restricted amd64 Packages [117 kB]
|
||||
2026-06-27T12:42:18.8819588Z Get:15 http://archive.ubuntu.com/ubuntu noble/multiverse amd64 Packages [331 kB]
|
||||
2026-06-27T12:42:18.9170162Z Get:16 http://archive.ubuntu.com/ubuntu noble/universe amd64 Packages [19.3 MB]
|
||||
2026-06-27T12:42:19.1169092Z Get:17 https://packagecloud.io/github/git-lfs/ubuntu noble InRelease [29.2 kB]
|
||||
2026-06-27T12:42:19.3078630Z Get:18 https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble/main amd64 Packages [2988 B]
|
||||
2026-06-27T12:42:19.4341603Z Get:19 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 Packages [1296 kB]
|
||||
2026-06-27T12:42:19.4717915Z Get:20 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 Packages [2108 kB]
|
||||
2026-06-27T12:42:19.5288043Z Get:21 http://archive.ubuntu.com/ubuntu noble-updates/multiverse amd64 Packages [49.5 kB]
|
||||
2026-06-27T12:42:19.5288557Z Get:22 http://archive.ubuntu.com/ubuntu noble-updates/restricted amd64 Packages [1412 kB]
|
||||
2026-06-27T12:42:19.5623728Z Get:23 http://archive.ubuntu.com/ubuntu noble-backports/main amd64 Packages [48.9 kB]
|
||||
2026-06-27T12:42:19.5672736Z Get:24 http://archive.ubuntu.com/ubuntu noble-backports/universe amd64 Packages [35.9 kB]
|
||||
2026-06-27T12:42:19.5844853Z Get:25 http://archive.ubuntu.com/ubuntu noble-backports/multiverse amd64 Packages [671 B]
|
||||
2026-06-27T12:42:20.4121696Z Get:26 https://packagecloud.io/github/git-lfs/ubuntu noble/main amd64 Packages [1273 B]
|
||||
2026-06-27T12:42:21.1150132Z Fetched 31.3 MB in 3s (10.6 MB/s)
|
||||
2026-06-27T12:42:22.7485225Z Reading package lists...
|
||||
2026-06-27T12:42:24.2863974Z Reading package lists...
|
||||
2026-06-27T12:42:24.6997991Z Building dependency tree...
|
||||
2026-06-27T12:42:24.6998606Z Reading state information...
|
||||
2026-06-27T12:42:25.2667974Z libcairo2 is already the newest version (1.18.0-3build1).
|
||||
2026-06-27T12:42:25.2669257Z libcairo2 set to manually installed.
|
||||
2026-06-27T12:42:25.2669487Z libdbus-1-3 is already the newest version (1.14.10-4ubuntu4.1).
|
||||
2026-06-27T12:42:25.2669628Z libdbus-1-3 set to manually installed.
|
||||
2026-06-27T12:42:25.2669744Z libglib2.0-0t64 is already the newest version (2.80.0-6ubuntu3.8).
|
||||
2026-06-27T12:42:25.2670167Z libglib2.0-0t64 set to manually installed.
|
||||
2026-06-27T12:42:25.2670299Z libpango-1.0-0 is already the newest version (1.52.1+ds-1build1).
|
||||
2026-06-27T12:42:25.2670419Z libpango-1.0-0 set to manually installed.
|
||||
2026-06-27T12:42:25.2670555Z libx11-6 is already the newest version (2:1.8.7-1build1).
|
||||
2026-06-27T12:42:25.2670881Z libx11-6 set to manually installed.
|
||||
2026-06-27T12:42:25.2670995Z libxcb1 is already the newest version (1.15-1ubuntu2).
|
||||
2026-06-27T12:42:25.2671180Z libxcb1 set to manually installed.
|
||||
2026-06-27T12:42:25.2671321Z libxext6 is already the newest version (2:1.3.4-1build2).
|
||||
2026-06-27T12:42:25.2671436Z libxext6 set to manually installed.
|
||||
2026-06-27T12:42:25.2671721Z libfontconfig1 is already the newest version (2.15.0-1.1ubuntu2).
|
||||
2026-06-27T12:42:25.2671880Z libfontconfig1 set to manually installed.
|
||||
2026-06-27T12:42:25.2671987Z libfreetype6 is already the newest version (2.13.2+dfsg-1ubuntu0.1).
|
||||
2026-06-27T12:42:25.2672111Z libfreetype6 set to manually installed.
|
||||
2026-06-27T12:42:25.2672220Z The following additional packages will be installed:
|
||||
2026-06-27T12:42:25.2673681Z at-spi2-common libasound2-data libavahi-client3 libavahi-common-data
|
||||
2026-06-27T12:42:25.2674016Z libavahi-common3 libdrm-amdgpu1 libdrm-common libdrm-intel1 libfontenc1
|
||||
2026-06-27T12:42:25.2676576Z libgl1 libgl1-mesa-dri libglvnd0 libglx-mesa0 libglx0 libllvm20
|
||||
2026-06-27T12:42:25.2696834Z libpciaccess0 libsensors-config libsensors5 libvulkan1 libx11-xcb1 libxaw7
|
||||
2026-06-27T12:42:25.2697352Z libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0 libxcb-sync1
|
||||
2026-06-27T12:42:25.2697650Z libxcb-xfixes0 libxfont2 libxi6 libxkbfile1 libxmu6 libxmuu1 libxpm4
|
||||
2026-06-27T12:42:25.2697782Z libxshmfence1 libxxf86vm1 mesa-libgallium x11-xkb-utils xauth
|
||||
2026-06-27T12:42:25.2697880Z xfonts-encodings xfonts-utils xkb-data xserver-common
|
||||
2026-06-27T12:42:25.2710222Z Suggested packages:
|
||||
2026-06-27T12:42:25.2712085Z alsa-utils libasound2-plugins cups-common pciutils lm-sensors
|
||||
2026-06-27T12:42:25.2713861Z Recommended packages:
|
||||
2026-06-27T12:42:25.2715730Z fonts-ipafont-mincho fonts-liberation-sans-narrow fonts-tlwg-loma
|
||||
2026-06-27T12:42:25.2717316Z alsa-ucm-conf alsa-topology-conf at-spi2-core mesa-vulkan-drivers
|
||||
2026-06-27T12:42:25.2718450Z | vulkan-icd xfonts-base
|
||||
2026-06-27T12:42:25.4233747Z The following NEW packages will be installed:
|
||||
2026-06-27T12:42:25.4237212Z at-spi2-common fonts-freefont-ttf fonts-ipafont-gothic fonts-liberation
|
||||
2026-06-27T12:42:25.4241241Z fonts-noto-color-emoji fonts-tlwg-loma-otf fonts-unifont fonts-wqy-zenhei
|
||||
2026-06-27T12:42:25.4243845Z libasound2-data libasound2t64 libatk-bridge2.0-0t64 libatk1.0-0t64
|
||||
2026-06-27T12:42:25.4245579Z libatspi2.0-0t64 libavahi-client3 libavahi-common-data libavahi-common3
|
||||
2026-06-27T12:42:25.4247707Z libcups2t64 libdrm-amdgpu1 libdrm-common libdrm-intel1 libdrm2 libfontenc1
|
||||
2026-06-27T12:42:25.4251351Z libgbm1 libgl1 libgl1-mesa-dri libglvnd0 libglx-mesa0 libglx0 libllvm20
|
||||
2026-06-27T12:42:25.4258016Z libnspr4 libnss3 libpciaccess0 libsensors-config libsensors5 libvulkan1
|
||||
2026-06-27T12:42:25.4259413Z libx11-xcb1 libxaw7 libxcb-dri3-0 libxcb-glx0 libxcb-present0 libxcb-randr0
|
||||
2026-06-27T12:42:25.4263382Z libxcb-sync1 libxcb-xfixes0 libxcomposite1 libxdamage1 libxfixes3 libxfont2
|
||||
2026-06-27T12:42:25.4265183Z libxi6 libxkbcommon0 libxkbfile1 libxmu6 libxmuu1 libxpm4 libxrandr2
|
||||
2026-06-27T12:42:25.4297330Z libxshmfence1 libxxf86vm1 mesa-libgallium x11-xkb-utils xauth
|
||||
2026-06-27T12:42:25.4298896Z xfonts-cyrillic xfonts-encodings xfonts-scalable xfonts-utils xkb-data
|
||||
2026-06-27T12:42:25.4300373Z xserver-common xvfb
|
||||
2026-06-27T12:42:25.5129656Z 0 upgraded, 66 newly installed, 0 to remove and 52 not upgraded.
|
||||
2026-06-27T12:42:25.5130411Z Need to get 79.3 MB of archives.
|
||||
2026-06-27T12:42:25.5131004Z After this operation, 303 MB of additional disk space will be used.
|
||||
2026-06-27T12:42:25.5131205Z Get:1 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-ipafont-gothic all 00303-21ubuntu1 [3513 kB]
|
||||
2026-06-27T12:42:25.6363669Z Get:2 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 xkb-data all 2.41-2ubuntu1.1 [397 kB]
|
||||
2026-06-27T12:42:25.6462726Z Get:3 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-common all 2.4.125-1ubuntu0.1~24.04.2 [9250 B]
|
||||
2026-06-27T12:42:25.6545833Z Get:4 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm2 amd64 2.4.125-1ubuntu0.1~24.04.2 [41.4 kB]
|
||||
2026-06-27T12:42:25.6632199Z Get:5 http://archive.ubuntu.com/ubuntu noble/main amd64 libsensors-config all 1:3.6.0-9build1 [5546 B]
|
||||
2026-06-27T12:42:25.6735421Z Get:6 http://archive.ubuntu.com/ubuntu noble/main amd64 libsensors5 amd64 1:3.6.0-9build1 [26.6 kB]
|
||||
2026-06-27T12:42:25.6929932Z Get:7 http://archive.ubuntu.com/ubuntu noble/main amd64 libxkbcommon0 amd64 1.6.0-1build1 [122 kB]
|
||||
2026-06-27T12:42:25.6993201Z Get:8 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmuu1 amd64 2:1.1.3-3build2 [8958 B]
|
||||
2026-06-27T12:42:25.7042021Z Get:9 http://archive.ubuntu.com/ubuntu noble/main amd64 xauth amd64 1:1.1.2-1build1 [25.6 kB]
|
||||
2026-06-27T12:42:25.7107659Z Get:10 http://archive.ubuntu.com/ubuntu noble/main amd64 at-spi2-common all 2.52.0-1build1 [8674 B]
|
||||
2026-06-27T12:42:25.7227545Z Get:11 http://archive.ubuntu.com/ubuntu noble/main amd64 fonts-freefont-ttf all 20211204+svn4273-2 [5641 kB]
|
||||
2026-06-27T12:42:25.8255695Z Get:12 http://archive.ubuntu.com/ubuntu noble/main amd64 fonts-liberation all 1:2.1.5-3 [1603 kB]
|
||||
2026-06-27T12:42:25.8379058Z Get:13 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 fonts-noto-color-emoji all 2.047-0ubuntu0.24.04.1 [9764 kB]
|
||||
2026-06-27T12:42:25.9081985Z Get:14 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-tlwg-loma-otf all 1:0.7.3-1 [107 kB]
|
||||
2026-06-27T12:42:25.9094890Z Get:15 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-unifont all 1:15.1.01-1build1 [2993 kB]
|
||||
2026-06-27T12:42:25.9325207Z Get:16 http://archive.ubuntu.com/ubuntu noble/universe amd64 fonts-wqy-zenhei all 0.9.45-8 [7472 kB]
|
||||
2026-06-27T12:42:26.1158222Z Get:17 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libasound2-data all 1.2.11-1ubuntu0.2 [21.3 kB]
|
||||
2026-06-27T12:42:26.1215127Z Get:18 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libasound2t64 amd64 1.2.11-1ubuntu0.2 [398 kB]
|
||||
2026-06-27T12:42:26.1355909Z Get:19 http://archive.ubuntu.com/ubuntu noble/main amd64 libatk1.0-0t64 amd64 2.52.0-1build1 [55.3 kB]
|
||||
2026-06-27T12:42:26.1358906Z Get:20 http://archive.ubuntu.com/ubuntu noble/main amd64 libxi6 amd64 2:1.8.1-1build1 [32.4 kB]
|
||||
2026-06-27T12:42:26.1365902Z Get:21 http://archive.ubuntu.com/ubuntu noble/main amd64 libatspi2.0-0t64 amd64 2.52.0-1build1 [80.5 kB]
|
||||
2026-06-27T12:42:26.1375497Z Get:22 http://archive.ubuntu.com/ubuntu noble/main amd64 libatk-bridge2.0-0t64 amd64 2.52.0-1build1 [66.0 kB]
|
||||
2026-06-27T12:42:26.1387543Z Get:23 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-common-data amd64 0.8-13ubuntu6.2 [30.1 kB]
|
||||
2026-06-27T12:42:26.1407507Z Get:24 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-common3 amd64 0.8-13ubuntu6.2 [23.4 kB]
|
||||
2026-06-27T12:42:26.1410460Z Get:25 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libavahi-client3 amd64 0.8-13ubuntu6.2 [26.8 kB]
|
||||
2026-06-27T12:42:26.1445165Z Get:26 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libcups2t64 amd64 2.4.7-1.2ubuntu7.14 [274 kB]
|
||||
2026-06-27T12:42:26.1639882Z Get:27 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-amdgpu1 amd64 2.4.125-1ubuntu0.1~24.04.2 [21.4 kB]
|
||||
2026-06-27T12:42:26.1938526Z Get:28 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libpciaccess0 amd64 0.17-3ubuntu0.24.04.2 [18.9 kB]
|
||||
2026-06-27T12:42:26.2277831Z Get:29 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libdrm-intel1 amd64 2.4.125-1ubuntu0.1~24.04.2 [63.9 kB]
|
||||
2026-06-27T12:42:26.2342459Z Get:30 http://archive.ubuntu.com/ubuntu noble/main amd64 libfontenc1 amd64 1:1.1.8-1build1 [14.0 kB]
|
||||
2026-06-27T12:42:26.2369735Z Get:31 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libllvm20 amd64 1:20.1.2-0ubuntu1~24.04.3 [30.6 MB]
|
||||
2026-06-27T12:42:26.5985620Z Get:32 http://archive.ubuntu.com/ubuntu noble/main amd64 libx11-xcb1 amd64 2:1.8.7-1build1 [7800 B]
|
||||
2026-06-27T12:42:26.6020891Z Get:33 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-dri3-0 amd64 1.15-1ubuntu2 [7142 B]
|
||||
2026-06-27T12:42:26.6039047Z Get:34 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-present0 amd64 1.15-1ubuntu2 [5676 B]
|
||||
2026-06-27T12:42:26.6060223Z Get:35 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-randr0 amd64 1.15-1ubuntu2 [17.9 kB]
|
||||
2026-06-27T12:42:26.6060579Z Get:36 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-sync1 amd64 1.15-1ubuntu2 [9312 B]
|
||||
2026-06-27T12:42:26.6061065Z Get:37 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-xfixes0 amd64 1.15-1ubuntu2 [10.2 kB]
|
||||
2026-06-27T12:42:26.6087470Z Get:38 http://archive.ubuntu.com/ubuntu noble/main amd64 libxshmfence1 amd64 1.3-1build5 [4764 B]
|
||||
2026-06-27T12:42:26.6176211Z Get:39 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 mesa-libgallium amd64 25.2.8-0ubuntu0.24.04.2 [10.8 MB]
|
||||
2026-06-27T12:42:26.7338875Z Get:40 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgbm1 amd64 25.2.8-0ubuntu0.24.04.2 [34.2 kB]
|
||||
2026-06-27T12:42:26.7357574Z Get:41 http://archive.ubuntu.com/ubuntu noble/main amd64 libvulkan1 amd64 1.3.275.0-1build1 [142 kB]
|
||||
2026-06-27T12:42:26.7361239Z Get:42 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libgl1-mesa-dri amd64 25.2.8-0ubuntu0.24.04.2 [37.9 kB]
|
||||
2026-06-27T12:42:26.7369723Z Get:43 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcb-glx0 amd64 1.15-1ubuntu2 [24.8 kB]
|
||||
2026-06-27T12:42:26.7378251Z Get:44 http://archive.ubuntu.com/ubuntu noble/main amd64 libxxf86vm1 amd64 1:1.1.4-1build4 [9282 B]
|
||||
2026-06-27T12:42:26.7397817Z Get:45 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libglx-mesa0 amd64 25.2.8-0ubuntu0.24.04.2 [110 kB]
|
||||
2026-06-27T12:42:26.7508675Z Get:46 http://archive.ubuntu.com/ubuntu noble/main amd64 libnspr4 amd64 2:4.35-1.1build1 [117 kB]
|
||||
2026-06-27T12:42:26.7576390Z Get:47 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 libnss3 amd64 2:3.98-1ubuntu0.1 [1445 kB]
|
||||
2026-06-27T12:42:26.7714931Z Get:48 http://archive.ubuntu.com/ubuntu noble/main amd64 libxmu6 amd64 2:1.1.3-3build2 [47.6 kB]
|
||||
2026-06-27T12:42:26.7795390Z Get:49 http://archive.ubuntu.com/ubuntu noble/main amd64 libxpm4 amd64 1:3.5.17-1build2 [36.5 kB]
|
||||
2026-06-27T12:42:26.7882920Z Get:50 http://archive.ubuntu.com/ubuntu noble/main amd64 libxaw7 amd64 2:1.0.14-1build2 [187 kB]
|
||||
2026-06-27T12:42:26.8006895Z Get:51 http://archive.ubuntu.com/ubuntu noble/main amd64 libxcomposite1 amd64 1:0.4.5-1build3 [6320 B]
|
||||
2026-06-27T12:42:26.8079162Z Get:52 http://archive.ubuntu.com/ubuntu noble/main amd64 libxdamage1 amd64 1:1.1.6-1build1 [6150 B]
|
||||
2026-06-27T12:42:26.8314698Z Get:53 http://archive.ubuntu.com/ubuntu noble/main amd64 libxfixes3 amd64 1:6.0.0-2build1 [10.8 kB]
|
||||
2026-06-27T12:42:26.8323993Z Get:54 http://archive.ubuntu.com/ubuntu noble/main amd64 libxfont2 amd64 1:2.0.6-1build1 [93.0 kB]
|
||||
2026-06-27T12:42:26.8355118Z Get:55 http://archive.ubuntu.com/ubuntu noble/main amd64 libxkbfile1 amd64 1:1.1.0-1build4 [70.0 kB]
|
||||
2026-06-27T12:42:26.8410792Z Get:56 http://archive.ubuntu.com/ubuntu noble/main amd64 libxrandr2 amd64 2:1.5.2-2build1 [19.7 kB]
|
||||
2026-06-27T12:42:26.8511647Z Get:57 http://archive.ubuntu.com/ubuntu noble/main amd64 x11-xkb-utils amd64 7.7+8build2 [170 kB]
|
||||
2026-06-27T12:42:26.8618626Z Get:58 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-encodings all 1:1.0.5-0ubuntu2 [578 kB]
|
||||
2026-06-27T12:42:26.8680866Z Get:59 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-utils amd64 1:7.7+6build3 [94.4 kB]
|
||||
2026-06-27T12:42:26.8762117Z Get:60 http://archive.ubuntu.com/ubuntu noble/universe amd64 xfonts-cyrillic all 1:1.0.5+nmu1 [384 kB]
|
||||
2026-06-27T12:42:26.8847457Z Get:61 http://archive.ubuntu.com/ubuntu noble/main amd64 xfonts-scalable all 1:1.0.3-1.3 [304 kB]
|
||||
2026-06-27T12:42:26.8969757Z Get:62 http://archive.ubuntu.com/ubuntu noble-updates/main amd64 xserver-common all 2:21.1.12-1ubuntu1.6 [34.7 kB]
|
||||
2026-06-27T12:42:26.9049558Z Get:63 http://archive.ubuntu.com/ubuntu noble/main amd64 libglvnd0 amd64 1.7.0-1build1 [69.6 kB]
|
||||
2026-06-27T12:42:26.9134147Z Get:64 http://archive.ubuntu.com/ubuntu noble/main amd64 libglx0 amd64 1.7.0-1build1 [38.6 kB]
|
||||
2026-06-27T12:42:26.9204845Z Get:65 http://archive.ubuntu.com/ubuntu noble/main amd64 libgl1 amd64 1.7.0-1build1 [102 kB]
|
||||
2026-06-27T12:42:26.9278987Z Get:66 http://archive.ubuntu.com/ubuntu noble-updates/universe amd64 xvfb amd64 2:21.1.12-1ubuntu1.6 [877 kB]
|
||||
2026-06-27T12:42:27.2488167Z debconf: delaying package configuration, since apt-utils is not installed
|
||||
2026-06-27T12:42:27.3377255Z Fetched 79.3 MB in 1s (53.8 MB/s)
|
||||
2026-06-27T12:42:27.3857288Z Selecting previously unselected package fonts-ipafont-gothic.
|
||||
2026-06-27T12:42:27.6198133Z (Reading database ...
|
||||
(Reading database ... 5%
|
||||
(Reading database ... 10%
|
||||
(Reading database ... 15%
|
||||
(Reading database ... 20%
|
||||
(Reading database ... 25%
|
||||
(Reading database ... 30%
|
||||
(Reading database ... 35%
|
||||
(Reading database ... 40%
|
||||
(Reading database ... 45%
|
||||
(Reading database ... 50%
|
||||
(Reading database ... 55%
|
||||
(Reading database ... 60%
|
||||
(Reading database ... 65%
|
||||
(Reading database ... 70%
|
||||
(Reading database ... 75%
|
||||
(Reading database ... 80%
|
||||
(Reading database ... 85%
|
||||
(Reading database ... 90%
|
||||
(Reading database ... 95%
|
||||
(Reading database ... 100%
|
||||
(Reading database ... 26518 files and directories currently installed.)
|
||||
2026-06-27T12:42:27.6237768Z Preparing to unpack .../00-fonts-ipafont-gothic_00303-21ubuntu1_all.deb ...
|
||||
2026-06-27T12:42:27.6421809Z Unpacking fonts-ipafont-gothic (00303-21ubuntu1) ...
|
||||
2026-06-27T12:42:28.0078517Z Selecting previously unselected package xkb-data.
|
||||
2026-06-27T12:42:28.0097698Z Preparing to unpack .../01-xkb-data_2.41-2ubuntu1.1_all.deb ...
|
||||
2026-06-27T12:42:28.0129055Z Unpacking xkb-data (2.41-2ubuntu1.1) ...
|
||||
2026-06-27T12:42:28.1018280Z Selecting previously unselected package libdrm-common.
|
||||
2026-06-27T12:42:28.1062798Z Preparing to unpack .../02-libdrm-common_2.4.125-1ubuntu0.1~24.04.2_all.deb ...
|
||||
2026-06-27T12:42:28.1117916Z Unpacking libdrm-common (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:42:28.1551716Z Selecting previously unselected package libdrm2:amd64.
|
||||
2026-06-27T12:42:28.1639777Z Preparing to unpack .../03-libdrm2_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T12:42:28.1685587Z Unpacking libdrm2:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:42:28.2307747Z Selecting previously unselected package libsensors-config.
|
||||
2026-06-27T12:42:28.2439684Z Preparing to unpack .../04-libsensors-config_1%3a3.6.0-9build1_all.deb ...
|
||||
2026-06-27T12:42:28.2499526Z Unpacking libsensors-config (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:42:28.3078359Z Selecting previously unselected package libsensors5:amd64.
|
||||
2026-06-27T12:42:28.3107541Z Preparing to unpack .../05-libsensors5_1%3a3.6.0-9build1_amd64.deb ...
|
||||
2026-06-27T12:42:28.3819139Z Unpacking libsensors5:amd64 (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:42:28.4178488Z Selecting previously unselected package libxkbcommon0:amd64.
|
||||
2026-06-27T12:42:28.4215092Z Preparing to unpack .../06-libxkbcommon0_1.6.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:28.4238014Z Unpacking libxkbcommon0:amd64 (1.6.0-1build1) ...
|
||||
2026-06-27T12:42:28.4713595Z Selecting previously unselected package libxmuu1:amd64.
|
||||
2026-06-27T12:42:28.4768420Z Preparing to unpack .../07-libxmuu1_2%3a1.1.3-3build2_amd64.deb ...
|
||||
2026-06-27T12:42:28.4804779Z Unpacking libxmuu1:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:42:28.5203908Z Selecting previously unselected package xauth.
|
||||
2026-06-27T12:42:28.5265672Z Preparing to unpack .../08-xauth_1%3a1.1.2-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:28.5328178Z Unpacking xauth (1:1.1.2-1build1) ...
|
||||
2026-06-27T12:42:28.5718490Z Selecting previously unselected package at-spi2-common.
|
||||
2026-06-27T12:42:28.5742146Z Preparing to unpack .../09-at-spi2-common_2.52.0-1build1_all.deb ...
|
||||
2026-06-27T12:42:28.5828326Z Unpacking at-spi2-common (2.52.0-1build1) ...
|
||||
2026-06-27T12:42:28.6092093Z Selecting previously unselected package fonts-freefont-ttf.
|
||||
2026-06-27T12:42:28.6116503Z Preparing to unpack .../10-fonts-freefont-ttf_20211204+svn4273-2_all.deb ...
|
||||
2026-06-27T12:42:28.6150409Z Unpacking fonts-freefont-ttf (20211204+svn4273-2) ...
|
||||
2026-06-27T12:42:28.8038588Z Selecting previously unselected package fonts-liberation.
|
||||
2026-06-27T12:42:28.8048978Z Preparing to unpack .../11-fonts-liberation_1%3a2.1.5-3_all.deb ...
|
||||
2026-06-27T12:42:28.8068328Z Unpacking fonts-liberation (1:2.1.5-3) ...
|
||||
2026-06-27T12:42:28.8689876Z Selecting previously unselected package fonts-noto-color-emoji.
|
||||
2026-06-27T12:42:28.8755479Z Preparing to unpack .../12-fonts-noto-color-emoji_2.047-0ubuntu0.24.04.1_all.deb ...
|
||||
2026-06-27T12:42:28.8787746Z Unpacking fonts-noto-color-emoji (2.047-0ubuntu0.24.04.1) ...
|
||||
2026-06-27T12:42:28.9801867Z Selecting previously unselected package fonts-tlwg-loma-otf.
|
||||
2026-06-27T12:42:28.9926938Z Preparing to unpack .../13-fonts-tlwg-loma-otf_1%3a0.7.3-1_all.deb ...
|
||||
2026-06-27T12:42:28.9967629Z Unpacking fonts-tlwg-loma-otf (1:0.7.3-1) ...
|
||||
2026-06-27T12:42:29.0458848Z Selecting previously unselected package fonts-unifont.
|
||||
2026-06-27T12:42:29.0479928Z Preparing to unpack .../14-fonts-unifont_1%3a15.1.01-1build1_all.deb ...
|
||||
2026-06-27T12:42:29.0505672Z Unpacking fonts-unifont (1:15.1.01-1build1) ...
|
||||
2026-06-27T12:42:29.2558792Z Selecting previously unselected package fonts-wqy-zenhei.
|
||||
2026-06-27T12:42:29.2587773Z Preparing to unpack .../15-fonts-wqy-zenhei_0.9.45-8_all.deb ...
|
||||
2026-06-27T12:42:29.2786634Z Unpacking fonts-wqy-zenhei (0.9.45-8) ...
|
||||
2026-06-27T12:42:30.0317229Z Selecting previously unselected package libasound2-data.
|
||||
2026-06-27T12:42:30.0366912Z Preparing to unpack .../16-libasound2-data_1.2.11-1ubuntu0.2_all.deb ...
|
||||
2026-06-27T12:42:30.0413457Z Unpacking libasound2-data (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:42:30.1076650Z Selecting previously unselected package libasound2t64:amd64.
|
||||
2026-06-27T12:42:30.1100026Z Preparing to unpack .../17-libasound2t64_1.2.11-1ubuntu0.2_amd64.deb ...
|
||||
2026-06-27T12:42:30.1156848Z Unpacking libasound2t64:amd64 (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:42:30.1732866Z Selecting previously unselected package libatk1.0-0t64:amd64.
|
||||
2026-06-27T12:42:30.1806585Z Preparing to unpack .../18-libatk1.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:30.1907212Z Unpacking libatk1.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:42:30.2576927Z Selecting previously unselected package libxi6:amd64.
|
||||
2026-06-27T12:42:30.2599670Z Preparing to unpack .../19-libxi6_2%3a1.8.1-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:30.2676831Z Unpacking libxi6:amd64 (2:1.8.1-1build1) ...
|
||||
2026-06-27T12:42:30.3196954Z Selecting previously unselected package libatspi2.0-0t64:amd64.
|
||||
2026-06-27T12:42:30.3319940Z Preparing to unpack .../20-libatspi2.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:30.3369133Z Unpacking libatspi2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:42:30.3929712Z Selecting previously unselected package libatk-bridge2.0-0t64:amd64.
|
||||
2026-06-27T12:42:30.4064142Z Preparing to unpack .../21-libatk-bridge2.0-0t64_2.52.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:30.4146783Z Unpacking libatk-bridge2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:42:30.4636950Z Selecting previously unselected package libavahi-common-data:amd64.
|
||||
2026-06-27T12:42:30.4640619Z Preparing to unpack .../22-libavahi-common-data_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T12:42:30.4757555Z Unpacking libavahi-common-data:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:42:30.5328702Z Selecting previously unselected package libavahi-common3:amd64.
|
||||
2026-06-27T12:42:30.5345440Z Preparing to unpack .../23-libavahi-common3_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T12:42:30.5402967Z Unpacking libavahi-common3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:42:30.6118371Z Selecting previously unselected package libavahi-client3:amd64.
|
||||
2026-06-27T12:42:30.6132671Z Preparing to unpack .../24-libavahi-client3_0.8-13ubuntu6.2_amd64.deb ...
|
||||
2026-06-27T12:42:30.6203926Z Unpacking libavahi-client3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:42:30.6818606Z Selecting previously unselected package libcups2t64:amd64.
|
||||
2026-06-27T12:42:30.6839034Z Preparing to unpack .../25-libcups2t64_2.4.7-1.2ubuntu7.14_amd64.deb ...
|
||||
2026-06-27T12:42:30.6894215Z Unpacking libcups2t64:amd64 (2.4.7-1.2ubuntu7.14) ...
|
||||
2026-06-27T12:42:30.7543613Z Selecting previously unselected package libdrm-amdgpu1:amd64.
|
||||
2026-06-27T12:42:30.7546740Z Preparing to unpack .../26-libdrm-amdgpu1_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T12:42:30.7614065Z Unpacking libdrm-amdgpu1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:42:30.8368776Z Selecting previously unselected package libpciaccess0:amd64.
|
||||
2026-06-27T12:42:30.8385177Z Preparing to unpack .../27-libpciaccess0_0.17-3ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:42:30.8438172Z Unpacking libpciaccess0:amd64 (0.17-3ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:42:30.8979017Z Selecting previously unselected package libdrm-intel1:amd64.
|
||||
2026-06-27T12:42:30.9018222Z Preparing to unpack .../28-libdrm-intel1_2.4.125-1ubuntu0.1~24.04.2_amd64.deb ...
|
||||
2026-06-27T12:42:30.9087993Z Unpacking libdrm-intel1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:42:30.9848000Z Selecting previously unselected package libfontenc1:amd64.
|
||||
2026-06-27T12:42:30.9881893Z Preparing to unpack .../29-libfontenc1_1%3a1.1.8-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:30.9928656Z Unpacking libfontenc1:amd64 (1:1.1.8-1build1) ...
|
||||
2026-06-27T12:42:31.0618525Z Selecting previously unselected package libllvm20:amd64.
|
||||
2026-06-27T12:42:31.0657798Z Preparing to unpack .../30-libllvm20_1%3a20.1.2-0ubuntu1~24.04.3_amd64.deb ...
|
||||
2026-06-27T12:42:31.0748654Z Unpacking libllvm20:amd64 (1:20.1.2-0ubuntu1~24.04.3) ...
|
||||
2026-06-27T12:42:31.9407961Z Selecting previously unselected package libx11-xcb1:amd64.
|
||||
2026-06-27T12:42:31.9428633Z Preparing to unpack .../31-libx11-xcb1_2%3a1.8.7-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:31.9481430Z Unpacking libx11-xcb1:amd64 (2:1.8.7-1build1) ...
|
||||
2026-06-27T12:42:32.0124848Z Selecting previously unselected package libxcb-dri3-0:amd64.
|
||||
2026-06-27T12:42:32.0167818Z Preparing to unpack .../32-libxcb-dri3-0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:42:32.0224927Z Unpacking libxcb-dri3-0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:32.1002094Z Selecting previously unselected package libxcb-present0:amd64.
|
||||
2026-06-27T12:42:32.1006792Z Preparing to unpack .../33-libxcb-present0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:42:32.1059302Z Unpacking libxcb-present0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:32.1657465Z Selecting previously unselected package libxcb-randr0:amd64.
|
||||
2026-06-27T12:42:32.1741067Z Preparing to unpack .../34-libxcb-randr0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:42:32.1795263Z Unpacking libxcb-randr0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:32.2424144Z Selecting previously unselected package libxcb-sync1:amd64.
|
||||
2026-06-27T12:42:32.2537994Z Preparing to unpack .../35-libxcb-sync1_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:42:32.2585549Z Unpacking libxcb-sync1:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:32.3444651Z Selecting previously unselected package libxcb-xfixes0:amd64.
|
||||
2026-06-27T12:42:32.3475143Z Preparing to unpack .../36-libxcb-xfixes0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:42:32.3548307Z Unpacking libxcb-xfixes0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:32.4118123Z Selecting previously unselected package libxshmfence1:amd64.
|
||||
2026-06-27T12:42:32.4158253Z Preparing to unpack .../37-libxshmfence1_1.3-1build5_amd64.deb ...
|
||||
2026-06-27T12:42:32.4207942Z Unpacking libxshmfence1:amd64 (1.3-1build5) ...
|
||||
2026-06-27T12:42:32.4759063Z Selecting previously unselected package mesa-libgallium:amd64.
|
||||
2026-06-27T12:42:32.4817665Z Preparing to unpack .../38-mesa-libgallium_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:42:32.4866043Z Unpacking mesa-libgallium:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:42:32.7788108Z Selecting previously unselected package libgbm1:amd64.
|
||||
2026-06-27T12:42:32.7804249Z Preparing to unpack .../39-libgbm1_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:42:32.7858343Z Unpacking libgbm1:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:42:32.8238390Z Selecting previously unselected package libvulkan1:amd64.
|
||||
2026-06-27T12:42:32.8269746Z Preparing to unpack .../40-libvulkan1_1.3.275.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:32.8324163Z Unpacking libvulkan1:amd64 (1.3.275.0-1build1) ...
|
||||
2026-06-27T12:42:32.8941375Z Selecting previously unselected package libgl1-mesa-dri:amd64.
|
||||
2026-06-27T12:42:32.9029043Z Preparing to unpack .../41-libgl1-mesa-dri_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:42:32.9289678Z Unpacking libgl1-mesa-dri:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:42:33.0142624Z Selecting previously unselected package libxcb-glx0:amd64.
|
||||
2026-06-27T12:42:33.0188872Z Preparing to unpack .../42-libxcb-glx0_1.15-1ubuntu2_amd64.deb ...
|
||||
2026-06-27T12:42:33.0265177Z Unpacking libxcb-glx0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:33.0683451Z Selecting previously unselected package libxxf86vm1:amd64.
|
||||
2026-06-27T12:42:33.0711811Z Preparing to unpack .../43-libxxf86vm1_1%3a1.1.4-1build4_amd64.deb ...
|
||||
2026-06-27T12:42:33.0748267Z Unpacking libxxf86vm1:amd64 (1:1.1.4-1build4) ...
|
||||
2026-06-27T12:42:33.1179810Z Selecting previously unselected package libglx-mesa0:amd64.
|
||||
2026-06-27T12:42:33.1201723Z Preparing to unpack .../44-libglx-mesa0_25.2.8-0ubuntu0.24.04.2_amd64.deb ...
|
||||
2026-06-27T12:42:33.1288120Z Unpacking libglx-mesa0:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:42:33.2047411Z Selecting previously unselected package libnspr4:amd64.
|
||||
2026-06-27T12:42:33.2270507Z Preparing to unpack .../45-libnspr4_2%3a4.35-1.1build1_amd64.deb ...
|
||||
2026-06-27T12:42:33.2326839Z Unpacking libnspr4:amd64 (2:4.35-1.1build1) ...
|
||||
2026-06-27T12:42:33.3667232Z Selecting previously unselected package libnss3:amd64.
|
||||
2026-06-27T12:42:33.3744324Z Preparing to unpack .../46-libnss3_2%3a3.98-1ubuntu0.1_amd64.deb ...
|
||||
2026-06-27T12:42:33.3818801Z Unpacking libnss3:amd64 (2:3.98-1ubuntu0.1) ...
|
||||
2026-06-27T12:42:33.5595802Z Selecting previously unselected package libxmu6:amd64.
|
||||
2026-06-27T12:42:33.5600823Z Preparing to unpack .../47-libxmu6_2%3a1.1.3-3build2_amd64.deb ...
|
||||
2026-06-27T12:42:33.5659236Z Unpacking libxmu6:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:42:33.6225693Z Selecting previously unselected package libxpm4:amd64.
|
||||
2026-06-27T12:42:33.6268435Z Preparing to unpack .../48-libxpm4_1%3a3.5.17-1build2_amd64.deb ...
|
||||
2026-06-27T12:42:33.6295398Z Unpacking libxpm4:amd64 (1:3.5.17-1build2) ...
|
||||
2026-06-27T12:42:33.6778049Z Selecting previously unselected package libxaw7:amd64.
|
||||
2026-06-27T12:42:33.6913535Z Preparing to unpack .../49-libxaw7_2%3a1.0.14-1build2_amd64.deb ...
|
||||
2026-06-27T12:42:33.6988187Z Unpacking libxaw7:amd64 (2:1.0.14-1build2) ...
|
||||
2026-06-27T12:42:33.7677693Z Selecting previously unselected package libxcomposite1:amd64.
|
||||
2026-06-27T12:42:33.8471644Z Preparing to unpack .../50-libxcomposite1_1%3a0.4.5-1build3_amd64.deb ...
|
||||
2026-06-27T12:42:33.8518746Z Unpacking libxcomposite1:amd64 (1:0.4.5-1build3) ...
|
||||
2026-06-27T12:42:33.9068983Z Selecting previously unselected package libxdamage1:amd64.
|
||||
2026-06-27T12:42:33.9088700Z Preparing to unpack .../51-libxdamage1_1%3a1.1.6-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:33.9118470Z Unpacking libxdamage1:amd64 (1:1.1.6-1build1) ...
|
||||
2026-06-27T12:42:33.9647636Z Selecting previously unselected package libxfixes3:amd64.
|
||||
2026-06-27T12:42:33.9667975Z Preparing to unpack .../52-libxfixes3_1%3a6.0.0-2build1_amd64.deb ...
|
||||
2026-06-27T12:42:33.9768095Z Unpacking libxfixes3:amd64 (1:6.0.0-2build1) ...
|
||||
2026-06-27T12:42:34.0340421Z Selecting previously unselected package libxfont2:amd64.
|
||||
2026-06-27T12:42:34.0368012Z Preparing to unpack .../53-libxfont2_1%3a2.0.6-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:34.0418595Z Unpacking libxfont2:amd64 (1:2.0.6-1build1) ...
|
||||
2026-06-27T12:42:34.1118221Z Selecting previously unselected package libxkbfile1:amd64.
|
||||
2026-06-27T12:42:34.1158593Z Preparing to unpack .../54-libxkbfile1_1%3a1.1.0-1build4_amd64.deb ...
|
||||
2026-06-27T12:42:34.1217883Z Unpacking libxkbfile1:amd64 (1:1.1.0-1build4) ...
|
||||
2026-06-27T12:42:34.1868078Z Selecting previously unselected package libxrandr2:amd64.
|
||||
2026-06-27T12:42:34.1917752Z Preparing to unpack .../55-libxrandr2_2%3a1.5.2-2build1_amd64.deb ...
|
||||
2026-06-27T12:42:34.1998183Z Unpacking libxrandr2:amd64 (2:1.5.2-2build1) ...
|
||||
2026-06-27T12:42:34.2688187Z Selecting previously unselected package x11-xkb-utils.
|
||||
2026-06-27T12:42:34.2748624Z Preparing to unpack .../56-x11-xkb-utils_7.7+8build2_amd64.deb ...
|
||||
2026-06-27T12:42:34.2817820Z Unpacking x11-xkb-utils (7.7+8build2) ...
|
||||
2026-06-27T12:42:34.3428173Z Selecting previously unselected package xfonts-encodings.
|
||||
2026-06-27T12:42:34.3448995Z Preparing to unpack .../57-xfonts-encodings_1%3a1.0.5-0ubuntu2_all.deb ...
|
||||
2026-06-27T12:42:34.3506636Z Unpacking xfonts-encodings (1:1.0.5-0ubuntu2) ...
|
||||
2026-06-27T12:42:34.3972741Z Selecting previously unselected package xfonts-utils.
|
||||
2026-06-27T12:42:34.3973520Z Preparing to unpack .../58-xfonts-utils_1%3a7.7+6build3_amd64.deb ...
|
||||
2026-06-27T12:42:34.4022644Z Unpacking xfonts-utils (1:7.7+6build3) ...
|
||||
2026-06-27T12:42:34.4524903Z Selecting previously unselected package xfonts-cyrillic.
|
||||
2026-06-27T12:42:34.4525515Z Preparing to unpack .../59-xfonts-cyrillic_1%3a1.0.5+nmu1_all.deb ...
|
||||
2026-06-27T12:42:34.4579039Z Unpacking xfonts-cyrillic (1:1.0.5+nmu1) ...
|
||||
2026-06-27T12:42:34.5111163Z Selecting previously unselected package xfonts-scalable.
|
||||
2026-06-27T12:42:34.5111839Z Preparing to unpack .../60-xfonts-scalable_1%3a1.0.3-1.3_all.deb ...
|
||||
2026-06-27T12:42:34.5148689Z Unpacking xfonts-scalable (1:1.0.3-1.3) ...
|
||||
2026-06-27T12:42:34.5958290Z Selecting previously unselected package xserver-common.
|
||||
2026-06-27T12:42:34.6007983Z Preparing to unpack .../61-xserver-common_2%3a21.1.12-1ubuntu1.6_all.deb ...
|
||||
2026-06-27T12:42:34.6176652Z Unpacking xserver-common (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:42:34.7108133Z Selecting previously unselected package libglvnd0:amd64.
|
||||
2026-06-27T12:42:34.7134211Z Preparing to unpack .../62-libglvnd0_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:34.7190171Z Unpacking libglvnd0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:42:34.8060881Z Selecting previously unselected package libglx0:amd64.
|
||||
2026-06-27T12:42:34.8077235Z Preparing to unpack .../63-libglx0_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:34.8159862Z Unpacking libglx0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:42:34.8747543Z Selecting previously unselected package libgl1:amd64.
|
||||
2026-06-27T12:42:34.8797267Z Preparing to unpack .../64-libgl1_1.7.0-1build1_amd64.deb ...
|
||||
2026-06-27T12:42:34.8974063Z Unpacking libgl1:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:42:34.9858440Z Selecting previously unselected package xvfb.
|
||||
2026-06-27T12:42:34.9883642Z Preparing to unpack .../65-xvfb_2%3a21.1.12-1ubuntu1.6_amd64.deb ...
|
||||
2026-06-27T12:42:34.9985642Z Unpacking xvfb (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:42:35.1588528Z Setting up libxcb-dri3-0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:35.1589172Z Setting up libx11-xcb1:amd64 (2:1.8.7-1build1) ...
|
||||
2026-06-27T12:42:35.1589649Z Setting up libpciaccess0:amd64 (0.17-3ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:42:35.1692511Z Setting up libxmu6:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:42:35.1958988Z Setting up libxdamage1:amd64 (1:1.1.6-1build1) ...
|
||||
2026-06-27T12:42:35.2079330Z Setting up libxcb-xfixes0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:35.2202596Z Setting up libxpm4:amd64 (1:3.5.17-1build2) ...
|
||||
2026-06-27T12:42:35.2337323Z Setting up libxi6:amd64 (2:1.8.1-1build1) ...
|
||||
2026-06-27T12:42:35.2428819Z Setting up fonts-noto-color-emoji (2.047-0ubuntu0.24.04.1) ...
|
||||
2026-06-27T12:42:35.2831781Z Setting up libglvnd0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:42:35.2941931Z Setting up libxcb-glx0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:35.3148327Z Setting up libsensors-config (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:42:35.3340874Z Setting up fonts-wqy-zenhei (0.9.45-8) ...
|
||||
2026-06-27T12:42:35.3736402Z Setting up fonts-freefont-ttf (20211204+svn4273-2) ...
|
||||
2026-06-27T12:42:35.4196321Z Setting up xkb-data (2.41-2ubuntu1.1) ...
|
||||
2026-06-27T12:42:35.4301010Z Setting up libxaw7:amd64 (2:1.0.14-1build2) ...
|
||||
2026-06-27T12:42:35.4371512Z Setting up libxxf86vm1:amd64 (1:1.1.4-1build4) ...
|
||||
2026-06-27T12:42:35.4470403Z Setting up libxcb-present0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:35.4599620Z Setting up libasound2-data (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:42:35.4672816Z Setting up libfontenc1:amd64 (1:1.1.8-1build1) ...
|
||||
2026-06-27T12:42:35.4751887Z Setting up libasound2t64:amd64 (1.2.11-1ubuntu0.2) ...
|
||||
2026-06-27T12:42:35.4839264Z Setting up fonts-tlwg-loma-otf (1:0.7.3-1) ...
|
||||
2026-06-27T12:42:35.4905170Z Setting up libnspr4:amd64 (2:4.35-1.1build1) ...
|
||||
2026-06-27T12:42:35.4979521Z Setting up libxfixes3:amd64 (1:6.0.0-2build1) ...
|
||||
2026-06-27T12:42:35.5080443Z Setting up libxcb-sync1:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:35.5211610Z Setting up libavahi-common-data:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:42:35.5372464Z Setting up libatspi2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:42:35.5591662Z Setting up xfonts-encodings (1:1.0.5-0ubuntu2) ...
|
||||
2026-06-27T12:42:35.5750647Z Setting up libxrandr2:amd64 (2:1.5.2-2build1) ...
|
||||
2026-06-27T12:42:35.6034664Z Setting up libllvm20:amd64 (1:20.1.2-0ubuntu1~24.04.3) ...
|
||||
2026-06-27T12:42:35.6301672Z Setting up libsensors5:amd64 (1:3.6.0-9build1) ...
|
||||
2026-06-27T12:42:35.6447069Z Setting up libvulkan1:amd64 (1.3.275.0-1build1) ...
|
||||
2026-06-27T12:42:35.6655707Z Setting up fonts-ipafont-gothic (00303-21ubuntu1) ...
|
||||
2026-06-27T12:42:35.6907479Z 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
|
||||
2026-06-27T12:42:35.6989085Z Setting up libxshmfence1:amd64 (1.3-1build5) ...
|
||||
2026-06-27T12:42:35.7119704Z Setting up at-spi2-common (2.52.0-1build1) ...
|
||||
2026-06-27T12:42:35.7217793Z Setting up libxcb-randr0:amd64 (1.15-1ubuntu2) ...
|
||||
2026-06-27T12:42:35.7369852Z Setting up fonts-liberation (1:2.1.5-3) ...
|
||||
2026-06-27T12:42:35.7480495Z Setting up libxkbfile1:amd64 (1:1.1.0-1build4) ...
|
||||
2026-06-27T12:42:35.7539430Z Setting up libdrm-common (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:42:35.7628279Z Setting up libxcomposite1:amd64 (1:0.4.5-1build3) ...
|
||||
2026-06-27T12:42:35.7742121Z Setting up libxfont2:amd64 (1:2.0.6-1build1) ...
|
||||
2026-06-27T12:42:35.7852365Z Setting up libxmuu1:amd64 (2:1.1.3-3build2) ...
|
||||
2026-06-27T12:42:35.7951874Z Setting up fonts-unifont (1:15.1.01-1build1) ...
|
||||
2026-06-27T12:42:35.8058196Z Setting up libxkbcommon0:amd64 (1.6.0-1build1) ...
|
||||
2026-06-27T12:42:35.8147865Z Setting up libatk1.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:42:35.8247475Z Setting up x11-xkb-utils (7.7+8build2) ...
|
||||
2026-06-27T12:42:35.8328368Z Setting up libavahi-common3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:42:35.8419054Z Setting up libnss3:amd64 (2:3.98-1ubuntu0.1) ...
|
||||
2026-06-27T12:42:35.8494855Z Setting up xfonts-utils (1:7.7+6build3) ...
|
||||
2026-06-27T12:42:35.8638363Z Setting up libdrm2:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:42:35.8717765Z Setting up xauth (1:1.1.2-1build1) ...
|
||||
2026-06-27T12:42:35.8802130Z Setting up xfonts-cyrillic (1:1.0.5+nmu1) ...
|
||||
2026-06-27T12:42:35.9718793Z Setting up xserver-common (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:42:35.9830883Z Setting up libavahi-client3:amd64 (0.8-13ubuntu6.2) ...
|
||||
2026-06-27T12:42:35.9951003Z Setting up xfonts-scalable (1:1.0.3-1.3) ...
|
||||
2026-06-27T12:42:36.1068294Z Setting up libdrm-amdgpu1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:42:36.1212524Z Setting up libatk-bridge2.0-0t64:amd64 (2.52.0-1build1) ...
|
||||
2026-06-27T12:42:36.1320412Z Setting up libdrm-intel1:amd64 (2.4.125-1ubuntu0.1~24.04.2) ...
|
||||
2026-06-27T12:42:36.1442210Z Setting up libcups2t64:amd64 (2.4.7-1.2ubuntu7.14) ...
|
||||
2026-06-27T12:42:36.1516259Z Setting up mesa-libgallium:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:42:36.1630424Z Setting up libgbm1:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:42:36.1752358Z Setting up libgl1-mesa-dri:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:42:36.1909451Z Setting up libglx-mesa0:amd64 (25.2.8-0ubuntu0.24.04.2) ...
|
||||
2026-06-27T12:42:36.2058632Z Setting up libglx0:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:42:36.2159218Z Setting up libgl1:amd64 (1.7.0-1build1) ...
|
||||
2026-06-27T12:42:36.2299122Z Setting up xvfb (2:21.1.12-1ubuntu1.6) ...
|
||||
2026-06-27T12:42:36.2439140Z Processing triggers for fontconfig (2.15.0-1.1ubuntu2) ...
|
||||
2026-06-27T12:42:36.4498709Z Processing triggers for libc-bin (2.39-0ubuntu8.7) ...
|
||||
2026-06-27T12:42:36.9655653Z ::group::Run set -e
|
||||
2026-06-27T12:42:36.9656011Z set -e
|
||||
2026-06-27T12:42:36.9656284Z EXPECTED_VERSION="$(git rev-parse --short HEAD)"
|
||||
2026-06-27T12:42:36.9656391Z for i in $(seq 1 60); do
|
||||
2026-06-27T12:42:36.9656478Z VERSION_BODY="$(curl -fsS "http://${DEPLOY_HOST}/taxbaik/version.txt" || true)"
|
||||
2026-06-27T12:42:36.9656576Z BLOG_STATUS="$(curl -s -o /dev/null -w '%{http_code}' "http://${DEPLOY_HOST}/taxbaik/blog/accountant-mistakes-5" || true)"
|
||||
2026-06-27T12:42:36.9656681Z if echo "$VERSION_BODY" | grep -q "Version: ${EXPECTED_VERSION}" && [ "$BLOG_STATUS" = "200" ]; then
|
||||
2026-06-27T12:42:36.9656780Z echo "Deployment is ready for ${EXPECTED_VERSION}"
|
||||
2026-06-27T12:42:36.9656860Z exit 0
|
||||
2026-06-27T12:42:36.9656934Z fi
|
||||
2026-06-27T12:42:36.9657013Z echo "Waiting for deployment ${EXPECTED_VERSION}; blog status=${BLOG_STATUS}; version=${VERSION_BODY}"
|
||||
2026-06-27T12:42:36.9657148Z sleep 10
|
||||
2026-06-27T12:42:36.9657225Z done
|
||||
2026-06-27T12:42:36.9657290Z echo "Deployment did not publish expected version ${EXPECTED_VERSION} in time" >&2
|
||||
2026-06-27T12:42:36.9657373Z exit 1
|
||||
2026-06-27T12:42:36.9657448Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:42:36.9657553Z env:
|
||||
2026-06-27T12:42:36.9657624Z DEPLOY_HOST: ***
|
||||
2026-06-27T12:42:36.9657841Z ::endgroup::
|
||||
2026-06-27T12:42:37.1270652Z curl: (22) The requested URL returned error: 502
|
||||
2026-06-27T12:42:37.1393546Z Waiting for deployment 0c49e12; blog status=502; version=
|
||||
2026-06-27T12:42:47.1480594Z curl: (22) The requested URL returned error: 502
|
||||
2026-06-27T12:42:47.1587988Z Waiting for deployment 0c49e12; blog status=502; version=
|
||||
2026-06-27T12:42:57.1786862Z curl: (22) The requested URL returned error: 502
|
||||
2026-06-27T12:42:57.2057517Z Waiting for deployment 0c49e12; blog status=502; version=
|
||||
2026-06-27T12:43:07.3227793Z Deployment is ready for 0c49e12
|
||||
2026-06-27T12:43:07.4327814Z ::group::Run npm run test:e2e
|
||||
2026-06-27T12:43:07.4328144Z npm run test:e2e
|
||||
2026-06-27T12:43:07.4328257Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:43:07.4328377Z env:
|
||||
2026-06-27T12:43:07.4328501Z E2E_BASE_URL: http://***/taxbaik
|
||||
2026-06-27T12:43:07.4328672Z E2E_ADMIN_USERNAME: admin
|
||||
2026-06-27T12:43:07.4328817Z E2E_ADMIN_PASSWORD: ***
|
||||
2026-06-27T12:43:07.4328908Z ::endgroup::
|
||||
2026-06-27T12:43:07.6807574Z
|
||||
2026-06-27T12:43:07.6808279Z > test:e2e
|
||||
2026-06-27T12:43:07.6808406Z > playwright test
|
||||
2026-06-27T12:43:07.6808493Z
|
||||
2026-06-27T12:43:09.8499533Z
|
||||
2026-06-27T12:43:09.8500502Z Running 8 tests using 1 worker
|
||||
2026-06-27T12:43:09.8502145Z
|
||||
2026-06-27T12:43:13.9066399Z ✓ 1 [chromium] › tests/e2e/admin-login.spec.ts:8:7 › admin authentication › logs in through the real browser UI and reaches dashboard (2.5s)
|
||||
2026-06-27T12:43:14.2273264Z - 2 [chromium] › tests/e2e/admin-password-change.spec.ts:10:7 › admin password change › changes password through the real admin UI
|
||||
2026-06-27T12:43:16.4655020Z ✓ 3 [chromium] › tests/e2e/admin-smoke.spec.ts:9:7 › admin smoke › navigates the main admin menus without circuit errors (2.2s)
|
||||
2026-06-27T12:43:17.7178256Z ✓ 4 [chromium] › tests/e2e/blog-seo.spec.ts:6:7 › blog seo › exposes title description and canonical on blog detail pages (1.2s)
|
||||
2026-06-27T12:43:17.7946524Z ✓ 5 [chromium] › tests/e2e/contact-submit.spec.ts:9:7 › contact submit › creates an inquiry through the public API (56ms)
|
||||
2026-06-27T12:43:19.6302888Z ✓ 6 [chromium] › tests/e2e/contact-submit.spec.ts:26:7 › contact submit › creates an inquiry and shows it in admin list (1.8s)
|
||||
2026-06-27T12:43:21.5037753Z ✘ 7 [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links (1.7s)
|
||||
2026-06-27T12:43:24.4570513Z ✘ 8 [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links (retry #1) (1.7s)
|
||||
2026-06-27T12:43:27.0178380Z ✓ 9 [chromium] › tests/e2e/public-smoke.spec.ts:6:7 › public smoke › loads the main public pages with SEO basics (1.6s)
|
||||
2026-06-27T12:43:27.0734184Z
|
||||
2026-06-27T12:43:27.0739702Z
|
||||
2026-06-27T12:43:27.0754918Z 1) [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links
|
||||
2026-06-27T12:43:27.0755219Z
|
||||
2026-06-27T12:43:27.0755634Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:43:27.0755784Z
|
||||
2026-06-27T12:43:27.0755953Z Locator: getByText('010-9876-5432')
|
||||
2026-06-27T12:43:27.0756397Z Expected: visible
|
||||
2026-06-27T12:43:27.0756564Z Error: strict mode violation: getByText('010-9876-5432') resolved to 2 elements:
|
||||
2026-06-27T12:43:27.0756702Z 1) <td>010-9876-5432</td> aka getByRole('cell', { name: '-9876-5432' }).first()
|
||||
2026-06-27T12:43:27.0756805Z 2) <td>010-9876-5432</td> aka getByRole('cell', { name: '-9876-5432' }).nth(1)
|
||||
2026-06-27T12:43:27.0756898Z
|
||||
2026-06-27T12:43:27.0757160Z Call log:
|
||||
2026-06-27T12:43:27.0757294Z [2m - Expect "toBeVisible" with timeout 10000ms[22m
|
||||
2026-06-27T12:43:27.0757388Z [2m - waiting for getByText('010-9876-5432')[22m
|
||||
2026-06-27T12:43:27.0757471Z
|
||||
2026-06-27T12:43:27.0757579Z
|
||||
2026-06-27T12:43:27.0757653Z 37 | await expect(page).toHaveURL(/\/taxbaik\/admin\/inquiries\/\d+$/);
|
||||
2026-06-27T12:43:27.0757761Z 38 | await expect(page.getByText(name)).toBeVisible();
|
||||
2026-06-27T12:43:27.0758016Z > 39 | await expect(page.getByText(phone)).toBeVisible();
|
||||
2026-06-27T12:43:27.0758137Z | ^
|
||||
2026-06-27T12:43:27.0758222Z 40 | await expect(page.getByText(message)).toBeVisible();
|
||||
2026-06-27T12:43:27.0758362Z 41 | await expect(page.getByRole('button', { name: '신규' })).toBeVisible();
|
||||
2026-06-27T12:43:27.0758486Z 42 | await expect(page.getByRole('button', { name: '연락함' })).toBeVisible();
|
||||
2026-06-27T12:43:27.0758736Z at /workspace/***/taxbaik/tests/e2e/inquiry-detail.spec.ts:39:41
|
||||
2026-06-27T12:43:27.0758856Z
|
||||
2026-06-27T12:43:27.0758956Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0759123Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/test-failed-1.png
|
||||
2026-06-27T12:43:27.0759230Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0759366Z
|
||||
2026-06-27T12:43:27.0759613Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0759745Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/video.webm
|
||||
2026-06-27T12:43:27.0759877Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0760025Z
|
||||
2026-06-27T12:43:27.0760147Z Error Context: test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/error-context.md
|
||||
2026-06-27T12:43:27.0760419Z
|
||||
2026-06-27T12:43:27.0760567Z attachment #4: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0760724Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/trace.zip
|
||||
2026-06-27T12:43:27.0760842Z Usage:
|
||||
2026-06-27T12:43:27.0760926Z
|
||||
2026-06-27T12:43:27.0761014Z npx playwright show-trace test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium/trace.zip
|
||||
2026-06-27T12:43:27.0761278Z
|
||||
2026-06-27T12:43:27.0761371Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0761541Z
|
||||
2026-06-27T12:43:27.0761726Z Retry #1 ───────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0761855Z
|
||||
2026-06-27T12:43:27.0761950Z Error: [2mexpect([22m[31mlocator[39m[2m).[22mtoBeVisible[2m([22m[2m)[22m failed
|
||||
2026-06-27T12:43:27.0762048Z
|
||||
2026-06-27T12:43:27.0762210Z Locator: getByText('Detail-1782564202674')
|
||||
2026-06-27T12:43:27.0762376Z Expected: visible
|
||||
2026-06-27T12:43:27.0763861Z Error: strict mode violation: getByText('Detail-1782564202674') resolved to 2 elements:
|
||||
2026-06-27T12:43:27.0764174Z 1) <p class="mud-typography mud-typography-body1">Detail-1782564202674</p> aka getByText('Detail-1782564202674', { exact: true })
|
||||
2026-06-27T12:43:27.0764386Z 2) <p class="mud-typography mud-typography-body1">detail-1782564202674@example.com</p> aka getByText('detail-1782564202674@example.')
|
||||
2026-06-27T12:43:27.0764707Z
|
||||
2026-06-27T12:43:27.0764932Z Call log:
|
||||
2026-06-27T12:43:27.0765090Z [2m - Expect "toBeVisible" with timeout 10000ms[22m
|
||||
2026-06-27T12:43:27.0765268Z [2m - waiting for getByText('Detail-1782564202674')[22m
|
||||
2026-06-27T12:43:27.0765404Z
|
||||
2026-06-27T12:43:27.0765477Z
|
||||
2026-06-27T12:43:27.0765561Z 36 |
|
||||
2026-06-27T12:43:27.0765640Z 37 | await expect(page).toHaveURL(/\/taxbaik\/admin\/inquiries\/\d+$/);
|
||||
2026-06-27T12:43:27.0765780Z > 38 | await expect(page.getByText(name)).toBeVisible();
|
||||
2026-06-27T12:43:27.0765937Z | ^
|
||||
2026-06-27T12:43:27.0766015Z 39 | await expect(page.getByText(phone)).toBeVisible();
|
||||
2026-06-27T12:43:27.0766304Z 40 | await expect(page.getByText(message)).toBeVisible();
|
||||
2026-06-27T12:43:27.0766387Z 41 | await expect(page.getByRole('button', { name: '신규' })).toBeVisible();
|
||||
2026-06-27T12:43:27.0766490Z at /workspace/***/taxbaik/tests/e2e/inquiry-detail.spec.ts:38:40
|
||||
2026-06-27T12:43:27.0766594Z
|
||||
2026-06-27T12:43:27.0766702Z attachment #1: screenshot (image/png) ──────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0766841Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/test-failed-1.png
|
||||
2026-06-27T12:43:27.0767062Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0767201Z
|
||||
2026-06-27T12:43:27.0767273Z attachment #2: video (video/webm) ──────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0767413Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/video.webm
|
||||
2026-06-27T12:43:27.0767512Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0767633Z
|
||||
2026-06-27T12:43:27.0767700Z Error Context: test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/error-context.md
|
||||
2026-06-27T12:43:27.0767860Z
|
||||
2026-06-27T12:43:27.0767950Z attachment #4: trace (application/zip) ─────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0768068Z test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/trace.zip
|
||||
2026-06-27T12:43:27.0768191Z Usage:
|
||||
2026-06-27T12:43:27.0768261Z
|
||||
2026-06-27T12:43:27.0768346Z npx playwright show-trace test-results/inquiry-detail-inquiry-det-43d69-uiry-and-admin-action-links-chromium-retry1/trace.zip
|
||||
2026-06-27T12:43:27.0768434Z
|
||||
2026-06-27T12:43:27.0768497Z ────────────────────────────────────────────────────────────────────────────────────────────────
|
||||
2026-06-27T12:43:27.0768627Z
|
||||
2026-06-27T12:43:27.0768821Z 1 failed
|
||||
2026-06-27T12:43:27.0768915Z [chromium] › tests/e2e/inquiry-detail.spec.ts:9:7 › inquiry detail › shows the created inquiry and admin action links
|
||||
2026-06-27T12:43:27.0769028Z 1 skipped
|
||||
2026-06-27T12:43:27.0769138Z 6 passed (17.7s)
|
||||
2026-06-27T12:43:27.1452880Z ❌ Failure - Main Browser E2E verification
|
||||
2026-06-27T12:43:27.1577590Z exitcode '1': failure
|
||||
2026-06-27T12:43:27.2549906Z ::group::Run echo "Executed tests:"
|
||||
2026-06-27T12:43:27.2550319Z echo "Executed tests:"
|
||||
2026-06-27T12:43:27.2550467Z echo "- admin-login"
|
||||
2026-06-27T12:43:27.2550592Z echo "- admin-smoke"
|
||||
2026-06-27T12:43:27.2550734Z echo "- public-smoke"
|
||||
2026-06-27T12:43:27.2550826Z echo "- blog-seo"
|
||||
2026-06-27T12:43:27.2550902Z echo "- contact-submit"
|
||||
2026-06-27T12:43:27.2550974Z echo "- inquiry-detail"
|
||||
2026-06-27T12:43:27.2551043Z echo "- admin-password-change"
|
||||
2026-06-27T12:43:27.2551125Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T12:43:27.2551220Z ::endgroup::
|
||||
2026-06-27T12:43:27.3085319Z Executed tests:
|
||||
2026-06-27T12:43:27.3086315Z - admin-login
|
||||
2026-06-27T12:43:27.3086474Z - admin-smoke
|
||||
2026-06-27T12:43:27.3086563Z - public-smoke
|
||||
2026-06-27T12:43:27.3086658Z - blog-seo
|
||||
2026-06-27T12:43:27.3086752Z - contact-submit
|
||||
2026-06-27T12:43:27.3086871Z - inquiry-detail
|
||||
2026-06-27T12:43:27.3087016Z - admin-password-change
|
||||
2026-06-27T12:43:27.3553533Z expression '${{ runner.os }}-playwright-${{ hashFiles('package-lock.json') }}' rewritten to 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))'
|
||||
2026-06-27T12:43:27.3554082Z evaluating expression 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))'
|
||||
2026-06-27T12:43:27.3554852Z Writing entry to tarball workflow/hashfiles/index.js len:168437
|
||||
2026-06-27T12:43:27.3557556Z Extracting content to '/var/run/act'
|
||||
2026-06-27T12:43:27.3590761Z 🐳 docker exec cmd=[node /var/run/act/workflow/hashfiles/index.js] user= workdir=
|
||||
2026-06-27T12:43:27.3591172Z Exec command '[node /var/run/act/workflow/hashfiles/index.js]'
|
||||
2026-06-27T12:43:27.3591485Z Working directory '/workspace/***/taxbaik'
|
||||
2026-06-27T12:43:27.4880849Z expression 'format('{0}-playwright-{1}', runner.os, hashFiles('package-lock.json'))' evaluated to '%!t(string=Linux-playwright-da5b0f170046fc2084d2c68f83e739454760e58eda8b88046a83cc8256c7af8f)'
|
||||
2026-06-27T12:43:27.4883858Z expression '${{ runner.os }}-playwright-\n' rewritten to 'format('{0}-playwright-\n', runner.os)'
|
||||
2026-06-27T12:43:27.4884154Z evaluating expression 'format('{0}-playwright-\n', runner.os)'
|
||||
2026-06-27T12:43:27.4884741Z expression 'format('{0}-playwright-\n', runner.os)' evaluated to '%!t(string=Linux-playwright-\n)'
|
||||
2026-06-27T12:43:27.4967884Z evaluating expression 'success()'
|
||||
2026-06-27T12:43:27.4968244Z expression 'success()' evaluated to 'false'
|
||||
2026-06-27T12:43:27.4968392Z Skipping step 'Cache Playwright browsers' due to 'success()'
|
||||
2026-06-27T12:43:27.5176744Z evaluating expression 'success()'
|
||||
2026-06-27T12:43:27.5177209Z expression 'success()' evaluated to 'false'
|
||||
2026-06-27T12:43:27.5177349Z Skipping step 'Setup Node.js' due to 'success()'
|
||||
2026-06-27T12:43:27.5358315Z evaluating expression 'always()'
|
||||
2026-06-27T12:43:27.5358814Z expression 'always()' evaluated to 'true'
|
||||
2026-06-27T12:43:27.5358938Z ⭐ Run Post Checkout code
|
||||
2026-06-27T12:43:27.5359109Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T12:43:27.5359252Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T12:43:27.5359353Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T12:43:27.5359452Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T12:43:27.5359549Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T12:43:27.5359830Z Extracting content to '/var/run/act'
|
||||
2026-06-27T12:43:27.5381941Z run post step for 'Checkout code'
|
||||
2026-06-27T12:43:27.5382805Z executing remote job container: [node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js]
|
||||
2026-06-27T12:43:27.5854104Z 🐳 docker exec cmd=[node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js] user= workdir=
|
||||
2026-06-27T12:43:27.5854588Z Exec command '[node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js]'
|
||||
2026-06-27T12:43:27.5855192Z Working directory '/workspace/***/taxbaik'
|
||||
+284
@@ -0,0 +1,284 @@
|
||||
2026-06-27T13:12:18.8138426Z hz-prod-runner-2(version:v0.6.1) received task 277 of job build-and-deploy, be triggered by event: push
|
||||
2026-06-27T13:12:18.8143142Z workflow prepared
|
||||
2026-06-27T13:12:18.8143844Z evaluating expression 'success()'
|
||||
2026-06-27T13:12:18.8144614Z expression 'success()' evaluated to 'true'
|
||||
2026-06-27T13:12:18.8144777Z 🚀 Start image=docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T13:12:18.8274089Z 🐳 docker pull image=docker.gitea.com/runner-images:ubuntu-latest platform= username= forcePull=false
|
||||
2026-06-27T13:12:18.8274359Z 🐳 docker pull docker.gitea.com/runner-images:ubuntu-latest
|
||||
2026-06-27T13:12:18.8603139Z Image exists? true
|
||||
2026-06-27T13:12:18.9193930Z 🐳 docker create image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T13:12:19.0382950Z Created container name=GITEA-ACTIONS-TASK-277-WORKFLOW-TaxBaik-CI-CD-JOB-build-and-dep-81358f67ff8537411403244208e6df1e8824d7fa599c29be44b8edde7bee1d0e id=d6313082a96795f171407814e9b27ea01af230c6493a2a782893b4c72c5a2ab3 from image docker.gitea.com/runner-images:ubuntu-latest (platform: )
|
||||
2026-06-27T13:12:19.0383521Z ENV ==> [RUNNER_TOOL_CACHE=/opt/hostedtoolcache RUNNER_OS=Linux RUNNER_ARCH=X64 RUNNER_TEMP=/tmp LANG=C.UTF-8]
|
||||
2026-06-27T13:12:19.0383662Z 🐳 docker run image=docker.gitea.com/runner-images:ubuntu-latest platform= entrypoint=["/bin/sleep" "10800"] cmd=[] network="gitea_default"
|
||||
2026-06-27T13:12:19.0383780Z Starting container: d6313082a96795f171407814e9b27ea01af230c6493a2a782893b4c72c5a2ab3
|
||||
2026-06-27T13:12:19.1846894Z Started container: d6313082a96795f171407814e9b27ea01af230c6493a2a782893b4c72c5a2ab3
|
||||
2026-06-27T13:12:19.2706682Z Writing entry to tarball workflow/event.json len:4824
|
||||
2026-06-27T13:12:19.2710592Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T13:12:19.2711581Z Extracting content to '/var/run/act/'
|
||||
2026-06-27T13:12:19.2920884Z ☁ git clone 'https://github.com/actions/checkout' # ref=v4
|
||||
2026-06-27T13:12:19.2921225Z cloning https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T13:12:19.9162579Z Unable to pull refs/heads/v4: non-fast-forward update
|
||||
2026-06-27T13:12:19.9163012Z Cloned https://github.com/actions/checkout to /root/.cache/act/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab
|
||||
2026-06-27T13:12:19.9271556Z Checked out v4
|
||||
2026-06-27T13:12:19.9373332Z ☁ git clone 'https://github.com/actions/setup-dotnet' # ref=v4
|
||||
2026-06-27T13:12:19.9373628Z cloning https://github.com/actions/setup-dotnet to /root/.cache/act/2d637816dd86ec9ff59dad9ec3547bf90b88133b3029538a91ec96ac7f316336
|
||||
2026-06-27T13:12:20.4452471Z Unable to pull refs/heads/v4: worktree contains unstaged changes
|
||||
2026-06-27T13:12:20.4452909Z Cloned https://github.com/actions/setup-dotnet to /root/.cache/act/2d637816dd86ec9ff59dad9ec3547bf90b88133b3029538a91ec96ac7f316336
|
||||
2026-06-27T13:12:20.4566454Z Checked out v4
|
||||
2026-06-27T13:12:20.4806890Z evaluating expression ''
|
||||
2026-06-27T13:12:20.4807480Z expression '' evaluated to 'true'
|
||||
2026-06-27T13:12:20.4807609Z ⭐ Run Main Checkout code
|
||||
2026-06-27T13:12:20.4807800Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T13:12:20.4807954Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T13:12:20.4808060Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T13:12:20.4808178Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T13:12:20.4808282Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T13:12:20.4808380Z Extracting content to '/var/run/act'
|
||||
2026-06-27T13:12:20.4842929Z ::group::Run Checkout code
|
||||
2026-06-27T13:12:20.9904267Z ::add-matcher::/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/problem-matcher.json
|
||||
2026-06-27T13:12:20.9913104Z Syncing repository: ***/taxbaik
|
||||
2026-06-27T13:12:20.9919005Z ::group::Getting Git version info
|
||||
2026-06-27T13:12:20.9920414Z Working directory is '/workspace/***/taxbaik'
|
||||
2026-06-27T13:12:20.9971735Z [command]/usr/bin/git version
|
||||
2026-06-27T13:12:21.0019496Z git version 2.54.0
|
||||
2026-06-27T13:12:21.0049414Z ::endgroup::
|
||||
2026-06-27T13:12:21.0069520Z Temporarily overriding HOME='/tmp/a8966535-3ef4-4d35-ac60-c313924b3d76' before making global git config changes
|
||||
2026-06-27T13:12:21.0071498Z Adding repository directory to the temporary git global config as a safe directory
|
||||
2026-06-27T13:12:21.0075987Z [command]/usr/bin/git config --global --add safe.directory /workspace/***/taxbaik
|
||||
2026-06-27T13:12:21.0117500Z Deleting the contents of '/workspace/***/taxbaik'
|
||||
2026-06-27T13:12:21.0123329Z ::group::Initializing the repository
|
||||
2026-06-27T13:12:21.0130583Z [command]/usr/bin/git init /workspace/***/taxbaik
|
||||
2026-06-27T13:12:21.0230446Z hint: Using 'master' as the name for the initial branch. This default branch name
|
||||
2026-06-27T13:12:21.0231037Z hint: will change to "main" in Git 3.0. To configure the initial branch name
|
||||
2026-06-27T13:12:21.0231198Z hint: to use in all of your new repositories, which will suppress this warning,
|
||||
2026-06-27T13:12:21.0231401Z hint: call:
|
||||
2026-06-27T13:12:21.0231484Z hint:
|
||||
2026-06-27T13:12:21.0231608Z hint: git config --global init.defaultBranch <name>
|
||||
2026-06-27T13:12:21.0231759Z hint:
|
||||
2026-06-27T13:12:21.0231921Z hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
|
||||
2026-06-27T13:12:21.0232060Z hint: 'development'. The just-created branch can be renamed via this command:
|
||||
2026-06-27T13:12:21.0232186Z hint:
|
||||
2026-06-27T13:12:21.0232341Z hint: git branch -m <name>
|
||||
2026-06-27T13:12:21.0232468Z hint:
|
||||
2026-06-27T13:12:21.0232580Z hint: Disable this message with "git config set advice.defaultBranchName false"
|
||||
2026-06-27T13:12:21.0234035Z Initialized empty Git repository in /workspace/***/taxbaik/.git/
|
||||
2026-06-27T13:12:21.0249566Z [command]/usr/bin/git remote add origin http://gitea:3000/***/taxbaik
|
||||
2026-06-27T13:12:21.0296794Z ::endgroup::
|
||||
2026-06-27T13:12:21.0297773Z ::group::Disabling automatic garbage collection
|
||||
2026-06-27T13:12:21.0301030Z [command]/usr/bin/git config --local gc.auto 0
|
||||
2026-06-27T13:12:21.0342617Z ::endgroup::
|
||||
2026-06-27T13:12:21.0343174Z ::group::Setting up auth
|
||||
2026-06-27T13:12:21.0353769Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
||||
2026-06-27T13:12:21.0401148Z [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' || :"
|
||||
2026-06-27T13:12:21.0825984Z [command]/usr/bin/git config --local --name-only --get-regexp http\.http\:\/\/gitea\:3000\/\.extraheader
|
||||
2026-06-27T13:12:21.0862378Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.http\:\/\/gitea\:3000\/\.extraheader' && git config --local --unset-all 'http.http://gitea:3000/.extraheader' || :"
|
||||
2026-06-27T13:12:21.1162706Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
||||
2026-06-27T13:12:21.1204118Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
||||
2026-06-27T13:12:21.1745034Z [command]/usr/bin/git config --local http.http://gitea:3000/.extraheader AUTHORIZATION: basic ***
|
||||
2026-06-27T13:12:21.1810732Z ::endgroup::
|
||||
2026-06-27T13:12:21.1811265Z ::group::Fetching the repository
|
||||
2026-06-27T13:12:21.1822444Z [command]/usr/bin/git -c protocol.version=2 fetch --no-tags --prune --no-recurse-submodules --depth=1 origin +301efb32ffe2c15b9ac7021906aba153b2a470bd:refs/remotes/origin/master
|
||||
2026-06-27T13:12:21.3013801Z From http://gitea:3000/***/taxbaik
|
||||
2026-06-27T13:12:21.3014323Z * [new ref] 301efb32ffe2c15b9ac7021906aba153b2a470bd -> origin/master
|
||||
2026-06-27T13:12:21.3054812Z ::endgroup::
|
||||
2026-06-27T13:12:21.3057256Z ::group::Determining the checkout info
|
||||
2026-06-27T13:12:21.3061520Z ::endgroup::
|
||||
2026-06-27T13:12:21.3069281Z [command]/usr/bin/git sparse-checkout disable
|
||||
2026-06-27T13:12:21.3120982Z [command]/usr/bin/git config --local --unset-all extensions.worktreeConfig
|
||||
2026-06-27T13:12:21.3154739Z ::group::Checking out the ref
|
||||
2026-06-27T13:12:21.3163293Z [command]/usr/bin/git checkout --progress --force -B master refs/remotes/origin/master
|
||||
2026-06-27T13:12:21.3306621Z Reset branch 'master'
|
||||
2026-06-27T13:12:21.3313087Z branch 'master' set up to track 'origin/master'.
|
||||
2026-06-27T13:12:21.3331734Z ::endgroup::
|
||||
2026-06-27T13:12:21.3395903Z [command]/usr/bin/git log -1 --format=%H
|
||||
2026-06-27T13:12:21.3432814Z 301efb32ffe2c15b9ac7021906aba153b2a470bd
|
||||
2026-06-27T13:12:21.3460362Z ::remove-matcher owner=checkout-git::
|
||||
2026-06-27T13:12:21.3579593Z ::endgroup::
|
||||
2026-06-27T13:12:21.4302050Z ::group::Run Setup .NET
|
||||
2026-06-27T13:12:21.4302554Z with:
|
||||
2026-06-27T13:12:21.4302665Z dotnet-version: 10.0
|
||||
2026-06-27T13:12:22.0459276Z (node:142) [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.
|
||||
2026-06-27T13:12:22.0461374Z (Use `node --trace-deprecation ...` to show where the warning was created)
|
||||
2026-06-27T13:12:22.0560230Z [command]/run/act/actions/2d637816dd86ec9ff59dad9ec3547bf90b88133b3029538a91ec96ac7f316336/externals/install-dotnet.sh --skip-non-versioned-files --runtime dotnet --channel LTS
|
||||
2026-06-27T13:12:22.3987301Z dotnet-install: Attempting to download using aka.ms link https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.9/dotnet-runtime-10.0.9-linux-x64.tar.gz
|
||||
2026-06-27T13:12:22.6324592Z dotnet-install: Remote file https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.9/dotnet-runtime-10.0.9-linux-x64.tar.gz size is 36606251 bytes.
|
||||
2026-06-27T13:12:22.6408160Z dotnet-install: Extracting archive from https://builds.dotnet.microsoft.com/dotnet/Runtime/10.0.9/dotnet-runtime-10.0.9-linux-x64.tar.gz
|
||||
2026-06-27T13:12:23.4950421Z dotnet-install: Downloaded file size is 36606251 bytes.
|
||||
2026-06-27T13:12:23.4956878Z dotnet-install: The remote and local file sizes are equal.
|
||||
2026-06-27T13:12:23.5264515Z dotnet-install: Installed version is 10.0.9
|
||||
2026-06-27T13:12:23.5339988Z dotnet-install: Adding to current process PATH: `/usr/share/dotnet`. Note: This change will be visible only when sourcing script.
|
||||
2026-06-27T13:12:23.5348062Z dotnet-install: Note that the script does not resolve dependencies during installation.
|
||||
2026-06-27T13:12:23.5348573Z dotnet-install: To check the list of dependencies, go to https://learn.microsoft.com/dotnet/core/install, select your operating system and check the "Dependencies" section.
|
||||
2026-06-27T13:12:23.5349103Z dotnet-install: Installation finished successfully.
|
||||
2026-06-27T13:12:23.5374764Z [command]/run/act/actions/2d637816dd86ec9ff59dad9ec3547bf90b88133b3029538a91ec96ac7f316336/externals/install-dotnet.sh --skip-non-versioned-files --channel 10.0
|
||||
2026-06-27T13:12:23.8387651Z dotnet-install: Attempting to download using aka.ms link https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.301/dotnet-sdk-10.0.301-linux-x64.tar.gz
|
||||
2026-06-27T13:12:24.7117583Z dotnet-install: Remote file https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.301/dotnet-sdk-10.0.301-linux-x64.tar.gz size is 235086718 bytes.
|
||||
2026-06-27T13:12:24.7126373Z dotnet-install: Extracting archive from https://builds.dotnet.microsoft.com/dotnet/Sdk/10.0.301/dotnet-sdk-10.0.301-linux-x64.tar.gz
|
||||
2026-06-27T13:12:32.2146389Z dotnet-install: Downloaded file size is 235086718 bytes.
|
||||
2026-06-27T13:12:32.2147245Z dotnet-install: The remote and local file sizes are equal.
|
||||
2026-06-27T13:12:32.4424336Z dotnet-install: Installed version is 10.0.301
|
||||
2026-06-27T13:12:32.4497428Z dotnet-install: Adding to current process PATH: `/usr/share/dotnet`. Note: This change will be visible only when sourcing script.
|
||||
2026-06-27T13:12:32.4497919Z dotnet-install: Note that the script does not resolve dependencies during installation.
|
||||
2026-06-27T13:12:32.4498054Z dotnet-install: To check the list of dependencies, go to https://learn.microsoft.com/dotnet/core/install, select your operating system and check the "Dependencies" section.
|
||||
2026-06-27T13:12:32.4498172Z dotnet-install: Installation finished successfully.
|
||||
2026-06-27T13:12:32.4525881Z ##[add-matcher]/run/act/actions/2d637816dd86ec9ff59dad9ec3547bf90b88133b3029538a91ec96ac7f316336/.github/csc.json
|
||||
2026-06-27T13:12:32.4621848Z ::endgroup::
|
||||
2026-06-27T13:12:32.6161034Z ::group::Run dotnet restore TaxBaik.sln
|
||||
2026-06-27T13:12:32.6161379Z dotnet restore TaxBaik.sln
|
||||
2026-06-27T13:12:32.6161499Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T13:12:32.6161626Z ::endgroup::
|
||||
2026-06-27T13:12:32.8212869Z
|
||||
2026-06-27T13:12:32.8225808Z Welcome to .NET 10.0!
|
||||
2026-06-27T13:12:32.8226776Z ---------------------
|
||||
2026-06-27T13:12:32.8228475Z SDK Version: 10.0.301
|
||||
2026-06-27T13:12:32.8230536Z
|
||||
2026-06-27T13:12:32.8232570Z Telemetry
|
||||
2026-06-27T13:12:32.8233082Z ---------
|
||||
2026-06-27T13:12:32.8235004Z The .NET tools collect usage data in order to help us improve your experience. It is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||
2026-06-27T13:12:32.8235543Z
|
||||
2026-06-27T13:12:32.8237259Z Read more about .NET CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
|
||||
2026-06-27T13:12:33.1562163Z
|
||||
2026-06-27T13:12:33.1564784Z ----------------
|
||||
2026-06-27T13:12:33.1565126Z Installed an ASP.NET Core HTTPS development certificate.
|
||||
2026-06-27T13:12:33.1565383Z To trust the certificate, run 'dotnet dev-certs https --trust'
|
||||
2026-06-27T13:12:33.1566916Z Learn about HTTPS: https://aka.ms/dotnet-https
|
||||
2026-06-27T13:12:33.1568950Z
|
||||
2026-06-27T13:12:33.1570460Z ----------------
|
||||
2026-06-27T13:12:33.1570607Z Write your first app: https://aka.ms/dotnet-hello-world
|
||||
2026-06-27T13:12:33.1570863Z Find out what's new: https://aka.ms/dotnet-whats-new
|
||||
2026-06-27T13:12:33.1570955Z Explore documentation: https://aka.ms/dotnet-docs
|
||||
2026-06-27T13:12:33.1571037Z Report issues and find source on GitHub: https://github.com/dotnet/core
|
||||
2026-06-27T13:12:33.1572179Z Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli
|
||||
2026-06-27T13:12:33.1573517Z --------------------------------------------------------------------------------------
|
||||
2026-06-27T13:12:34.5938340Z Determining projects to restore...
|
||||
2026-06-27T13:12:35.6900179Z Restored /workspace/***/taxbaik/TaxBaik.Domain/TaxBaik.Domain.csproj (in 184 ms).
|
||||
2026-06-27T13:12:37.5656901Z Restored /workspace/***/taxbaik/TaxBaik.Infrastructure/TaxBaik.Infrastructure.csproj (in 2.09 sec).
|
||||
2026-06-27T13:12:38.1428024Z Restored /workspace/***/taxbaik/TaxBaik.Web/TaxBaik.Web.csproj (in 2.44 sec).
|
||||
2026-06-27T13:12:38.1827148Z Restored /workspace/***/taxbaik/TaxBaik.Application/TaxBaik.Application.csproj (in 554 ms).
|
||||
2026-06-27T13:12:39.3275689Z Restored /workspace/***/taxbaik/TaxBaik.Application.Tests/TaxBaik.Application.Tests.csproj (in 1.18 sec).
|
||||
2026-06-27T13:12:39.4972215Z ::group::Run dotnet clean TaxBaik.sln -c Release
|
||||
2026-06-27T13:12:39.4972561Z dotnet clean TaxBaik.sln -c Release
|
||||
2026-06-27T13:12:39.4972677Z dotnet build TaxBaik.sln -c Release --no-restore
|
||||
2026-06-27T13:12:39.4972764Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T13:12:39.4972872Z ::endgroup::
|
||||
2026-06-27T13:12:39.8626903Z Build started 06/27/2026 13:12:39.
|
||||
2026-06-27T13:12:40.0580805Z 1>Project "/workspace/***/taxbaik/TaxBaik.sln" on node 1 (Clean target(s)).
|
||||
2026-06-27T13:12:40.0584070Z 1>ValidateSolutionConfiguration:
|
||||
2026-06-27T13:12:40.0584426Z Building solution configuration "Release|Any CPU".
|
||||
2026-06-27T13:12:40.4904648Z 1>Project "/workspace/***/taxbaik/TaxBaik.sln" (1) is building "/workspace/***/taxbaik/TaxBaik.Web/TaxBaik.Web.csproj" (3) on node 2 (Clean target(s)).
|
||||
2026-06-27T13:12:40.4905534Z 3>CoreClean:
|
||||
2026-06-27T13:12:40.4905720Z Creating directory "obj/Release/net10.0/".
|
||||
2026-06-27T13:12:40.5074761Z 1>Project "/workspace/***/taxbaik/TaxBaik.sln" (1) is building "/workspace/***/taxbaik/TaxBaik.Application.Tests/TaxBaik.Application.Tests.csproj" (2) on node 1 (Clean target(s)).
|
||||
2026-06-27T13:12:40.5076306Z 2>CoreClean:
|
||||
2026-06-27T13:12:40.5076496Z Creating directory "obj/Release/net10.0/".
|
||||
2026-06-27T13:12:40.7637230Z 1>Project "/workspace/***/taxbaik/TaxBaik.sln" (1) is building "/workspace/***/taxbaik/TaxBaik.Application/TaxBaik.Application.csproj" (5:3) on node 2 (Clean target(s)).
|
||||
2026-06-27T13:12:40.7638013Z 5>CoreClean:
|
||||
2026-06-27T13:12:40.7638224Z Creating directory "obj/Release/net10.0/".
|
||||
2026-06-27T13:12:40.9225801Z 2>Project "/workspace/***/taxbaik/TaxBaik.Application.Tests/TaxBaik.Application.Tests.csproj" (2) is building "/workspace/***/taxbaik/TaxBaik.Domain/TaxBaik.Domain.csproj" (4:4) on node 1 (Clean target(s)).
|
||||
2026-06-27T13:12:40.9226522Z 4>CoreClean:
|
||||
2026-06-27T13:12:40.9226639Z Creating directory "obj/Release/net10.0/".
|
||||
2026-06-27T13:12:40.9226744Z 4>Done Building Project "/workspace/***/taxbaik/TaxBaik.Domain/TaxBaik.Domain.csproj" (Clean target(s)).
|
||||
2026-06-27T13:12:40.9226858Z 1>Project "/workspace/***/taxbaik/TaxBaik.sln" (1) is building "/workspace/***/taxbaik/TaxBaik.Infrastructure/TaxBaik.Infrastructure.csproj" (6:2) on node 1 (Clean target(s)).
|
||||
2026-06-27T13:12:40.9227083Z 6>CoreClean:
|
||||
2026-06-27T13:12:40.9227168Z Creating directory "obj/Release/net10.0/".
|
||||
2026-06-27T13:12:40.9227303Z 5>Done Building Project "/workspace/***/taxbaik/TaxBaik.Application/TaxBaik.Application.csproj" (Clean target(s)).
|
||||
2026-06-27T13:12:40.9637330Z 6>Done Building Project "/workspace/***/taxbaik/TaxBaik.Infrastructure/TaxBaik.Infrastructure.csproj" (Clean target(s)).
|
||||
2026-06-27T13:12:40.9637920Z 2>Done Building Project "/workspace/***/taxbaik/TaxBaik.Application.Tests/TaxBaik.Application.Tests.csproj" (Clean target(s)).
|
||||
2026-06-27T13:12:40.9638095Z 3>Done Building Project "/workspace/***/taxbaik/TaxBaik.Web/TaxBaik.Web.csproj" (Clean target(s)).
|
||||
2026-06-27T13:12:40.9638236Z 1>Done Building Project "/workspace/***/taxbaik/TaxBaik.sln" (Clean target(s)).
|
||||
2026-06-27T13:12:40.9638387Z
|
||||
2026-06-27T13:12:40.9638468Z Build succeeded.
|
||||
2026-06-27T13:12:40.9638547Z 0 Warning(s)
|
||||
2026-06-27T13:12:40.9638622Z 0 Error(s)
|
||||
2026-06-27T13:12:40.9638697Z
|
||||
2026-06-27T13:12:40.9638771Z Time Elapsed 00:00:01.09
|
||||
2026-06-27T13:12:46.0603264Z TaxBaik.Domain -> /workspace/***/taxbaik/TaxBaik.Domain/bin/Release/net10.0/TaxBaik.Domain.dll
|
||||
2026-06-27T13:12:47.3699743Z TaxBaik.Infrastructure -> /workspace/***/taxbaik/TaxBaik.Infrastructure/bin/Release/net10.0/TaxBaik.Infrastructure.dll
|
||||
2026-06-27T13:12:47.9387429Z TaxBaik.Application -> /workspace/***/taxbaik/TaxBaik.Application/bin/Release/net10.0/TaxBaik.Application.dll
|
||||
2026-06-27T13:12:48.4991412Z TaxBaik.Application.Tests -> /workspace/***/taxbaik/TaxBaik.Application.Tests/bin/Release/net10.0/TaxBaik.Application.Tests.dll
|
||||
2026-06-27T13:12:53.2890716Z TaxBaik.Web -> /workspace/***/taxbaik/TaxBaik.Web/bin/Release/net10.0/TaxBaik.Web.dll
|
||||
2026-06-27T13:12:53.3196351Z
|
||||
2026-06-27T13:12:53.3204950Z Build succeeded.
|
||||
2026-06-27T13:12:53.3208110Z 0 Warning(s)
|
||||
2026-06-27T13:12:53.3209755Z 0 Error(s)
|
||||
2026-06-27T13:12:53.3212460Z
|
||||
2026-06-27T13:12:53.3214126Z Time Elapsed 00:00:11.71
|
||||
2026-06-27T13:12:53.4987981Z ::group::Run dotnet test TaxBaik.sln -c Release --no-build
|
||||
2026-06-27T13:12:53.4988381Z dotnet test TaxBaik.sln -c Release --no-build
|
||||
2026-06-27T13:12:53.4988494Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T13:12:53.4988607Z ::endgroup::
|
||||
2026-06-27T13:12:55.2318235Z Test run for /workspace/***/taxbaik/TaxBaik.Application.Tests/bin/Release/net10.0/TaxBaik.Application.Tests.dll (.NETCoreApp,Version=v10.0)
|
||||
2026-06-27T13:12:55.4493923Z A total of 1 test files matched the specified pattern.
|
||||
2026-06-27T13:12:56.3188325Z
|
||||
2026-06-27T13:12:56.3224777Z Passed! - Failed: 0, Passed: 4, Skipped: 0, Total: 4, Duration: 57 ms - TaxBaik.Application.Tests.dll (net10.0)
|
||||
2026-06-27T13:12:56.5314492Z ::group::Run dotnet publish TaxBaik.Web/ -c Release -o ./publish --no-restore
|
||||
2026-06-27T13:12:56.5315007Z dotnet publish TaxBaik.Web/ -c Release -o ./publish --no-restore
|
||||
2026-06-27T13:12:56.5315230Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T13:12:56.5315520Z ::endgroup::
|
||||
2026-06-27T13:12:58.1000330Z TaxBaik.Domain -> /workspace/***/taxbaik/TaxBaik.Domain/bin/Release/net10.0/TaxBaik.Domain.dll
|
||||
2026-06-27T13:12:58.2091423Z TaxBaik.Infrastructure -> /workspace/***/taxbaik/TaxBaik.Infrastructure/bin/Release/net10.0/TaxBaik.Infrastructure.dll
|
||||
2026-06-27T13:12:58.2413645Z TaxBaik.Application -> /workspace/***/taxbaik/TaxBaik.Application/bin/Release/net10.0/TaxBaik.Application.dll
|
||||
2026-06-27T13:12:58.9057005Z TaxBaik.Web -> /workspace/***/taxbaik/TaxBaik.Web/bin/Release/net10.0/TaxBaik.Web.dll
|
||||
2026-06-27T13:13:00.7265114Z TaxBaik.Web -> /workspace/***/taxbaik/publish/
|
||||
2026-06-27T13:13:00.9837459Z ::group::Run set -e
|
||||
2026-06-27T13:13:00.9837788Z set -e
|
||||
2026-06-27T13:13:00.9837905Z JWT_SECRET_KEY="***"
|
||||
2026-06-27T13:13:00.9838015Z TELEGRAM_BOT_TOKEN=""
|
||||
2026-06-27T13:13:00.9838100Z TELEGRAM_CHAT_ID=""
|
||||
2026-06-27T13:13:00.9838188Z if [ -z "$JWT_SECRET_KEY" ]; then
|
||||
2026-06-27T13:13:00.9838316Z echo "Missing TAXBAIK_JWT_SECRET_KEY secret" >&2
|
||||
2026-06-27T13:13:00.9838463Z exit 1
|
||||
2026-06-27T13:13:00.9838592Z fi
|
||||
2026-06-27T13:13:00.9838738Z if [ -z "$TELEGRAM_BOT_TOKEN" ]; then
|
||||
2026-06-27T13:13:00.9838884Z echo "Missing TAXBAIK_TELEGRAM_BOT_TOKEN secret" >&2
|
||||
2026-06-27T13:13:00.9839022Z exit 1
|
||||
2026-06-27T13:13:00.9839133Z fi
|
||||
2026-06-27T13:13:00.9839242Z if [ -z "$TELEGRAM_CHAT_ID" ]; then
|
||||
2026-06-27T13:13:00.9839362Z echo "Missing TAXBAIK_TELEGRAM_CHAT_ID secret" >&2
|
||||
2026-06-27T13:13:00.9839500Z exit 1
|
||||
2026-06-27T13:13:00.9839634Z fi
|
||||
2026-06-27T13:13:00.9839746Z JWT_SECRET_KEY="$JWT_SECRET_KEY" TELEGRAM_BOT_TOKEN="$TELEGRAM_BOT_TOKEN" TELEGRAM_CHAT_ID="$TELEGRAM_CHAT_ID" python3 -c 'import json, os, pathlib; pathlib.Path("./publish/appsettings.Production.json").write_text(json.dumps({"Jwt":{"SecretKey":os.environ["JWT_SECRET_KEY"]},"Telegram":{"BotToken":os.environ["TELEGRAM_BOT_TOKEN"],"ChatId":os.environ["TELEGRAM_CHAT_ID"]}}, ensure_ascii=False, indent=2), encoding="utf-8")'
|
||||
2026-06-27T13:13:00.9840007Z test -s ./publish/appsettings.Production.json
|
||||
2026-06-27T13:13:00.9840139Z shell: bash --noprofile --norc -e -o pipefail {0}
|
||||
2026-06-27T13:13:00.9840304Z ::endgroup::
|
||||
2026-06-27T13:13:01.0404342Z Missing TAXBAIK_TELEGRAM_BOT_TOKEN secret
|
||||
2026-06-27T13:13:01.0422993Z ❌ Failure - Main Write production secrets
|
||||
2026-06-27T13:13:01.0609300Z exitcode '1': failure
|
||||
2026-06-27T13:13:01.3080776Z evaluating expression 'success()'
|
||||
2026-06-27T13:13:01.3081634Z expression 'success()' evaluated to 'false'
|
||||
2026-06-27T13:13:01.3082067Z Skipping step 'Setup .NET' due to 'success()'
|
||||
2026-06-27T13:13:01.3484391Z evaluating expression 'always()'
|
||||
2026-06-27T13:13:01.3485123Z expression 'always()' evaluated to 'true'
|
||||
2026-06-27T13:13:01.3485439Z ⭐ Run Post Checkout code
|
||||
2026-06-27T13:13:01.3485680Z Writing entry to tarball workflow/outputcmd.txt len:0
|
||||
2026-06-27T13:13:01.3485850Z Writing entry to tarball workflow/statecmd.txt len:0
|
||||
2026-06-27T13:13:01.3485962Z Writing entry to tarball workflow/pathcmd.txt len:0
|
||||
2026-06-27T13:13:01.3486254Z Writing entry to tarball workflow/envs.txt len:0
|
||||
2026-06-27T13:13:01.3486364Z Writing entry to tarball workflow/SUMMARY.md len:0
|
||||
2026-06-27T13:13:01.3486485Z Extracting content to '/var/run/act'
|
||||
2026-06-27T13:13:01.3534554Z run post step for 'Checkout code'
|
||||
2026-06-27T13:13:01.3535743Z executing remote job container: [node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js]
|
||||
2026-06-27T13:13:01.3802068Z 🐳 docker exec cmd=[node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js] user= workdir=
|
||||
2026-06-27T13:13:01.3802906Z Exec command '[node /var/run/act/actions/c3fe249fe73091a17d6638fe1341e7bd0bcc3466ce52323c0688e83e2463a4ab/dist/index.js]'
|
||||
2026-06-27T13:13:01.3803683Z Working directory '/workspace/***/taxbaik'
|
||||
2026-06-27T13:13:01.7057834Z [command]/usr/bin/git version
|
||||
2026-06-27T13:13:01.7143894Z git version 2.54.0
|
||||
2026-06-27T13:13:01.7471200Z ***
|
||||
2026-06-27T13:13:01.7508945Z Temporarily overriding HOME='/tmp/e72cbe6a-85a5-4ca6-979a-839aa0ac6e27' before making global git config changes
|
||||
2026-06-27T13:13:01.7511449Z Adding repository directory to the temporary git global config as a safe directory
|
||||
2026-06-27T13:13:01.7538869Z [command]/usr/bin/git config --global --add safe.directory /workspace/***/taxbaik
|
||||
2026-06-27T13:13:01.7699072Z [command]/usr/bin/git config --local --name-only --get-regexp core\.sshCommand
|
||||
2026-06-27T13:13:01.7860087Z [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' || :"
|
||||
2026-06-27T13:13:01.8506961Z [command]/usr/bin/git config --local --name-only --get-regexp http\.http\:\/\/gitea\:3000\/\.extraheader
|
||||
2026-06-27T13:13:01.8553154Z http.http://gitea:3000/.extraheader
|
||||
2026-06-27T13:13:01.8594731Z [command]/usr/bin/git config --local --unset-all http.http://gitea:3000/.extraheader
|
||||
2026-06-27T13:13:01.8668773Z [command]/usr/bin/git submodule foreach --recursive sh -c "git config --local --name-only --get-regexp 'http\.http\:\/\/gitea\:3000\/\.extraheader' && git config --local --unset-all 'http.http://gitea:3000/.extraheader' || :"
|
||||
2026-06-27T13:13:01.9314873Z [command]/usr/bin/git config --local --name-only --get-regexp ^includeIf\.gitdir:
|
||||
2026-06-27T13:13:01.9829768Z [command]/usr/bin/git submodule foreach --recursive git config --local --show-origin --name-only --get-regexp remote.origin.url
|
||||
2026-06-27T13:13:01.9963701Z ✅ Success - Post Checkout code
|
||||
2026-06-27T13:13:02.0102485Z Cleaning up container for job build-and-deploy
|
||||
2026-06-27T13:13:02.4165756Z Removed container: d6313082a96795f171407814e9b27ea01af230c6493a2a782893b4c72c5a2ab3
|
||||
2026-06-27T13:13:02.4180241Z 🐳 docker volume rm GITEA-ACTIONS-TASK-277-WORKFLOW-TaxBaik-CI-CD-JOB-build-and-dep-81358f67ff8537411403244208e6df1e8824d7fa599c29be44b8edde7bee1d0e
|
||||
2026-06-27T13:13:02.4353218Z 🐳 docker volume rm GITEA-ACTIONS-TASK-277-WORKFLOW-TaxBaik-CI-CD-JOB-build-and-dep-81358f67ff8537411403244208e6df1e8824d7fa599c29be44b8edde7bee1d0e-env
|
||||
2026-06-27T13:13:02.4957558Z 🏁 Job failed
|
||||
2026-06-27T13:13:02.5089332Z Job 'build-and-deploy' failed
|
||||
@@ -0,0 +1,11 @@
|
||||
TaxBaik.Web\Properties\launchSettings.json의 시작 설정을 사용하는 중...
|
||||
빌드하는 중...
|
||||
Migration warning (development only): Failed to connect to 127.0.0.1:5432
|
||||
info: Microsoft.Hosting.Lifetime[14]
|
||||
Now listening on: http://127.0.0.1:5055
|
||||
info: Microsoft.Hosting.Lifetime[0]
|
||||
Application started. Press Ctrl+C to shut down.
|
||||
info: Microsoft.Hosting.Lifetime[0]
|
||||
Hosting environment: Development
|
||||
info: Microsoft.Hosting.Lifetime[0]
|
||||
Content root path: D:\JobRoomz\taxbaik\TaxBaik.Web
|
||||
@@ -1 +1 @@
|
||||
프로필: 백원숙 세무사 80년생 여성 성북구 하월곡동 주거 2015년 세무사 자격 취득 부동산 중계사 자격 취득 보험설계사 자격 취득 보험일과 세무사일을 겸해서 하고 있음. 세무사 자격을 취득후 경력이 많지 않은 상태에서 육아로 인해 소규모로만 사업을 집을 사업장으로 등록하여 왔다. 이제 활동을 할수 있는 여럭이 생겨서 외부에 알리 위한 수단과 고객 컨택 수단등을 고민하고 있다. 백원수 세무사를 알리기 위한 방법 고객하고에 접접이 될만한 포인트 가능하면 오프라인보다는 온라인으로 펼칠수 있는 방법 자격 취득 라이센스를 최대한 활용할수 있는 방법. 세무사에 특성들과 최근 경향성과 소득적인 부분들을 포함해서 전혀 알지 못한다. 본업인 세무사가 주가 되어야 한다. 세무사 사업과 기타 취득 자격증을 시너지가 돼도록 남들과 다른 경쟁력 포인트를 가질수 있는 뭔가가 있었으면 한다. 결국은 잘해서 경제적으로 이득을 많이 얻고 싶은데 어떻게 해야할지를 모르겠다는거다. 시장에 경쟁이 너무 치열해서 통합적으로 분석해서 경쟁이 심하지 않고 현재 환경에서 적절한 마케팅 방법들 까지 포함해서 경쟁력을 가지고 경제적 이득을 극대화 할수있는 백원숙 세무사에 대한 컨설팅을 해죠. 사회 전반적인 통찰이 필요해보여. 영업 마케팅 전략에 대한 구체적인 플레이북이 필요하다.
|
||||
프로필: 백원숙 세무사 80년생 여성, 2015년 세무사 자격 취득 부동산 중계사 자격 취득 보험설계사 자격 취득 보험일과 세무사일을 겸해서 하고 있음. 세무사 자격을 취득후 경력이 많지 않은 상태에서 육아로 인해 소규모로만 사업을 집을 사업장으로 등록하여 왔다. 이제 활동을 할수 있는 여럭이 생겨서 외부에 알리 위한 수단과 고객 컨택 수단등을 고민하고 있다. 백원수 세무사를 알리기 위한 방법 고객하고에 접접이 될만한 포인트 가능하면 오프라인보다는 온라인으로 펼칠수 있는 방법 자격 취득 라이센스를 최대한 활용할수 있는 방법. 세무사에 특성들과 최근 경향성과 소득적인 부분들을 포함해서 전혀 알지 못한다. 본업인 세무사가 주가 되어야 한다. 세무사 사업과 기타 취득 자격증을 시너지가 돼도록 남들과 다른 경쟁력 포인트를 가질수 있는 뭔가가 있었으면 한다. 결국은 잘해서 경제적으로 이득을 많이 얻고 싶은데 어떻게 해야할지를 모르겠다는거다. 시장에 경쟁이 너무 치열해서 통합적으로 분석해서 경쟁이 심하지 않고 현재 환경에서 적절한 마케팅 방법들 까지 포함해서 경쟁력을 가지고 경제적 이득을 극대화 할수있는 백원숙 세무사에 대한 컨설팅을 해죠. 사회 전반적인 통찰이 필요해보여. 영업 마케팅 전략에 대한 구체적인 플레이북이 필요하다.
|
||||
Reference in New Issue
Block a user