Skip to content

Commit

Permalink
change mamba to conda
Browse files Browse the repository at this point in the history
  • Loading branch information
kfir4444 committed Nov 20, 2024
1 parent 39ab08c commit fab8c1a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/cont_int.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,11 +149,11 @@ jobs:
CACHE_NUMBER: 0
id: cache-arc-env
- name: Update environment
run: mamba env update -n arc_env -f environment.yml
run: conda env update -n arc_env -f environment.yml
if: steps.cache-arc-env.outputs.cache-hit != 'true'

- name: Install codecov
run: mamba install -y -c conda-forge codecov
run: conda install -y -c conda-forge codecov

- name: Cythonize RMG-Py
run: |
Expand All @@ -179,9 +179,9 @@ jobs:
echo 'export PATH=$PATH:'"$(pwd)" >> $GITHUB_ENV
echo 'export PYTHONPATH=$PYTHONPATH:'"$(pwd)" >> ~/.bashrc
echo 'export PATH=$PATH:'"$(pwd)" >> ~/.bashrc
mamba env create -f environment.yml
conda env create -f environment.yml
# install pyaml
mamba install -n tst_env -c conda-forge -y pyyaml
conda install -n tst_env -c conda-forge -y pyyaml
cd ..
- name: Install TS-GCN
Expand All @@ -192,7 +192,7 @@ jobs:
echo 'export PYTHONPATH=$PYTHONPATH:'"$(pwd)" >> ~/.bashrc
echo 'export PATH=$PATH:'"$(pwd)" >> ~/.bashrc
bash devtools/create_env_cpu.sh
mamba env update -n ts_gcn -f environment.yml
conda env update -n ts_gcn -f environment.yml
cd ..
- name: Install KinBot
Expand All @@ -209,19 +209,19 @@ jobs:
- name: Install OpenBabel
run: |
mamba env create -f devtools/ob_environment.yml
conda env create -f devtools/ob_environment.yml
- name: Install Sella
run: |
mamba env create -f devtools/sella_environment.yml
conda env create -f devtools/sella_environment.yml
- name: Install Torch Ani
run: |
mamba env create -f devtools/tani_environment.yml
conda env create -f devtools/tani_environment.yml
- name: Install XTB
run: |
mamba env create -f devtools/xtb_environment.yml
conda env create -f devtools/xtb_environment.yml
- name: Test with pytest
shell: bash -el {0}
Expand Down

0 comments on commit fab8c1a

Please sign in to comment.