-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Preparing deployment YAML for first release. (#45)
* removed c++ printouts * Included vector in setup.cfg * Added build dependencies * added recursive submodules * Added the dependency install in the docker * corrected names for centos * added gfortran * ci: allow local wheel builds * ci: only run one job in test matrix * trying manylinux_2_24 * added ld_library_path * fixed command tag * took out ld_library_path * fixed therepair wheel command * changed path * included file name as well * trying to find file structure * Removed debug statement * removed debug statement * WIP: relative RPaths * added dll loading back * removed auditwheel command * emptied the command * changed version number * Added approximation in tests * Added Architecture option * moved architecture option * removed arch option * added cibw_arch Co-authored-by: Henry Schreiner <[email protected]>
- Loading branch information
1 parent
9dbbd8b
commit 7f4d7e3
Showing
9 changed files
with
70 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,14 +52,32 @@ jobs: | |
if: runner.os == 'Linux' | ||
run: sudo apt-get update && sudo apt-get install -y libmpfr-dev libboost-dev | ||
|
||
- name: Install dependency | ||
run: python -m pip install awkward | ||
#- name: Install dependency | ||
# run: python -m pip install awkward | ||
|
||
- name: Install dependency | ||
run: python -m pip install vector | ||
#- name: Install dependency | ||
# run: python -m pip install vector | ||
|
||
- name: Install package | ||
run: python -m pip install .[test] -v | ||
|
||
- name: Test package | ||
run: python -m pytest -vv -rs -Wd | ||
|
||
test_wheels: | ||
name: Wheel on linux | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
with: | ||
submodules: recursive | ||
|
||
- uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: cp39-manylinux_x86_64 | ||
|
||
- name: Upload wheels | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
path: wheelhouse/*.whl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters