forked from ilastik/hytra
-
Notifications
You must be signed in to change notification settings - Fork 1
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 #11 from ilastik/reproducible-merger-resolvers
Reproducible merger resolvers
- Loading branch information
Showing
11 changed files
with
113 additions
and
79 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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# Tracking Toolbox of the IAL Lab @ uni-heidelberg.de | ||
|
||
Build status: [![CircleCI](https://circleci.com/gh/ilastik/hytra.svg?style=svg)](https://circleci.com/gh/ilastik/hytra) | ||
|
||
By Carsten Haubold, Steffen Wolf, Letitia Parcalabescu, Bernhard Kausler, Martin Schiegg, Jaime I. Cervantes, Janez Ales and more. | ||
|
||
* Build status: [ ![Circle CI](https://circleci.com/gh/ilastik/hytra.png?style=shield&circle-token=27b4fff289dfdb41575cecfab8e865c7cac6a099) ](https://circleci.com/gh/chaubold/hytra) | ||
|
||
* build status: [![test](https://github.com/ilastik/hytra/actions/workflows/test.yml/badge.svg)](https://github.com/ilastik/hytra/actions/workflows/test.yml) | ||
* conda: ![last updated](https://anaconda.org/ilastik-forge/hytra/badges/latest_release_date.svg) ![latest-version](https://anaconda.org/ilastik-forge/hytra/badges/version.svg) | ||
* Usage documentation can be found in this [Google document](https://docs.google.com/document/d/1jxkYGlTEUCPqH03pip03eDBBX2pVYEhPGHHvbegHiWw/edit?usp=sharing) | ||
* [API Docs](http://chaubold.github.io/hytra/hytra/index.html) | ||
* Run tests using `nosetests tests` from the root folder |
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
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