typo fix in the other_test.py command comment [skip ci] #4603
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
# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners | |
name: cppcheck-premium | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'releases/**' | |
- '2.*' | |
tags: | |
- '2.*' | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
premium_version: | |
description: 'Cppcheck Premium version' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 # run on the latest image only | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Download cppcheckpremium | |
run: | | |
premium_version=${{ inputs.premium_version }} | |
if [ -z $premium_version ]; then | |
premium_version=24.11.0 | |
#wget https://files.cppchecksolutions.com/devdrop/cppcheckpremium-$premium_version-amd64.tar.gz -O cppcheckpremium.tar.gz | |
wget https://files.cppchecksolutions.com/$premium_version/ubuntu-24.04/cppcheckpremium-$premium_version-amd64.tar.gz -O cppcheckpremium.tar.gz | |
else | |
wget https://files.cppchecksolutions.com/$premium_version/ubuntu-24.04/cppcheckpremium-$premium_version-amd64.tar.gz -O cppcheckpremium.tar.gz | |
fi | |
tar xzf cppcheckpremium.tar.gz | |
mv cppcheckpremium-$premium_version cppcheckpremium | |
- name: Generate a license file | |
run: | | |
echo cppcheck > cppcheck.lic | |
echo 251231 >> cppcheck.lic | |
echo 80000 >> cppcheck.lic | |
echo 4f8dc8e7c8bb288f >> cppcheck.lic | |
echo path:lib >> cppcheck.lic | |
- name: Check | |
run: | | |
cppcheckpremium/premiumaddon --check-loc-license cppcheck.lic > cppcheck-premium-loc | |
cppcheckpremium/cppcheck -j$(nproc) -D__GNUC__ -D__CPPCHECK__ --suppressions-list=cppcheckpremium-suppressions --platform=unix64 --enable=style --premium=misra-c++-2023 --premium=cert-c++-2016 --inline-suppr --error-exitcode=1 lib |