Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 12 additions & 7 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,23 @@ concurrency:

jobs:
regression:
name: Regression
runs-on: ubuntu-24.04
timeout-minutes: 30
name: Regression (${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
fail-fast: false
matrix:
os: [ubuntu-26.04, macos-26-intel, macos-26]

steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8

- name: Setup Conda
uses: conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4
- name: Setup Mamba
uses: conda-incubator/setup-miniconda@v4.1.0
with:
miniforge-variant: Miniforge3
mamba-version: "*"
auto-activate: true
activate-environment: base
conda-remove-defaults: true
Expand All @@ -33,7 +38,7 @@ jobs:
- name: Install conda-build
shell: bash -l {0}
run: |
conda install -y \
mamba install -y \
--override-channels \
-c conda-forge \
conda-build
Expand All @@ -49,7 +54,7 @@ jobs:

docs:
name: Docs
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
timeout-minutes: 20

steps:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/regression-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,13 @@ concurrency:

jobs:
regression:
name: SIST Regression
runs-on: ubuntu-24.04
name: SIST Regression (${{ matrix.os }})
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [ubuntu-26.04, macos-26-intel, macos-26]

steps:
- name: Checkout
Expand Down
16 changes: 10 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
checks:
name: Version check
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout repository
id: repo
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
version:
name: prepare ${{ github.event.inputs.version }}
needs: checks
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:

- name: checkout
Expand Down Expand Up @@ -141,7 +141,7 @@ jobs:
tag:
name: tag release
needs: version
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
Expand All @@ -158,7 +158,7 @@ jobs:
release:
name: make github release
needs: tag
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:

- name: create release
Expand Down Expand Up @@ -206,9 +206,13 @@ jobs:
--data-urlencode "content=${CONTENT}"

conda:
name: publish conda to anaconda.org
name: publish conda to anaconda.org (${{ matrix.os }})
needs: [tag, release]
runs-on: ubuntu-24.04
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-26.04, macos-26-intel, macos-26]

steps:
- name: Checkout
Expand Down
9 changes: 9 additions & 0 deletions docs/source/installation.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Installation
============

Supported platforms
--------------------

SIST's Conda package is built and tested on:

* ``linux-64``
* ``osx-64``
* ``osx-arm64``

Conda
-----

Expand Down
1 change: 1 addition & 0 deletions src/sist/ir_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,7 @@ def _score_reports(
str(self.IRF_MAX_LENGTH),
str(self.IRF_MAX_LOOP),
],
stdin=subprocess.DEVNULL,
stdout=subprocess.DEVNULL,
stderr=subprocess.DEVNULL,
check=False,
Expand Down
Loading