Skip to content

Commit

Permalink
Fix apt command in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Donaim committed Dec 6, 2024
1 parent 8dc4a23 commit 740c11a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- name: Installing blast
run: |
sudo apt-get install -q -y ncbi-blast+
sudo apt-get install -qq ncbi-blast+
- name: Install Haploflow
run: |
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ RUN wget -qO rustup.sh https://sh.rustup.rs && \
cargo install --root / --git https://github.com/jeff-k/merge-mates.git --rev 2fec61363f645e2008a4adff553d098beae21469

## Installing blast
RUN apt-get install -q -y ncbi-blast+ && \
rm -rf /var/lib/apt/lists/*
RUN apt-get update -qq --fix-missing && \
apt-get install -q -y ncbi-blast+

## bowtie2
RUN wget -q -O bowtie2.zip https://github.com/BenLangmead/bowtie2/releases/download/v2.2.8/bowtie2-2.2.8-linux-x86_64.zip && \
Expand Down

0 comments on commit 740c11a

Please sign in to comment.