|
name: Build |
|
|
|
on: |
|
push: |
|
branches: [ master ] |
|
pull_request: |
|
branches: [ master ] |
|
|
|
jobs: |
|
build: |
|
runs-on: ${{ matrix.os }} |
|
strategy: |
|
matrix: |
|
include: |
|
- os: ubuntu-18.04 |
|
TARGET: ubuntu |
|
CMD_BUILD: pip install git+https://github.com/andreped/livermask.git |
|
|
|
- os: macos-10.15 |
|
TARGET: macos |
|
CMD_BUILD: pip install git+https://github.com/andreped/livermask.git |
|
|
|
- os: windows-2019 |
|
TARGET: windows |
|
CMD_BUILD: pip install git+https://github.com/andreped/livermask.git |
|
steps: |
|
- uses: actions/checkout@v1 |
|
- name: Set up Python 3.7 |
|
uses: actions/setup-python@v2 |
|
with: |
|
python-version: 3.7 |
|
|
|
- name: Install dependencies |
|
run: pip install wheel setuptools |
|
|
|
- name: Build wheel |
|
run: python setup.py bdist_wheel --universal |
|
|
|
- name: Install program for ${{matrix.TARGET}} |
|
run: ${{matrix.CMD_BUILD}} |
|
|
|
- name: Test CLI |
|
run: livermask --help |
|
|
|
- name: Download test sample |
|
run: | |
|
pip install gdown==4.4.0 |
|
mkdir samples |
|
cd samples |
|
gdown https://drive.google.com/uc?id=1shjSrFjS4PHE5sTku30PZTLPZpGu24o3 |
|
gdown https://drive.google.com/uc?id=1bNmls5o0Rxw5HvBF1IYnEzmpysYJaywN |
|
|
|
- name: Test inference |
|
run: | |
|
livermask --input samples --output samples --verbose --vessels |
|
|
|
- name: Upload Python wheel |
|
uses: actions/upload-artifact@v2 |
|
with: |
|
name: Python wheel |
|
path: ${{github.workspace}}/dist/livermask-*.whl |
|
if-no-files-found: error |
|
|