Skip to content

Commit

Permalink
Merge pull request #9 from ilastik/devel
Browse files Browse the repository at this point in the history
sync devel
  • Loading branch information
k-dominik authored Mar 4, 2024
2 parents 649a633 + 38e606f commit 064d0e6
Show file tree
Hide file tree
Showing 151 changed files with 1,088 additions and 18,129 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: test

on:
push:
branches: [ main, devel ]
pull_request:
branches: [ main, devel ]

jobs:
test-w-conda-recipe:
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
auto-activate-base: true
activate-environment: ""
channel-priority: strict
miniforge-variant: Mambaforge
use-mamba: true
- name: install common dependencies
run: mamba install -n base -c conda-forge conda-build boa -y
- name: linux conda build
if: matrix.os == 'ubuntu-latest'
shell: bash -l {0}
run: conda mambabuild -c conda-forge pkg/conda
- name: osx conda build
if: matrix.os == 'macos-latest'
shell: bash -l {0}
run: conda mambabuild -c conda-forge pkg/conda
- name: windows conda build
if: matrix.os == 'windows-latest'
shell: cmd /C CALL {0}
run: conda mambabuild -c conda-forge pkg/conda
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "simde"]
path = simde
url = https://github.com/simd-everywhere/simde
Loading

0 comments on commit 064d0e6

Please sign in to comment.