Skip to content

Commit 8ef3519

Browse files
jhonabreulclaude
andcommitted
CI: drop Windows-only Python DLL path step
The build now runs only in the Linux lean foundation container, so the PowerShell-based "(Windows)" PYTHONHOME/PYTHONNET_PYDLL step is dead. Remove it and drop the "(non Windows)" qualifier from the remaining shell step. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 4e9d039 commit 8ef3519

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,16 +43,11 @@ jobs:
4343
run: |
4444
pip install -v .
4545
46-
- name: Set Python DLL path and PYTHONHOME (non Windows)
46+
- name: Set Python DLL path and PYTHONHOME
4747
run: |
4848
echo PYTHONNET_PYDLL=$(python -m pythonnet.find_libpython) >> $GITHUB_ENV
4949
echo PYTHONHOME=$(python -c 'import sys; print(sys.prefix)') >> $GITHUB_ENV
5050
51-
- name: Set Python DLL path and PYTHONHOME (Windows)
52-
run: |
53-
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONNET_PYDLL=$(python -m pythonnet.find_libpython)"
54-
Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append -InputObject "PYTHONHOME=$(python -c 'import sys; print(sys.prefix)')"
55-
5651
- name: Embedding tests
5752
run: dotnet test --runtime any-x64 --logger "console;verbosity=detailed" src/embed_tests/
5853

0 commit comments

Comments
 (0)