Skip to content

Commit

Permalink
fix: use normal python build workflow instead of in-tree builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiretza committed May 22, 2022
1 parent a6f19c0 commit 39766ff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,7 @@ jobs:
run: |
. ./.github/scripts/activate.sh
cd f4pga
pip install .
cd ..
pip install --use-feature=in-tree-build .
- name: 🚧 Test f4pga-env
run: |
Expand Down Expand Up @@ -151,9 +149,7 @@ jobs:
run: |
. ./.github/scripts/activate.sh
cd f4pga
pip install --use-feature=in-tree-build .
cd ..
- name: 🚧 Test f4pga build
run: |
Expand Down Expand Up @@ -206,9 +202,7 @@ jobs:
run: |
. ./.github/scripts/activate.sh
cd f4pga
pip install --use-feature=in-tree-build .
cd ..
- name: 🚦 Test Python wrappers
run: |
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*.pyc
*.sw*
/f4pga/build/
/build
/dist
/*.egg-info
File renamed without changes.
1 change: 0 additions & 1 deletion f4pga/setup.py → setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ def get_requirements(file: Path) -> List[str]:
"f4pga.common_modules",
"f4pga.wrappers.sh"
],
package_dir={"f4pga": "."},
package_data={
'f4pga': ['*.json', 'platforms/*.json'],
'f4pga.wrappers.sh': ['xc7/*.f4pga.sh', 'quicklogic/*.f4pga.sh']
Expand Down

0 comments on commit 39766ff

Please sign in to comment.