We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bba29a commit 600454bCopy full SHA for 600454b
2 files changed
.github/workflows/linux.yml
@@ -56,10 +56,13 @@ jobs:
56
echo "CXX=$CXX" >> $GITHUB_ENV
57
- name: Checkout xsimd-algorithm
58
uses: actions/checkout@v3
59
- # - name: Install mamba
60
- # uses: mamba-org/setup-micromamba@v1
61
- # with:
62
- # environment-file: environment.yml
+ - name: Set conda environment
+ uses: mamba-org/setup-micromamba@main
+ with:
+ environment-name: myenv
63
+ environment-file: environment-dev.yml
64
+ init-shell: bash
65
+ cache-downloads: true
66
# - name: Setup SDE
67
# if: startswith(matrix.sys.flags, 'avx512')
68
# run: sh install_sde.sh
environment-dev.yml
@@ -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