File: .travis.yml

package info (click to toggle)
nmap 7.93%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 44,552 kB
  • sloc: cpp: 60,990; ansic: 30,785; python: 17,679; xml: 11,558; sh: 11,320; perl: 2,679; makefile: 1,000; java: 45; objc: 43
file content (26 lines) | stat: -rw-r--r-- 545 bytes parent folder | download | duplicates (2)
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
compiler:
  - gcc
  - clang
# Change this to your needs
sudo: false
script:
  - "mkdir /tmp/n"
  - "./configure $SSL_FLAG $LUA_FLAG --prefix=/tmp/n"
  - "make"
  - "make check"
  - "make install"
  - "/tmp/n/bin/nmap -A localhost"

env:
  - SSL_FLAG="--without-openssl" LUA_FLAG="--without-liblua"
  - SSL_FLAG="" LUA_FLAG="--without-liblua"
  - SSL_FLAG="--without-openssl" LUA_FLAG=""
  - SSL_FLAG="" LUA_FLAG=""

notifications:
  irc:
    channels:
      - "chat.freenode.net#nmap"
    on_success: change
    on_failure: always