Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
f88a2a2
Run conda install workflow on pull requests
FFroehlich Jun 26, 2025
3cb8f67
Update conda install workflow
FFroehlich Jun 27, 2025
415cff4
remove BLAS_LIBS
FFroehlich Jun 30, 2025
5017666
Merge branch 'main' into 92qzwt-codex/add-cron-run-github-action-for-…
FFroehlich Jul 1, 2025
68c59c2
don‘t install BLAS
FFroehlich Jul 1, 2025
d2f1cf8
install from git
FFroehlich Jul 1, 2025
eb28923
-v
dweindl Jul 2, 2025
9232bb2
env
dweindl Jul 2, 2025
226a9f1
compilers
dweindl Jul 2, 2025
c6f2e1c
clang-tools
dweindl Jul 2, 2025
6487135
Merge branch 'main' into 92qzwt-codex/add-cron-run-github-action-for-…
dweindl Oct 20, 2025
98a5490
..
dweindl Oct 20, 2025
f122de0
..
dweindl Oct 20, 2025
74c88fc
report Python3 INCLUDE_DIRS and LIBRARIES
FFroehlich Nov 4, 2025
7aca4b7
ls
dweindl Nov 4, 2025
efb3389
Modify conda install command in workflow
FFroehlich Nov 5, 2025
6979f1d
Fix conda install command for compilers
FFroehlich Nov 5, 2025
23fc834
do not link python runtime, install conda tools
FFroehlich Nov 7, 2025
f2e2a9e
Update test_conda_install.yml
FFroehlich Nov 7, 2025
3165d1c
Update test_conda_install.yml
FFroehlich Nov 7, 2025
1580a35
Update test_conda_install.yml
FFroehlich Nov 7, 2025
9a909c4
Update test_conda_install.yml
FFroehlich Nov 7, 2025
b6be53e
Update CMakeLists.txt
FFroehlich Nov 7, 2025
b4bea41
Update test_conda_install.yml
FFroehlich Nov 7, 2025
114e225
simplify
FFroehlich Nov 7, 2025
ede4ffa
no conda compilers, multiversion
FFroehlich Nov 7, 2025
ac67952
update doc
FFroehlich Nov 7, 2025
a8bfe6e
use conda compilers
FFroehlich Nov 7, 2025
ed6743b
Update CMakeLists.txt
dweindl Nov 10, 2025
fced0f3
Update test_conda_install.yml
FFroehlich Nov 10, 2025
6958fe9
Merge branch '92qzwt-codex/add-cron-run-github-action-for-amici-insta…
FFroehlich Nov 10, 2025
59d0e50
Update test_conda_install.yml
FFroehlich Nov 10, 2025
a1ce620
Update .github/workflows/test_conda_install.yml
dweindl Nov 10, 2025
6aa031c
Revert "Update .github/workflows/test_conda_install.yml"
dweindl Nov 10, 2025
ab4dfa9
openmp?
dweindl Nov 10, 2025
70449f5
..
dweindl Nov 10, 2025
cfcf943
dbg
dweindl Nov 10, 2025
a6669f9
dbg
dweindl Nov 10, 2025
f153613
dbg
dweindl Nov 10, 2025
4a934fe
no --user
dweindl Nov 10, 2025
8d675cb
conda cmake
dweindl Nov 10, 2025
124e362
cleanup
dweindl Nov 12, 2025
3006503
coe
dweindl Nov 12, 2025
6a43cb9
Merge branch 'main' into 92qzwt-codex/add-cron-run-github-action-for-…
dweindl Nov 12, 2025
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
34 changes: 34 additions & 0 deletions .github/workflows/test_conda_install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Conda installation
on:
workflow_dispatch:
schedule:
- cron: '48 4 * * *'
pull_request:
branches:
- main

jobs:
conda:
name: Conda installation
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, macos-latest]
python-version: ['3.11']
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Miniconda
uses: conda-incubator/setup-miniconda@v3
with:
python-version: ${{ matrix.python-version }}
auto-update-conda: true
activate-environment: amici
- name: Install AMICI
shell: bash -l {0}
run: conda install -y -c conda-forge amici
- name: Test import
shell: bash -l {0}
run: |
python -c "from amici import _amici; print(_amici)"
python -m amici
Loading