mirror of
https://github.com/SELinuxProject/setools
synced 2025-03-01 10:31:19 +00:00
70 lines
1.6 KiB
YAML
70 lines
1.6 KiB
YAML
# SELinux userspace portions originally by Nicolas Iooss
|
|
# from: https://github.com/fishilico/selinux-refpolicy-patched/blob/travis-upstream/.travis.yml
|
|
---
|
|
|
|
language: python
|
|
|
|
python:
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- env: TOX_ENV=pep8
|
|
- env: TOX_ENV=coverage
|
|
- env: TOX_ENV=lint
|
|
|
|
allow_failures:
|
|
- env: TOX_ENV=coverage
|
|
|
|
sudo: required
|
|
dist: trusty
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
# Install SELinux userspace utilities dependencies
|
|
- bison
|
|
- flex
|
|
- gettext
|
|
- libaudit-dev
|
|
- libbz2-dev
|
|
- libustr-dev
|
|
- libpcre3-dev
|
|
|
|
before_install:
|
|
- lsb_release -a
|
|
- bison -V
|
|
- flex -V
|
|
- python -V
|
|
- sudo apt-get update -qq
|
|
|
|
install:
|
|
- SELINUX_USERSPACE_VERSION=libsepol-2.7
|
|
|
|
# Download current SELinux userspace tools and libraries
|
|
- git clone https://github.com/SELinuxProject/selinux.git selinux-src -b ${SELINUX_USERSPACE_VERSION}
|
|
|
|
# Only portions of the toolchain are necessary
|
|
- sed -i -e 's/^SUBDIRS=.*/SUBDIRS=libsepol libselinux checkpolicy/' selinux-src/Makefile
|
|
|
|
# Compile and install SELinux toolchain
|
|
# On Ubuntu 12.04, default CFLAGS make the build fail in libsepol/cil with:
|
|
# error: declaration of 'index' shadows a global declarationo
|
|
- sudo make CFLAGS="-O2 -pipe -fPIC -Wall" -C selinux-src install
|
|
|
|
# Ubuntu 12.04's flex generates a redundant decl in libqpol
|
|
- sed -i -e "/Wwrite-strings/s/,/, '-Wno-redundant-decls',/" setup.py
|
|
|
|
- pip install tox-travis cython
|
|
|
|
script:
|
|
- tox --version
|
|
- |
|
|
[ -z "$TOX_ENV" ] && tox || tox -e $TOX_ENV
|
|
|
|
after_failure:
|
|
- cat "${TRAVIS_BUILD_DIR}/.tox/tox-0.log"
|