RFE: add tests for Rust bindings #265
Workflow file for this run
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
# | |
# Continuous Integration Workflow for libseccomp | |
# | |
# Copyright (c) 2021 Oracle and/or its affiliates. | |
# Author: Tom Hromatka <tom.hromatka@oracle.com> | |
# | |
# | |
# This library is free software; you can redistribute it and/or modify it | |
# under the terms of version 2.1 of the GNU Lesser General Public License as | |
# published by the Free Software Foundation. | |
# | |
# This library is distributed in the hope that it will be useful, but WITHOUT | |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License | |
# for more details. | |
# | |
# You should have received a copy of the GNU Lesser General Public License | |
# along with this library; if not, see <http://www.gnu.org/licenses>. | |
# | |
name: Continuous Integration | |
on: ["push", "pull_request"] | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout from github | |
uses: actions/checkout@v3 | |
- name: Initialize libseccomp | |
uses: ./.github/actions/setup | |
- name: Build libseccomp | |
run: | | |
./configure --prefix=$(pwd)/src/.libs --enable-python --enable-rust | |
# make and make install are required to create a pkconfig because | |
# the Rust bindings need it for the compilation. | |
make | |
make install | |
make check-build | |
- name: Run tests | |
run: | | |
LIBSECCOMP_TSTCFG_JOBS=0 \ | |
LIBSECCOMP_TSTCFG_STRESSCNT=5 make check | |
livetests: | |
name: Live Tests | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout from github | |
uses: actions/checkout@v3 | |
- name: Initialize libseccomp | |
uses: ./.github/actions/setup | |
- name: Build libseccomp | |
run: | | |
./configure --prefix=$(pwd)/src/.libs --enable-python --enable-rust | |
# make and make install are required to create a pkconfig because | |
# the Rust bindings need it for the compilation. | |
# This can be removed when the Rust bindings drop the version check by pkgconfig. | |
make | |
make install | |
make check-build | |
- name: Run live tests | |
run: | | |
LIBSECCOMP_TSTCFG_JOBS=0 \ | |
LIBSECCOMP_TSTCFG_TYPE=live \ | |
LIBSECCOMP_TSTCFG_MODE_LIST="c rust" make -C tests check | |
scanbuild: | |
name: Scan Build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout from github | |
uses: actions/checkout@v3 | |
- name: Initialize libseccomp | |
uses: ./.github/actions/setup | |
- name: Run scan-build | |
run: | | |
./configure | |
scan-build --status-bugs make | |
codecoverage: | |
name: Code Coverage | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout from github | |
uses: actions/checkout@v3 | |
- name: Initialize libseccomp | |
uses: ./.github/actions/setup | |
- name: Configure libseccomp | |
run: | | |
./configure --enable-code-coverage | |
- name: Run tests with code coverage enabled | |
run: | | |
LIBSECCOMP_TSTCFG_JOBS=0 \ | |
make test-code-coverage | |
- name: Upload code coverage results | |
uses: coverallsapp/github-action@master | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
path-to-lcov: ./libseccomp.lcov.info | |
flag-name: "amd64" | |
- name: Archive code coverage results | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Code Coverage Artifacts | |
path: | | |
./libseccomp.lcov.info | |
./libseccomp.lcov.html.d | |
codespell: | |
name: Codespell | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout from github | |
uses: actions/checkout@v3 | |
- name: Spellcheck | |
uses: codespell-project/actions-codespell@master | |
with: | |
ignore_words_list: extraversion | |
exclude_file: src/syscalls.csv |