Skip to content

Commit

Permalink
Use native python in workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbreeze413 committed Feb 4, 2024
1 parent 0e20640 commit 40326c5
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,18 +71,13 @@ jobs:

- name: Print Python Path
run: |
echo ${{ env.pythonLocation }}
echo $(cygpath -u "${{ env.pythonLocation }}")
PYTHON_LOCATION_U=$(cygpath -u "${{ env.pythonLocation }}")
echo ${PYTHON_LOCATION_U}
ls $(cygpath -u "${{ env.pythonLocation }}")
ls ${PYTHON_LOCATION_U}
- name: Install Dependencies
run: |
PATH=$(cygpath -u ${{ env.pythonLocation }}):${PATH}
python3 -m pip install -r openfpga/requirements.txt
$(cygpath -u ${{ env.pythonLocation }})/python3.exe -m pip install -r openfpga/requirements.txt
- name: Show Shell Configuration
run: |
Expand Down

0 comments on commit 40326c5

Please sign in to comment.