[go: up one dir, main page]

File: .travis.yml

package info (click to toggle)
freebayes 1.3.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,984 kB
  • sloc: cpp: 125,778; ansic: 4,581; sh: 1,084; python: 672; asm: 271; javascript: 94; lisp: 85; makefile: 37; perl: 27
file content (26 lines) | stat: -rw-r--r-- 519 bytes parent folder | download | duplicates (3)
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
language: cpp
os: linux
dist: focal
addons:
  apt:
    packages:
      - bc
      - samtools
      - parallel
      - meson
      - ninja-build
      - libvcflib-tools
      - vcftools
jobs:
  include:
    - arch: amd64
      compiler: gcc
    - arch: arm64
      compiler: gcc
    - arch: arm64
      compiler: clang
script:
  - if [ "$TRAVIS_CPU_ARCH" = arm64 ]; then meson_opts="-Doptimization=0"; fi
  - meson build/ $meson_opts
  - ninja -C build/
  - meson test --timeout-multiplier 8 --print-errorlogs -C build/