File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 35
35
pip install --user scipion-installer
36
36
python3 -m scipioninstaller -conda -noXmipp -noAsk scipion
37
37
38
+ # Installing scipion-chem
39
+ # Checkout to Pull Request branch if exists, by default stays in devel
40
+ - name : Install scipion-chem (in branch ${{ github.head_ref }} if exists)
41
+ working-directory : ${{ github.workspace }}/../
42
+ env :
43
+ REPO_NAME : scipion-chem
44
+ BRANCH_NAME : ${{ github.head_ref }}
45
+ run : |
46
+ git clone https://github.com/scipion-chem/$REPO_NAME.git
47
+ if [ $(git ls-remote --heads https://github.com/scipion-chem/$REPO_NAME.git $BRANCH_NAME | wc -l) -eq 1 ]; then
48
+ cd $REPO_NAME && git checkout $BRANCH_NAME && cd -
49
+ fi
50
+ scipion/scipion3 installp -p $REPO_NAME --devel
51
+
38
52
- name : Checkout repository
39
53
uses : actions/checkout@main
40
54
with :
You can’t perform that action at this time.
0 commit comments