-
Notifications
You must be signed in to change notification settings - Fork 10
36 lines (33 loc) · 1.26 KB
/
conda.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Anaconda
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
strategy:
max-parallel: 5
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: '3.10'
#- name: Add conda to system path
# run: |
# # $CONDA is an environment variable pointing to the root of the miniconda directory
# echo $CONDA/bin >> $GITHUB_PATH
- name: Install mamba
run: |
wget -nv -O Miniforge.sh /~https://github.com/conda-forge/miniforge/releases/download/24.11.3-0/Miniforge3-24.11.3-0-$(uname)-$(uname -m).sh
bash Miniforge.sh -b -p ./mambaforge
./mambaforge/bin/mamba init
source ./mambaforge/etc/profile.d/conda.sh
- name: Create generic environment
run: |
source ./mambaforge/etc/profile.d/conda.sh && mamba env create -f environment.yml
- name: Create R environment
run: |
source ./mambaforge/etc/profile.d/conda.sh && mamba env create -f assets/r-environment.yml
- name: Create conda environment
run: |
source ./mambaforge/etc/profile.d/conda.sh && mamba remove -y -n nf-LO --all
source ./mambaforge/etc/profile.d/conda.sh && mamba env create -f assets/environment.yml