forked from gkarthik/ivar
-
Notifications
You must be signed in to change notification settings - Fork 42
87 lines (79 loc) · 1.72 KB
/
ccpp.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build-linux:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
steps:
- uses: actions/checkout@master
- name: download htslib
run: |
wget https://github.com/samtools/htslib/archive/1.10.2.tar.gz
sudo apt-get install gcc-7
- name: untar
run: tar xf 1.10.2.tar.gz
- name: install htslib
env:
CC: gcc-7
run: |
cd htslib-1.10.2/
autoheader
autoconf
./configure
make
sudo make install
sudo ldconfig
- name: autotools
env:
CC: gcc-7
run: ./autogen.sh
- name: configure
env:
CC: gcc-7
run: ./configure
- name: make
env:
CC: gcc-7
run: make
- name: make check
env:
CC: gcc-7
run: make check
- name: make install
env:
CC: gcc-7
run: sudo make install
build-macos:
runs-on: [ macos-14 ]
steps:
- uses: actions/checkout@master
- name: install GNU autotools
run: |
brew install autoconf automake libtool
- name: download htslib
run: wget https://github.com/samtools/htslib/releases/download/1.12/htslib-1.12.tar.bz2
- name: untar
run: tar xf htslib-1.12.tar.bz2
- name: install htslib
run: |
cd htslib-1.12/
autoreconf -i
./configure
make
sudo make install
- name: autoconf
run: ./autogen.sh
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
- name: make install
run: sudo make install