From 6f0f22b4b6298738f214d2f63ed0b72de6f71e76 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 8 Jul 2026 18:22:41 +0000 Subject: [PATCH 1/2] Initial plan From 5c12049e0648978be33b55bc455f6d6b4509eebb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 8 Jul 2026 18:24:33 +0000 Subject: [PATCH 2/2] Fix Makefile CI workflow: replace autotools commands with Python/uv setup --- .github/workflows/makefile.yml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/.github/workflows/makefile.yml b/.github/workflows/makefile.yml index 8789c17..f60e766 100644 --- a/.github/workflows/makefile.yml +++ b/.github/workflows/makefile.yml @@ -14,14 +14,19 @@ jobs: steps: - uses: actions/checkout@v4 - - name: configure - run: ./configure + - name: Set up Python + uses: actions/setup-python@v5 + with: + python-version-file: .python-version + + - name: Install uv + uses: astral-sh/setup-uv@v6 - name: Install dependencies - run: make + run: make install - - name: Run check - run: make check + - name: Build + run: make build - - name: Run distcheck - run: make distcheck + - name: Run tests + run: make test