From 72da5e778654a12f192d59d9a4c39f810a0f8ab7 Mon Sep 17 00:00:00 2001 From: Domas Klimavicius Date: Thu, 15 Jan 2026 19:14:48 +0200 Subject: [PATCH 1/2] fix(45): fix windows build --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f3de0b2..9b85958 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -17,6 +17,9 @@ jobs: - name: Check formatting run: make check-format + - name: Enable long paths + run: git config --system core.longpaths true + - name: Build client run: make build From e0cdf67f27cc8471bfeb8c9c78ad4b71cfaf2da9 Mon Sep 17 00:00:00 2001 From: Domas Klimavicius Date: Thu, 15 Jan 2026 19:18:08 +0200 Subject: [PATCH 2/2] fix(45): add windows --- .github/workflows/ci.yaml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 9b85958..bfd8299 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -6,20 +6,22 @@ jobs: ci: strategy: matrix: - os: [ubuntu-latest, macos-latest] - + os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} steps: + - name: Enable long paths (Windows) + if: runner.os == 'Windows' + run: git config --system core.longpaths true + shell: bash + - name: Checkout repository uses: actions/checkout@v6 - name: Check formatting run: make check-format - - name: Enable long paths - run: git config --system core.longpaths true - - name: Build client run: make build