Bump tj-actions/changed-files from 42.0.4 to 42.0.5 #124
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
name: Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
check-source-changes: | |
runs-on: ubuntu-latest | |
outputs: | |
run_job: ${{ steps.changed-files.outputs.any_changed }} | |
steps: | |
- name: Checkout Sourcecode | |
uses: actions/checkout@v4 | |
- name: Check for changes in source code | |
id: changed-files | |
uses: tj-actions/[email protected] | |
with: | |
files: | | |
ezsnmp/*.py | |
ezsnmp/*.c | |
ezsnmp/*.h | |
tests/*.py | |
tests/*.conf | |
setup.py | |
setup.cfg | |
lint-black-formatting: | |
runs-on: ubuntu-latest | |
needs: check-source-changes | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/[email protected] | |
build-and-test: | |
runs-on: ${{ matrix.os }} | |
needs: lint-black-formatting | |
if: needs.check-source-changes.outputs.run_job == 'true' | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Set up dependencies | |
uses: carlkidcrypto/[email protected] | |
with: | |
linux: sudo apt-get update; | |
sudo apt-get install -y snmpd libsnmp-dev libperl-dev snmp-mibs-downloader valgrind; | |
sudo systemctl stop snmpd; | |
sudo download-mibs; | |
mkdir -p -m 0755 ~/.snmp; | |
echo 'mibs +ALL' > ~/.snmp/snmp.conf; | |
macos: brew update; | |
brew install net-snmp; | |
brew install openssl@3; | |
echo 'export PATH="/usr/local/opt/net-snmp/bin:$PATH"' >> ~/.zshrc; | |
export PATH="/usr/local/opt/net-snmp/bin:$PATH"; | |
echo 'export PATH="/usr/local/opt/net-snmp/sbin:$PATH"' >> ~/.zshrc; | |
export PATH="/usr/local/opt/net-snmp/sbin:$PATH"; | |
mkdir -p -m 0755 ~/.snmp; | |
echo 'mibs +ALL' > ~/.snmp/snmp.conf; | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install pip dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install flake8 pytest pytest-cov wheel | |
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi | |
- name: Build source | |
run: | | |
python setup.py build | |
pip install -e . | |
- name: Start SNMP daemon | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ] | |
then | |
mibdir="-M +/var/lib/snmp/mibs" | |
SNMPD=$(which snmpd) | |
elif [ "$RUNNER_OS" == "macOS" ] | |
then | |
mibdir="" | |
SNMPD=/usr/local/opt/net-snmp/sbin/snmpd | |
else | |
mibdir="" | |
SNMPD=$(which.exe snmpd) | |
fi | |
$SNMPD -C -c tests/snmpd.conf -r -Le $mibdir -m ALL | |
- name: Lint with flake8 | |
uses: py-actions/flake8@v2 | |
continue-on-error: true | |
with: | |
max-line-length: "88" | |
path: "ezsnmp tests" | |
- name: Run Tests | |
run: | | |
if [ "$RUNNER_OS" == "Linux" ] | |
then | |
wget https://raw.githubusercontent.com/python/cpython/main/Misc/valgrind-python.supp | |
VALGRIND=( | |
'valgrind' | |
'--tool=memcheck' | |
'--leak-check=full' | |
'--show-leak-kinds=definite,indirect,possible' | |
'--suppressions=./valgrind-python.supp' | |
'--log-file=./valgrind_${{ matrix.os }}_${{ matrix.python-version }}.out' | |
) | |
echo 'PYTHONMALLOC=malloc' >> $GITHUB_OUTPUT | |
fi | |
${VALGRIND[@]} python -m pytest ${PYTEST_ARGS[@]} --junitxml=test-results_${{ matrix.os }}_${{ matrix.python-version }}.xml | tee ./test-outputs_${{ matrix.os }}_${{ matrix.python-version }}.log | |
- name: Upload Test Results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pytest-results_${{matrix.os}}_${{matrix.python-version}} | |
path: | | |
test-results_${{ matrix.os }}_${{ matrix.python-version }}.xml | |
test-outputs_${{ matrix.os }}_${{ matrix.python-version }}.log | |
- name: Upload Valgrind Reports | |
uses: actions/upload-artifact@v4 | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
with: | |
name: valgrind-report_${{matrix.os}}_${{matrix.python-version}} | |
path: ./valgrind_${{ matrix.os }}_${{ matrix.python-version }}.out | |
comment-pytest-coverage-report: | |
runs-on: ubuntu-latest | |
needs: build-and-test | |
steps: | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: pytest-results_* | |
merge-multiple: false | |
- name: Create multi-file output listing | |
run: | | |
echo 'pytest_multiple_files<<EOF' >> $GITHUB_OUTPUT | |
export test_xml=($(ls -d pytest-results_*latest_*/*.xml | sort )) | |
export test_log=($(ls -d pytest-results_*latest_*/*.log | sort )) | |
for i in "${!test_log[@]}" | |
do | |
echo "$(echo ${test_log[$i]} | cut -d_ -f2) - $(echo ${test_log[$i]%.*} | cut -d_ -f3), ${test_log[$i]}, ${test_xml[$i]}" >> $GITHUB_OUTPUT | |
done | |
echo 'EOF' >> $GITHUB_OUTPUT | |
- name: Pytest coverage comment | |
uses: MishaKav/[email protected] | |
with: | |
title: Pytest Coverage Report | |
hide-badge: true | |
hide-report: true | |
create-new-comment: false | |
hide-comment: false | |
report-only-changed-files: false | |
multiple-files: | | |
${{ env.pytest_multiple_files }} | |
make-stripped-valgrind-files: | |
runs-on: ${{ matrix.os }} | |
needs: build-and-test | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: valgrind-report_* | |
merge-multiple: false | |
- name: Parse Valgrind Reports | |
run: | | |
python - << "EOF" | |
from re import split | |
with open("./valgrind-report_${{matrix.os}}_${{matrix.python-version}}/valgrind_${{ matrix.os }}_${{ matrix.python-version }}.out") as f: | |
data = f.read() | |
blocks = split(r'==[0-9]+==\s\n', data) | |
snmp = list(filter(lambda b: 'snmp' in b, blocks[1:])) | |
with open('./valgrind-stripped_${{ matrix.os }}_${{ matrix.python-version }}.log', 'w') as f: | |
f.write('```sh\n') | |
f.writelines(filter(lambda b: all(filt not in b for filt in ('invalid file descriptor', 'alternative log')), snmp)) | |
f.write(blocks[-2]) | |
f.write('```\n') | |
EOF | |
- name: Upload Stripped Valgrind Reports | |
uses: actions/upload-artifact@v4 | |
with: | |
name: valgrind-stripped_${{matrix.os}}_${{matrix.python-version}} | |
path: | | |
valgrind-stripped_${{ matrix.os }}_${{ matrix.python-version }}.log | |
comment-valgrind: | |
runs-on: ubuntu-latest | |
needs: make-stripped-valgrind-files | |
steps: | |
- name: Download Artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: valgrind-stripped_* | |
merge-multiple: false | |
- name: Set Env Variables | |
id: valgrind_stripped_vars | |
run: | | |
temp1=$(cat valgrind-stripped_ubuntu-latest_3.8/valgrind-stripped_ubuntu-latest_3.8.log); | |
temp2=$(cat valgrind-stripped_ubuntu-latest_3.9/valgrind-stripped_ubuntu-latest_3.9.log); | |
temp3=$(cat valgrind-stripped_ubuntu-latest_3.10/valgrind-stripped_ubuntu-latest_3.10.log); | |
temp4=$(cat valgrind-stripped_ubuntu-latest_3.11/valgrind-stripped_ubuntu-latest_3.11.log); | |
temp5=$(cat valgrind-stripped_ubuntu-latest_3.12/valgrind-stripped_ubuntu-latest_3.12.log); | |
echo VALGRIND_STRIPPED_UBUNTU_LATEST_3_8=$temp1 >> $GITHUB_OUTPUT; | |
echo VALGRIND_STRIPPED_UBUNTU_LATEST_3_9=$temp2 >> $GITHUB_OUTPUT; | |
echo VALGRIND_STRIPPED_UBUNTU_LATEST_3_10=$temp3 >> $GITHUB_OUTPUT; | |
echo VALGRIND_STRIPPED_UBUNTU_LATEST_3_11=$temp4 >> $GITHUB_OUTPUT; | |
echo VALGRIND_STRIPPED_UBUNTU_LATEST_3_12=$temp5 >> $GITHUB_OUTPUT; | |
- name: Checkout Sourcecode | |
uses: actions/checkout@v4 | |
- name: Render Valgrind Comment Template | |
id: template | |
uses: chuhlomin/[email protected] | |
with: | |
template: .github/comment-valgrind-template.md | |
vars: | | |
py3_8: "${{ steps.valgrind_stripped_vars.outputs.VALGRIND_STRIPPED_UBUNTU_LATEST_3_8 }}" | |
py3_9: "${{ steps.valgrind_stripped_vars.outputs.VALGRIND_STRIPPED_UBUNTU_LATEST_3_9 }}" | |
py3_10: "${{ steps.valgrind_stripped_vars.outputs.VALGRIND_STRIPPED_UBUNTU_LATEST_3_10 }}" | |
py3_11: "${{ steps.valgrind_stripped_vars.outputs.VALGRIND_STRIPPED_UBUNTU_LATEST_3_11 }}" | |
py3_12: "${{ steps.valgrind_stripped_vars.outputs.VALGRIND_STRIPPED_UBUNTU_LATEST_3_12 }}" | |
- name: Create A Comment For PR | |
uses: peter-evans/create-or-update-comment@v4 | |
if: github.event_name == 'pull_request' | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: ${{ steps.template.outputs.result }} | |
- name: Create A Comment For Push | |
uses: peter-evans/commit-comment@v3 | |
if: github.event_name == 'push' | |
with: | |
body: ${{ steps.template.outputs.result }} |