p2pool/.github/workflows/cppcheck.yml

68 lines
1.3 KiB
YAML
Raw Normal View History

2021-09-05 04:51:20 -06:00
name: cppcheck
2022-06-04 05:16:05 -06:00
on: [push, pull_request]
2021-09-05 04:51:20 -06:00
jobs:
cppcheck-ubuntu:
timeout-minutes: 30
2021-09-05 04:51:20 -06:00
runs-on: ubuntu-latest
steps:
- name: Checkout repository
2022-10-28 06:32:49 -06:00
uses: actions/checkout@v3
2021-09-05 04:51:20 -06:00
with:
submodules: true
2022-05-26 10:20:29 -06:00
- name: Checkout cppcheck
uses: actions/checkout@v3
with:
repository: danmar/cppcheck
path: cppcheck-main
- name: Build cppcheck
run: |
cd cppcheck-main
make -j$(nproc) cppcheck
2021-09-05 04:51:20 -06:00
- name: Run cppcheck
run: |
cd cppcheck
./run.sh
2021-09-05 05:09:28 -06:00
cppcheck-windows:
timeout-minutes: 20
2022-05-26 10:20:29 -06:00
runs-on: windows-latest
2021-09-05 05:09:28 -06:00
steps:
- name: Checkout repository
2022-10-28 06:32:49 -06:00
uses: actions/checkout@v3
2021-09-05 05:09:28 -06:00
with:
submodules: true
2022-05-25 11:15:39 -06:00
- name: Checkout cppcheck
uses: actions/checkout@v3
with:
repository: danmar/cppcheck
path: cppcheck-main
- name: Build cppcheck
run: |
cd cppcheck-main
& "C:\\Program Files\\Microsoft Visual Studio\\2022\\Enterprise\\Msbuild\\Current\\Bin\\amd64\\msbuild.exe" /m /p:Configuration=Release /p:Platform=x64
2021-09-05 05:09:28 -06:00
- name: Setup cmake
uses: lukka/get-cmake@latest
- name: cmake p2pool
run: |
mkdir build
cd build
2022-02-21 08:59:32 -07:00
cmake .. -G "Visual Studio 17 2022"
2021-09-05 05:09:28 -06:00
- name: Run cppcheck
run: |
cd cppcheck
./run.cmd