Updated xcftools submodule #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: | | |
sudo apt install libboost-all-dev libcurl4-openssl-dev liblzma-dev git -y | |
wget https://github.com/samtools/htslib/releases/download/1.16/htslib-1.16.tar.bz2 | |
tar -xf htslib-1.16.tar.bz2 | |
mv htslib-1.16 htslib | |
cd htslib | |
autoheader; autoconf; ./configure; #optional | |
make | |
sudo make install | |
- name: Update submodules | |
run: git submodule update --init --recursive | |
- name: Build | |
run: make |