Skip to content

Translated using Weblate (Romanian) #560

Translated using Weblate (Romanian)

Translated using Weblate (Romanian) #560

Workflow file for this run

name: CI Debian
on: [push, pull_request]
jobs:
Tests:
runs-on: ubuntu-latest
container: debian
steps:
- name: Install additional packages
run: apt-get update && apt-get install -y --no-install-recommends acl-dev autoconf automake docbook-xsl e2fslibs-dev g++ gettext libboost-dev libboost-system-dev libboost-test-dev libboost-thread-dev libbtrfs-dev libdbus-1-dev libjson-c-dev libmount-dev libpam-dev libtool libxml2-dev libz-dev locales-all make ncurses-dev xsltproc xz-utils
- name: List installed packages
run: apt list --installed | sort
- name: Git checkout
uses: actions/checkout@v1
- name: Configure
run: make -f Makefile.repo
- name: Compile
run: make -j 2
- name: Install
run: make install
- name: Run unit tests
run: make -j 2 check VERBOSE=1
- name: Make package
run: make package