Skip to content

Commit

Permalink
try updating base env instead
Browse files Browse the repository at this point in the history
  • Loading branch information
lrauschning committed Dec 19, 2024
1 parent fdaa4f1 commit 04a8ce2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_test_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
## run using source to preserve alias
#source ./example/example_workflow.sh

$CONDA/bin/conda activate msyd
#$CONDA/bin/conda activate msyd
$(tail -n +2 ./example/example_workflow.sh | sed -e 's/^syri/python <(echo "import syri.scripts.syri;syri.scripts.syri.main()")/' -e 's/^minimap2/.\/minimap2/' )
9 changes: 5 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,11 @@ runs:
# shell: bash
- name: Setup conda env, install msyd
run: |
$CONDA/bin/conda init
source ~/.bashrc
$CONDA/bin/conda env create -n msyd --file ./environment.yml
$CONDA/bin/conda activate msyd
#$CONDA/bin/conda init
#source ~/.bashrc
#$CONDA/bin/conda env create -n msyd --file ./environment.yml
#$CONDA/bin/conda activate msyd
conda env update -n base --file ./environment.yml
shell: bash
# python -m pip install mappy
- name: Build msyd
Expand Down

0 comments on commit 04a8ce2

Please sign in to comment.