Translated using Weblate (Japanese) #432
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI Leap | |
on: [push, pull_request] | |
jobs: | |
Tests: | |
runs-on: ubuntu-latest | |
container: opensuse/leap | |
steps: | |
- name: Install additional packages | |
run: zypper --non-interactive in --no-recommends autoconf automake docbook-xsl-stylesheets gcc-c++ gettext-runtime glibc-locale libboost_headers-devel libboost_test-devel libjson-c-devel libstorage-ng-devel libtool libxslt make xz | |
- name: List installed packages | |
run: rpm -qa | 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 |