Skip to content

Commit

Permalink
Disable pkgconfig installation on Windows in CI
Browse files Browse the repository at this point in the history
Commented out the step to install pkgconfig on Windows using Chocolatey. This change may simplify workflows if pkgconfig is not required or managed differently. Revisit if future dependencies demand it.
  • Loading branch information
inakleinbottle committed Dec 18, 2024
1 parent 430bf07 commit 774230e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ jobs:
if: runner.os == 'Windows'
uses: ilammy/msvc-dev-cmd@v1

- name: install pkgconfig on windows
if: runner.os == 'Windows'
shell: bash
run: |
choco install pkgconfiglite
# - name: install pkgconfig on windows
# if: runner.os == 'Windows'
# shell: bash
# run: |
# choco install pkgconfiglite

- name: install autoconf on macos
if: runner.os == 'macOs'
Expand Down

0 comments on commit 774230e

Please sign in to comment.