scsl/.circleci/config.yml

31 lines
608 B
YAML

version: 2.1
jobs:
ctest:
docker:
- image: git.wntrmute.dev/sc/dev:main
steps:
- checkout
- run:
name: Setup cmake build
command: cmake-build-and-test.sh
- run:
name: Valgrind checks.
command: cmake-run-valgrind.sh
NOT_REQUIRED_static_analysis:
docker:
- image: git.wntrmute.dev/sc/dev:main
steps:
- checkout
- run:
name: Trunk check
command: ./trunk check --upstream=HEAD^
workflows:
ctest:
jobs:
- ctest
static_analysis:
jobs:
- NOT_REQUIRED_static_analysis