fix: use normal python build workflow instead of in-tree builds
This commit is contained in:
parent
8c411eb74e
commit
0896bd19f2
|
@ -102,9 +102,7 @@ jobs:
|
|||
run: |
|
||||
. ./.github/scripts/activate.sh
|
||||
|
||||
cd f4pga
|
||||
pip install .
|
||||
cd ..
|
||||
|
||||
- name: 🚧 Test f4pga-env
|
||||
run: |
|
||||
|
@ -165,9 +163,7 @@ jobs:
|
|||
run: |
|
||||
. ./.github/scripts/activate.sh
|
||||
|
||||
cd f4pga
|
||||
pip install .
|
||||
cd ..
|
||||
|
||||
- name: 🚧 Test f4pga build
|
||||
run: |
|
||||
|
@ -219,9 +215,7 @@ jobs:
|
|||
run: |
|
||||
. ./.github/scripts/activate.sh
|
||||
|
||||
cd f4pga
|
||||
pip install .
|
||||
cd ..
|
||||
|
||||
- name: 🚦 Test Python wrappers
|
||||
run: |
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
*.pyc
|
||||
*.sw*
|
||||
/f4pga/build/
|
||||
/build
|
||||
/dist
|
||||
/*.egg-info
|
||||
|
|
|
@ -90,7 +90,6 @@ setuptools_setup(
|
|||
"f4pga.common_modules",
|
||||
"f4pga.wrappers.sh"
|
||||
],
|
||||
package_dir={"f4pga": "."},
|
||||
package_data={
|
||||
'f4pga': ['*.json', 'platforms/*.json'],
|
||||
'f4pga.wrappers.sh': ['xc7/*.f4pga.sh', 'quicklogic/*.f4pga.sh']
|
Loading…
Reference in New Issue