forked from samtools/samtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.cirrus.yml
187 lines (154 loc) · 5.18 KB
/
.cirrus.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
# Note we have a maximum of 16 CPUs available, so adjust our
# builds so we can start all concurrently without needing to schedule.
# Sadly though there is still a finite limit to macOS of one instance.
# Can we cull our Mac test to just one instance?
timeout_in: 10m
#--------------------------------------------------
# Template: htslib clone & build
#
# We try to clone htslib using the same branch name and owner as this
# samtools branch. If it exists, it's likely the user is making a
# joint samtools+htslib PR and wants both checked in unison.
# Failing that we use samtools/htslib:develop.
# Note this only works on the users own forks. Once in the samtools
# organisation the branch name becomes pull/<num>.
# Logic for choosing which to use is in the .ci_helpers/clone script.
# Note we could also use "clone_script" if we want to replace the samtools
# clone with our own commands too.
clone_template: &HTSLIB_CLONE
htslib_clone_script: |
printenv CIRRUS_CHANGE_TITLE
.ci_helpers/clone "https://github.com/${CIRRUS_REPO_OWNER}/htslib" "${HTSDIR}" "${CIRRUS_BRANCH}" `printenv CIRRUS_CHANGE_TITLE | sed -n 's/.*htslib#\([0-9]*\).*/\1/p'`
htslib_compile_template: &HTSLIB_COMPILE
<< : *HTSLIB_CLONE
htslib_compile_script: |
cd $HTSDIR
autoreconf -i
if test "x$WERROR" != "xno"; then CONFIG_OPTS="--enable-werror"; fi
eval ./configure $CONFIG_OPTS --prefix=`pwd`/../inst \
CFLAGS=\"$CFLAGS\" CPPFLAGS=\"$CPPFLAGS\" LDFLAGS=\"$LDFLAGS\" \
|| (cat config.log; /bin/false)
make -j3 install
#--------------------------------------------------
# Template: samtools compile and test
compile_template: &COMPILE
<< : *HTSLIB_COMPILE
compile_script: |
autoreconf -i
if test "x$WERROR" != "xno"; then CONFIG_OPTS="--enable-werror"; fi
eval ./configure $CONFIG_OPTS --with-htslib=`pwd`/inst \
LDFLAGS=\"$LDFLAGS -Wl,-rpath,`pwd`/inst/lib\" \
CFLAGS=\"$CFLAGS\" CPPFLAGS=\"$CPPFLAGS\" || \
(cat config.log; /bin/false)
make -j3
test_template: &TEST
test_script: |
if test "x$DO_MAINTAINER_CHECKS" = "xyes" ; then
make maintainer-check
fi
make
make test BGZIP=inst/bin/bgzip
#--------------------------------------------------
# Task: linux builds.
# Debian + latest GCC
gcc_task:
name: debian-gcc
container:
image: gcc:latest
cpu: 2
memory: 1G
environment:
LC_ALL: C
CIRRUS_CLONE_DEPTH: 1
HTSDIR: ./hidden-htslib
DO_MAINTAINER_CHECKS: yes
# gcc ubsan is incompatible with some -Wformat options, but they're checked
# in other tests. See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87884
CFLAGS: -g -Og -std=c99 -D_XOPEN_SOURCE=600 -pedantic -fsanitize=address,undefined -Wno-format-truncation -Wno-format-overflow
CPPFLAGS: -DHTS_ALLOW_UNALIGNED=0
LDFLAGS: -fsanitize=address,undefined
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1
<< : *COMPILE
<< : *TEST
# Ubuntu + Clang
ubuntu_task:
name: ubuntu-clang
container:
image: ubuntu:latest
#image: ubuntu:devel
cpu: 2
memory: 1G
environment:
CC: clang
LC_ALL: C
CIRRUS_CLONE_DEPTH: 1
HTSDIR: ./hidden-htslib
matrix:
- environment:
CFLAGS: -std=gnu99 -O0
- environment:
CFLAGS: -g -Wall -Wformat -Wformat=2 -O3
LDFLAGS: -Wl,-rpath,`pwd`/inst/lib
# NB: we could consider building a docker image with these
# preinstalled and specifying that instead, to speed up testing.
install_script: |
apt-get update
apt-get install -y --no-install-suggests --no-install-recommends \
ca-certificates clang git autoconf automake make zlib1g-dev \
libbz2-dev liblzma-dev libcurl4-gnutls-dev libssl-dev \
libdeflate-dev libncurses5-dev
<< : *COMPILE
<< : *TEST
# Rocky Linux
rocky_task:
name: rockylinux-gcc
container:
image: rockylinux:9
cpu: 2
memory: 1G
environment:
LC_ALL: C
CIRRUS_CLONE_DEPTH: 1
HTSDIR: ./hidden-htslib
CFLAGS: -O2 -Wextra -Wformat -Wformat=2 -Wno-sign-compare -Wno-missing-field-initializers -Wno-unused-parameter
# NB: we could consider building a docker image with these
# preinstalled and specifying that instead, to speed up testing.
install_script: |
yum install -y autoconf automake make gcc perl-Data-Dumper perl-FindBin \
zlib-devel bzip2 bzip2-devel xz-devel curl-devel openssl-devel \
ncurses-devel git diffutils
<< : *COMPILE
<< : *TEST
#--------------------------------------------------
# Task: macOS builds
macosx_task:
name: macosx + clang
macos_instance:
image: ghcr.io/cirruslabs/macos-ventura-base:latest
environment:
CC: clang
LC_ALL: C
CIRRUS_CLONE_DEPTH: 1
HTSDIR: ./hidden-htslib
CFLAGS: -g -Wall -O2
package_install_script:
- HOMEBREW_NO_AUTO_UPDATE=1 brew install autoconf automake libtool xz
<< : *COMPILE
<< : *TEST
# #--------------------------------------------------
# # Task: FreeBSD builds
#
# # Slow to launch? Commented out for now.
# freebsd_task:
# name: freebsd + gcc
#
# freebsd_instance:
# image_family: freebsd-12-1
# cpu: 1
# memory: 1G
# #
# # install_script: |
# # pkg install -y ... to be determined
#
# << : *COMPILE
# << : *TEST