Skip to content

Commit 740c11a

Browse files
committed
Fix apt command in CI
1 parent 8dc4a23 commit 740c11a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
- name: Installing blast
1919
run: |
20-
sudo apt-get install -q -y ncbi-blast+
20+
sudo apt-get install -qq ncbi-blast+
2121
2222
- name: Install Haploflow
2323
run: |

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ RUN wget -qO rustup.sh https://sh.rustup.rs && \
4545
cargo install --root / --git https://github.com/jeff-k/merge-mates.git --rev 2fec61363f645e2008a4adff553d098beae21469
4646

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

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

0 commit comments

Comments
 (0)