-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from ilastik/main
sync up with fork
- Loading branch information
Showing
94 changed files
with
5,460 additions
and
3,974 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: deploy | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
|
||
jobs: | ||
deploy-to-ilastik-forge: | ||
# noarch build - build on linux, only | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/checkout@v3 | ||
with: | ||
repository: ilastik/ilastik-conda-recipes | ||
path: ilastik-conda-recipes | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
auto-update-conda: true | ||
auto-activate-base: true | ||
activate-environment: "" | ||
miniforge-variant: Mambaforge | ||
use-mamba: true | ||
- name: linux conda build and upload | ||
shell: bash -l {0} | ||
env: | ||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_TOKEN }} | ||
run: | | ||
mamba install -n base -c conda-forge boa setuptools_scm anaconda-client -y | ||
mamba config --set anaconda_upload yes | ||
conda mambabuild -c ilastik-forge -c conda-forge -m ilastik-conda-recipes/ilastik-pins.yaml --user ilastik-forge conda-recipe |
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,40 @@ | ||
name: test | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
test-w-conda-recipe: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-latest, windows-latest, ubuntu-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
activate-environment: "" | ||
auto-activate-base: true | ||
auto-update-conda: true | ||
miniforge-variant: Mambaforge | ||
use-mamba: true | ||
- name: install build deps | ||
run: mamba install -n base -c conda-forge boa setuptools_scm -y | ||
- name: linux conda build test | ||
if: matrix.os == 'ubuntu-latest' | ||
shell: bash -l {0} | ||
run: conda mambabuild -c ilastik-forge -c conda-forge conda-recipe | ||
- name: osx test | ||
if: matrix.os == 'macos-latest' | ||
shell: bash -l {0} | ||
run: conda mambabuild -c ilastik-forge -c conda-forge conda-recipe | ||
- name: windows conda-build | ||
if: matrix.os == 'windows-latest' | ||
shell: cmd /C CALL {0} | ||
run: conda mambabuild -c ilastik-forge -c conda-forge conda-recipe |
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 |
---|---|---|
|
@@ -6,6 +6,7 @@ | |
CMakeCache* | ||
*.pyc | ||
*_test | ||
__pycache__ | ||
tags* | ||
Testing | ||
CMakeFiles | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,2 @@ | ||
networkx: | ||
- 1.11 | ||
python: | ||
- 3.6 | ||
|
||
|
||
pin_run_as_build: | ||
python: x.x | ||
- 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: hytra-dev | ||
channels: | ||
- ilastik-forge | ||
- conda-forge | ||
- defaults | ||
dependencies: | ||
- black | ||
- configargparse | ||
- dpct | ||
- h5py | ||
- jinja2 | ||
- networkx >=2.2 | ||
- nose | ||
- pre_commit | ||
- python >=3.7 | ||
- scikit-image | ||
- scikit-learn | ||
- vigra | ||
- yapsy |
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
Oops, something went wrong.