added lowercase aliases win32a
and win32w
for platform types win32A
and win32W
- and use them internally
#1553
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: cppcheck-premium | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'releases/**' | |
tags: | |
- '2.*' | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 # run on the latest image only | |
env: | |
PREMIUM_VERSION: 24.2.0 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Download cppcheckpremium | |
run: | | |
wget https://files.cppchecksolutions.com/${{ env.PREMIUM_VERSION }}/ubuntu-22.04/cppcheckpremium-${{ env.PREMIUM_VERSION }}-amd64.tar.gz | |
tar xzf cppcheckpremium-${{ env.PREMIUM_VERSION }}-amd64.tar.gz | |
- name: Generate a license file | |
run: | | |
echo cppcheck > cppcheck.lic | |
echo 241231 >> cppcheck.lic | |
echo 80000 >> cppcheck.lic | |
echo 53b72a908d7aeeee >> cppcheck.lic | |
echo path:lib >> cppcheck.lic | |
- name: Check | |
run: | | |
cppcheckpremium-${{ env.PREMIUM_VERSION }}/premiumaddon --check-loc-license cppcheck.lic > cppcheck-premium-loc | |
cppcheckpremium-${{ env.PREMIUM_VERSION }}/cppcheck -j$(nproc) -D__GNUC__ -D__CPPCHECK__ --suppressions-list=cppcheckpremium-suppressions --platform=unix64 --enable=style --premium=misra-c++-2008 --premium=cert-c++-2016 --inline-suppr --error-exitcode=1 lib |