Skip to content

Commit

Permalink
Refs #20827: Fix win32con
Browse files Browse the repository at this point in the history
Signed-off-by: Mario Dominguez <mariodominguez@eprosima.com>
  • Loading branch information
Mario-DL committed May 3, 2024
1 parent d2092a7 commit 8dcf361
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/reusable-windows-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,26 @@ jobs:
- name: Install Python dependencies
uses: eProsima/eProsima-CI/windows/install_python_packages@hotfix/python
with:
packages: vcstool xmlschema
packages: vcstool xmlschema pywin32

- name: Check python installed dependencies
run: |
python3 -m pip list
echo $?
python3 -m pip show pywin32
echo $?
python3 -c "import sys; print(sys.path)"
echo $?
python3 -c "import win32con"
echo $?
ls -l $(which python3)
echo $?
installation_path=$(pip show pywin32 | grep -i 'Location' | awk '{print $2}')
echo "import sys; sys.path.append($(pip show pywin32 | grep -i 'Location' | awk '{print $2}'))"
python3 -c "import sys; sys.path.append(\"$(pip show pywin32 | grep -i 'Location' | awk '{print $2}')\")"
echo $?
ls -l $(which python3)
echo $?
- name: Update known hosts file for DNS resolver testing
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-test') }}
Expand Down

0 comments on commit 8dcf361

Please sign in to comment.