Merging upstream version 2.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
50f6a45557
commit
c2a4b9519f
35 changed files with 364 additions and 122 deletions
|
@ -48,7 +48,7 @@ jobs:
|
|||
# https://github.com/docker/metadata-action
|
||||
- name: Extract Docker metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@96383f45573cb7f253c731d3b3ab81c87ef81934
|
||||
uses: docker/metadata-action@dbef88086f6cef02e264edb7dbf63250c17cef6c
|
||||
with:
|
||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||
|
36
.github/workflows/meson-test.yml
vendored
36
.github/workflows/meson-test.yml
vendored
|
@ -10,26 +10,33 @@ on:
|
|||
|
||||
jobs:
|
||||
meson-build:
|
||||
runs-on: ubuntu-latest
|
||||
runs-on: ubuntu-24.04
|
||||
steps:
|
||||
- name: "CHECKOUT: nvme-stas"
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: "INSTALL: Overall dependencies"
|
||||
- name: "INSTALL: build packages"
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt-get install --yes --quiet python3-pip cmake iproute2
|
||||
sudo python3 -m pip install --upgrade pip
|
||||
sudo python3 -m pip install --upgrade wheel meson ninja
|
||||
sudo apt-get install --yes --quiet meson ninja-build cmake
|
||||
|
||||
- name: "INSTALL: nvme-stas dependencies"
|
||||
- name: "INSTALL: python packages"
|
||||
run: |
|
||||
sudo apt-get install --yes --quiet docbook-xml docbook-xsl xsltproc libglib2.0-dev libgirepository1.0-dev libsystemd-dev
|
||||
sudo apt-get install --yes --quiet python3-systemd python3-pyudev python3-lxml
|
||||
python3 -m pip install --upgrade dasbus pylint==2.17.7 pyflakes PyGObject
|
||||
python3 -m pip install --upgrade vermin pyfakefs importlib-resources
|
||||
sudo apt-get install --yes --quiet python3-pip python3-wheel pylint pyflakes3 python3-systemd python3-pyudev python3-lxml python3-dasbus python3-gi python3-importlib-resources python3-pyfakefs
|
||||
|
||||
- name: "INSTALL: libnvme dependencies"
|
||||
- name: "INSTALL: documentation packages"
|
||||
run: |
|
||||
sudo apt-get install --yes --quiet docbook-xml docbook-xsl xsltproc
|
||||
|
||||
- name: "INSTALL: remaining debian packages"
|
||||
run: |
|
||||
sudo apt-get install --yes --quiet iproute2 libglib2.0-dev libgirepository1.0-dev libsystemd-dev
|
||||
|
||||
- name: "INSTALL: pip packages"
|
||||
run: |
|
||||
pip install vermin
|
||||
|
||||
- name: "INSTALL: libnvme packages (needed to build libnvme)"
|
||||
run: |
|
||||
sudo apt-get install --yes --quiet swig libjson-c-dev
|
||||
|
||||
|
@ -46,7 +53,7 @@ jobs:
|
|||
options: --print-errorlogs --suite nvme-stas
|
||||
|
||||
# Preserve meson's log file on failure
|
||||
- uses: actions/upload-artifact@v3
|
||||
- uses: actions/upload-artifact@v4
|
||||
if: failure()
|
||||
with:
|
||||
name: "Linux_Meson_Testlog"
|
||||
|
@ -54,12 +61,11 @@ jobs:
|
|||
|
||||
- name: "Generate coverage report"
|
||||
run: |
|
||||
python3 -m pip install --upgrade pytest
|
||||
python3 -m pip install --upgrade pytest-cov
|
||||
sudo apt-get install python3-pytest python3-pytest-cov
|
||||
echo $( pwd )
|
||||
cp -r .build/staslib/* ./staslib/.
|
||||
pytest --cov=./staslib --cov-report=xml test/test-*.py
|
||||
|
||||
- uses: codecov/codecov-action@v3
|
||||
- uses: codecov/codecov-action@v5
|
||||
with:
|
||||
fail_ci_if_error: false
|
||||
|
|
102
.github/workflows/pylint.yml
vendored
102
.github/workflows/pylint.yml
vendored
|
@ -20,29 +20,47 @@ jobs:
|
|||
recursive: true
|
||||
ignore: DL3041
|
||||
|
||||
python-lint:
|
||||
python-black:
|
||||
if: ${{ !github.event.act }} # skip during local actions testing
|
||||
name: python-black formatter
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "CHECKOUT: nvme-stas"
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: "BLACK"
|
||||
uses: psf/black@25.1.0
|
||||
with:
|
||||
options: "--check --diff --color --line-length 120 --skip-string-normalization --extend-exclude (subprojects|debian|.build)"
|
||||
src: "."
|
||||
|
||||
python-lint-Jammy:
|
||||
runs-on: ubuntu-22.04
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: ["3.7", "3.8", "3.9", "3.10"]
|
||||
python-version: ["3.9", "3.10"]
|
||||
|
||||
steps:
|
||||
- name: "CHECKOUT: nvme-stas"
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v4
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: "INSTALL: additional packages"
|
||||
- name: "INSTALL: apt-get packages"
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt-get install --yes --quiet python3-pip cmake libgirepository1.0-dev libsystemd-dev python3-systemd swig libjson-c-dev || true
|
||||
sudo python3 -m pip install --upgrade pip wheel meson ninja
|
||||
python3 -m pip install --upgrade dasbus pylint==2.17.7 pyflakes PyGObject lxml pyudev
|
||||
sudo apt-get install --yes --quiet meson ninja-build cmake libgirepository1.0-dev libsystemd-dev swig libjson-c-dev
|
||||
sudo apt-get install --yes --quiet python3-wheel python3-systemd python3-pyudev python3-dasbus python3-gi python3-lxml pyflakes3 python3-tomli
|
||||
|
||||
- name: "INSTALL: pip packages"
|
||||
run: |
|
||||
pip install pylint
|
||||
# pip install PyGObject
|
||||
|
||||
- name: "BUILD: [libnvme, nvme-stas]"
|
||||
uses: BSFishy/meson-build@v1.0.3
|
||||
|
@ -60,28 +78,70 @@ jobs:
|
|||
echo -e "Build Directory:\n$(ls -laF .build)"
|
||||
python3 -VV
|
||||
python3 -m site
|
||||
python3 -m pylint --version
|
||||
echo "pyflakes $(python3 -m pyflakes --version)"
|
||||
pylint --version
|
||||
echo "pyflakes3 $(pyflakes3 --version)"
|
||||
|
||||
- name: Pylint
|
||||
run: |
|
||||
python3 -m pylint -j 0 --rcfile=test/pylint.rc .build/stacctl .build/stacd .build/stafctl .build/stafd .build/stasadm .build/staslib
|
||||
#- name: Pylint
|
||||
# run: |
|
||||
# pylint --rcfile=test/pylint.rc .build/stacctl .build/stacd .build/stafctl .build/stafd .build/stasadm .build/staslib
|
||||
|
||||
- name: Pyflakes
|
||||
if: always()
|
||||
run: |
|
||||
python3 -m pyflakes .build/stacctl .build/stacd .build/stafctl .build/stafd .build/stasadm .build/staslib
|
||||
pyflakes3 .build/stacctl .build/stacd .build/stafctl .build/stafd .build/stasadm .build/staslib
|
||||
|
||||
python-lint-Noble:
|
||||
runs-on: ubuntu-24.04
|
||||
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: ["3.11", "3.12", "3.13"]
|
||||
|
||||
python-black:
|
||||
if: ${{ !github.event.act }} # skip during local actions testing
|
||||
name: python-black formatter
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: "CHECKOUT: nvme-stas"
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: "BLACK"
|
||||
uses: psf/black@stable
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@v5.3.0
|
||||
with:
|
||||
options: "--check --diff --color --line-length 120 --skip-string-normalization --extend-exclude (subprojects|debian|.build)"
|
||||
src: "."
|
||||
python-version: ${{ matrix.python-version }}
|
||||
|
||||
- name: "INSTALL: apt-get packages"
|
||||
run: |
|
||||
sudo apt update
|
||||
sudo apt-get install --yes --quiet meson ninja-build cmake libgirepository1.0-dev libsystemd-dev swig libjson-c-dev
|
||||
sudo apt-get install --yes --quiet python3-wheel python3-systemd python3-pyudev python3-dasbus python3-gi python3-lxml pylint pyflakes3 python3-tomli
|
||||
|
||||
#- name: "INSTALL: pip packages"
|
||||
# run: |
|
||||
# pip install pylint
|
||||
# pip install PyGObject
|
||||
|
||||
- name: "BUILD: [libnvme, nvme-stas]"
|
||||
uses: BSFishy/meson-build@v1.0.3
|
||||
with:
|
||||
action: build
|
||||
directory: .build
|
||||
setup-options: --buildtype=release --sysconfdir=/etc --prefix=/usr -Dlibnvme:buildtype=release -Dlibnvme:sysconfdir=/etc -Dlibnvme:prefix=/usr -Dlibnvme:python=enabled -Dlibnvme:libdbus=disabled -Dlibnvme:openssl=disabled -Dlibnvme:json-c=disabled -Dlibnvme:keyutils=disabled
|
||||
|
||||
- name: Set PYTHONPATH
|
||||
run: |
|
||||
echo "PYTHONPATH=.build:.build/subprojects/libnvme:/usr/lib/python3/dist-packages" >> $GITHUB_ENV
|
||||
|
||||
- name: Show test environment
|
||||
run: |
|
||||
echo -e "Build Directory:\n$(ls -laF .build)"
|
||||
python3 -VV
|
||||
python3 -m site
|
||||
pylint --version
|
||||
echo "pyflakes3 $(pyflakes3 --version)"
|
||||
|
||||
- name: Pylint
|
||||
run: |
|
||||
pylint --jobs=0 --rcfile=test/pylint.rc .build/stacctl .build/stacd .build/stafctl .build/stafd .build/stasadm .build/staslib
|
||||
|
||||
- name: Pyflakes
|
||||
if: always()
|
||||
run: |
|
||||
pyflakes3 .build/stacctl .build/stacd .build/stafctl .build/stafd .build/stasadm .build/staslib
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue