File: .travis.yml

package info (click to toggle)
libapache2-mod-auth-openidc 2.4.9.4-0%2Bdeb11u4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,884 kB
  • sloc: ansic: 18,145; makefile: 104; sh: 2
file content (28 lines) | stat: -rw-r--r-- 502 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
language: c

arch:
  - amd64
  - ppc64le

addons:
  apt:
    packages:
    - libssl-dev
    - libcurl4-openssl-dev
    - libjansson-dev
    - libhiredis-dev
    - libpcre3-dev
    - apache2-dev
    - check

install:
  - wget https://github.com/cisco/cjose/archive/0.5.1.tar.gz
  - tar zxvf 0.5.1.tar.gz
  - cd cjose-0.5.1
  - ./configure --prefix=/usr
  - make test
  - sudo make install
  - cd -

script:
  - ./autogen.sh && ./configure --with-apxs2=/usr/bin/apxs2 CFLAGS=-Werror && make && make test