Skip to content

Commit 52d4cd3

Browse files
committed
add deps; format
1 parent f17aa88 commit 52d4cd3

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.github/workflows/integration-test.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,18 @@ jobs:
5050

5151
- name: Set up SDSL
5252
run: sudo apt-get -y install libsdsl-dev
53-
54-
- name: Set up htslib
55-
run: wget https://github.com/samtools/htslib/releases/download/1.18/htslib-1.18.tar.bz2 && tar -vxjf htslib-1.18.tar.bz2 && cd htslib-1.18 && ./configure && make && sudo make install && cd ../ && rm htslib-1.18.tar.bz2
53+
54+
- name: Set up htslib (using v1.18)
55+
run:
56+
sudo apt-get -y install libbz2-dev liblzma-dev &&
57+
wget https://github.com/samtools/htslib/releases/download/1.18/htslib-1.18.tar.bz2 &&
58+
tar -vxjf htslib-1.18.tar.bz2 &&
59+
cd htslib-1.18 &&
60+
./configure &&
61+
make &&
62+
sudo make install &&
63+
cd ../ &&
64+
rm htslib-1.18.tar.bz2
5665

5766
- name: Configure CMake
5867
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.

0 commit comments

Comments
 (0)