File: .travis.yml

package info (click to toggle)
minimap2 2.24%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,316 kB
  • sloc: ansic: 8,567; javascript: 3,200; makefile: 148; python: 84; sh: 42; perl: 29
file content (24 lines) | stat: -rw-r--r-- 603 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
matrix:
  include:
    - language: c
      compiler: gcc
      script: make
    - language: c
      compiler: clang
      script: make
    - arch: arm64
      language: c
      compiler: gcc
      script: make arm_neon=1 aarch64=1
    - language: python
      python: "2.7"
      before_install: pip install cython
      script: python setup.py build_ext
    - language: python
      python: "3.5"
      before_install: pip install cython
      script: python setup.py build_ext
    - language: python
      python: "3.9"
      before_install: pip install cython
      script: python setup.py build_ext