-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Github actions and horizon OSX fix (#10)
* gh action template yml * fix flake8 call * install topocalc to build C code * try with tox * install tox * tox env * run setup.py test * os matrix * cleanup * coverage * coverage try 2 * coverage try 3 * cibuildwheel for linux osx * seperate build wheels workflow * wrong directory * fixing build-wheels * fixing build-wheels * wheel dependancy on unittest * cap numpy * cc env * cython capy * cython 0.28.X doesn't work * gcc version print * specify gcc alias * testing with ubuntu * cc testing * updating setup.py for cc overwrite * full test * moved all actions to one file * moved all actions to one file * restructuring * fixing * removing O3 flag * gcc version * removed slopef/b functions and was more explicit * updated setup.py for cython language directive and simplified topo_core.pyx * dist in slope int to double more explicit * viewf test more verbose * up nangles for viewf test * viewf test for osx * upping osx tolerance * updating setup.py to be like smrf's * move cython to dev requirement and see if osx will use c code instead * pyx bool to bint * viewf test assert all close * double declaration * wrong c type * debugging and cleanupy * c typingy * relaxed osx viewf test * hypot * zeros * gcc * refactor c code a bit * add linux * more print * just horizon * hor1f was going 1 index too far * remove debug * cleanup * delete travis.yml * action on * updated action on * updating README
- Loading branch information
Scott Havens
authored
Apr 14, 2021
1 parent
63bccf6
commit 3e58341
Showing
14 changed files
with
419 additions
and
470 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 |
---|---|---|
@@ -0,0 +1,153 @@ | ||
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions | ||
|
||
name: Unittest, flake8, coverage | ||
|
||
# Run action on pull requests | ||
# Run on a published release and push to Pypi | ||
on: | ||
pull_request: | ||
branches: [ main ] | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
|
||
flake8: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.7' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install --upgrade pip | ||
python3 -m pip install flake8 | ||
- name: Lint with flake8 | ||
run: | | ||
flake8 topocalc | ||
coverage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.7' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install --upgrade pip | ||
python3 -m pip install coverage coveralls PyYAML | ||
python3 -m pip install -r requirements.txt | ||
- name: Run coverage | ||
run: | | ||
make coveralls | ||
unittest: | ||
needs: [flake8, coverage] | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest] | ||
python-version: [3.6, 3.7, 3.8, 3.9] | ||
runs-on: ${{ matrix.os }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|
||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install --upgrade pip | ||
python3 -m pip install -r requirements.txt | ||
- name: Run unittests | ||
run: | | ||
python3 setup.py test | ||
build_wheels: | ||
needs: unittest | ||
name: Build wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: [ubuntu-20.04, macos-10.15] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions/setup-python@v2 | ||
name: Install Python | ||
with: | ||
python-version: '3.8' | ||
|
||
- name: Build wheels | ||
uses: joerick/[email protected] | ||
env: | ||
CIBW_SOME_OPTION: value | ||
CIBW_TEST_REQUIRES: nose | ||
CIBW_TEST_COMMAND: "nosetests -vv --exe topocalc" | ||
CIBW_BUILD: "cp3*-manylinux_x86_64 cp3*-macosx_x86_64" | ||
CIBW_SKIP: "?p27* pp* ?p35" | ||
CIBW_BUILD_VERBOSITY: 3 | ||
CIBW_BEFORE_BUILD: "pip install -r requirements.txt" | ||
|
||
- uses: actions/upload-artifact@v2 | ||
with: | ||
path: ./wheelhouse/*.whl | ||
|
||
build_sdist: | ||
needs: unittest | ||
name: Build source distribution | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: actions/setup-python@v2 | ||
name: Install Python | ||
with: | ||
python-version: '3.8' | ||
|
||
- name: Install dependencies | ||
run: | | ||
python3 -m pip install --upgrade pip | ||
python3 -m pip install -r requirements.txt | ||
- name: Build sdist | ||
run: python setup.py sdist --formats=gztar | ||
|
||
- uses: actions/upload-artifact@v2 | ||
with: | ||
path: dist/*.tar.gz | ||
|
||
upload_pypi: | ||
needs: [build_wheels, build_sdist] | ||
runs-on: ubuntu-latest | ||
# upload to PyPI on every tag starting with 'v' | ||
# if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | ||
# alternatively, to publish when a GitHub Release is created, use the following rule: | ||
if: github.event_name == 'release' && github.event.action == 'published' | ||
steps: | ||
- uses: actions/download-artifact@v2 | ||
with: | ||
name: artifact | ||
path: dist | ||
|
||
- uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.pypi_password }} | ||
# To test: repository_url: https://test.pypi.org/legacy/ |
This file was deleted.
Oops, something went wrong.
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
numpy>=1.15 | ||
Click>=7.0 | ||
Cython>=0.28.4 | ||
spatialnc>=0.2.12 | ||
setuptools_scm<4.2 |
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
Oops, something went wrong.