Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use normal python build workflow instead of in-tree builds #558

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .github/workflows/Pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,7 @@ jobs:
run: |
. ./.github/scripts/activate.sh

cd f4pga
pip install .
cd ..

- name: 🚧 Test f4pga-env
run: |
Expand Down Expand Up @@ -165,9 +163,7 @@ jobs:
run: |
. ./.github/scripts/activate.sh

cd f4pga
pip install .
cd ..

- name: 🚧 Test f4pga build
run: |
Expand Down Expand Up @@ -219,9 +215,7 @@ jobs:
run: |
. ./.github/scripts/activate.sh

cd f4pga
pip install .
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 @@ -90,7 +90,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