mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-13 03:32:22 +00:00
* Update and rename ubuntu-18.04-compile.yml to ubuntu-compile.yml * Update ubuntu-compile.yml segregate output binaries * Update macos-10.15-compile.yml Add testnet branch to github action and compilation flag -std=c++17 * Update macos-10.15-compile.yml remove branch filter * Update windows2019x64-compile.yml * Update windows2019x64-compile.yml add flag /std:c++17 * Update windows2019x64-compile.yml * Update windows2019x64-compile.yml * Update ubuntu-compile.yml Add -DCMAKE_CXX_FLAGS="-std=c++17" * use CMAKE_CXX_STANDARD * Update macos-10.15-compile.yml remove -std=c++17 flag * Update ubuntu-compile.yml remove -DCMAKE_CXX_FLAGS="-std=c++17" flag * Update ubuntu-compile.yml remove space * Update ubuntu-18.04-ton-ccpcheck.yml remove branch filter * Update docker-ubuntu-image.yml remove branch filter Co-authored-by: dungeon-master-666 <dungeon666master@protonmail.com>
29 lines
539 B
YAML
29 lines
539 B
YAML
name: Ubuntu 18.04 TON ccpcheck
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- name: Check out repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- name: Run Cppcheck
|
|
uses: Bedzior/run-cppcheck@master
|
|
with:
|
|
enabled checks: all
|
|
enable inconclusive: true
|
|
generate report: true
|
|
|
|
- name: Upload report
|
|
uses: actions/upload-artifact@v1
|
|
with:
|
|
name: ton-ccpcheck-report
|
|
path: output
|