Skip to content

Commit

Permalink
lkl: fix windows build on pip installation
Browse files Browse the repository at this point in the history
recent pip (version 23.0 or later) cannot install packages to a host
system without explicit option thus, failed under github actions.  This
commit fixes this issue.

Link: pypa/pip#11381
Signed-off-by: Hajime Tazaki <thehajime@gmail.com>
  • Loading branch information
thehajime committed Dec 26, 2024
1 parent 269c243 commit dbda24c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
if: runner.os == 'Linux'
uses: actions/checkout@v4
- name: Install pip dependencies
run: pip install yamlish junit-xml
run: pip install yamlish junit-xml --break-system-packages
- name: Install openvpn
if: runner.os == 'Windows'
shell: pwsh
Expand Down

0 comments on commit dbda24c

Please sign in to comment.