Skip to content

Commit 600454b

Browse files
committed
Added env creation
1 parent 9bba29a commit 600454b

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

.github/workflows/linux.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,13 @@ jobs:
5656
echo "CXX=$CXX" >> $GITHUB_ENV
5757
- name: Checkout xsimd-algorithm
5858
uses: actions/checkout@v3
59-
# - name: Install mamba
60-
# uses: mamba-org/setup-micromamba@v1
61-
# with:
62-
# environment-file: environment.yml
59+
- name: Set conda environment
60+
uses: mamba-org/setup-micromamba@main
61+
with:
62+
environment-name: myenv
63+
environment-file: environment-dev.yml
64+
init-shell: bash
65+
cache-downloads: true
6366
# - name: Setup SDE
6467
# if: startswith(matrix.sys.flags, 'avx512')
6568
# run: sh install_sde.sh

environment-dev.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
name: xsimd-algorithm
2+
channels:
3+
- conda-forge
4+
dependencies:
5+
- cmake
6+
- xsimd=13.2.0
7+
- doctest
8+
- ninja

0 commit comments

Comments
 (0)