File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 2323 env :
2424 SCRIPT : |
2525 export DEBIAN_FRONTEND=noninteractive && \
26- apt-get update && apt-get install --no-install-recommends -y automake && \
26+ apt-get update && apt-get install --no-install-recommends -y automake libgsl-dev && \
2727 find /usr -name libz.so -exec rm {} \; && \
28+ find /usr -name libgsl\*.so -exec rm {} \; && \
2829 git clone --recursive https://github.com/samtools/htslib.git && \
2930 cd htslib && \
3031 autoreconf -i && \
3536 --disable-lzma \
3637 --disable-ref-cache \
3738 LDADD="-L/usr/local/lib" && \
38- make CFLAGS="-Wall -O2 -fvisibility=hidden" libhts.a && \
39+ make -j4 CFLAGS="-Wall -O2 -fvisibility=hidden" libhts.a && \
3940 cp libhts.a /usr/local/lib/ && \
4041 cp -r ../htslib /usr/local/include/ && \
4142 cd /workspace && \
4849 - name : Get version number
4950 id : get-vn
5051 run : |
51- awk '/AC_INIT/ {print "vn="$2}' configure.ac | sed -e "s/\[//; s/\]//; s/,//" >> "$GITHUB_OUTPUT"
52+ awk '/AC_INIT/ {print "vn="$2}' configure.ac | sed "s/\[//; s/\]//; s/,//" >> "$GITHUB_OUTPUT"
5253 env :
5354 GH_TOKEN : ${{ github.token }}
5455 - name : Upload the binary
You can’t perform that action at this time.
0 commit comments