File: .travis.yml

package info (click to toggle)
libjwt 1.17.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 808 kB
  • sloc: ansic: 5,688; makefile: 90; sh: 16
file content (29 lines) | stat: -rw-r--r-- 415 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
25
26
27
28
29
dist: jammy
language: c

os:
 - linux
arch:
 - amd64
 
compiler:
  - gcc
addons:
  apt:
    packages:
    - libjansson-dev
    - check
    - libssl-dev
    - lcov
    - gnutls-dev
before_install:
  - sudo pip install codecov
  - autoreconf -fi
script:
  - ./configure --without-openssl
  - make check
  - make distclean
  - ./configure --enable-code-coverage
  - make check-code-coverage
after_success:
  - codecov