Skip to content

Commit

Permalink
Fix syntax in workflow files.
Browse files Browse the repository at this point in the history
  • Loading branch information
chtsai0105 committed Nov 1, 2023
1 parent 01f7115 commit db46003
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build-aster.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,20 @@ jobs:
run: sudo apt-get install build-essential cmake g++ wget unzip

- name: Compile ASTER
if: steps.cache.outputs.cache-hit != 'true'
run: |
wget https://github.com/chaoszhang/ASTER/archive/refs/heads/Linux.zip
unzip Linux.zip
cd ASTER-Linux
make
- name: Move executable
if: steps.cache.outputs.cache-hit != 'true'
working-directory: ${{ github.workspace }}
run: |
mkdir -p ~/.local/bin
cp ASTER-Linux/bin/astral ~/.local/bin/
chmod +x ~/.local/bin/astral
working-directory: ${{ github.workspace }}
- name: Export ASTER to PATH and verify
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/build-fasttree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,12 @@ jobs:
wget http://www.microbesonline.org/fasttree/FastTree
- name: Move executable
if: steps.cache.outputs.cache-hit != 'true'
working-directory: ${{ github.workspace }}
run: |
mkdir -p ~/.local/bin
cp FastTree ~/.local/bin/
chmod +x ~/.local/bin/FastTree
working-directory: ${{ github.workspace }}
- name: Export FastTree to PATH and verify
run: |
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-veryfasttree.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
run: sudo apt-get install build-essential cmake g++ wget unzip

- name: Compile VeryFastTree
if: steps.cache.outputs.cache-hit != 'true'
run: |
wget https://github.com/citiususc/veryfasttree/archive/refs/tags/v4.0.3.zip
unzip v4.0.3.zip
Expand All @@ -28,11 +29,12 @@ jobs:
make
- name: Move executable
if: steps.cache.outputs.cache-hit != 'true'
working-directory: ${{ github.workspace }}
run: |
mkdir -p ~/.local/bin
cp veryfasttree-4.0.3/VeryFastTree ~/.local/bin/
chmod +x ~/.local/bin/VeryFastTree
working-directory: ${{ github.workspace }}
- name: Export VeryFastTree to PATH and verify
run: |
Expand Down

0 comments on commit db46003

Please sign in to comment.