emsha/.circleci/config.yml

20 lines
335 B
YAML
Raw Normal View History

2023-10-18 11:21:32 +00:00
version: 2.1
jobs:
ctest:
docker:
- image: git.wntrmute.dev/sc/dev:main
2023-10-18 11:21:32 +00:00
steps:
- checkout
- run:
2023-10-18 11:44:10 +00:00
name: Setup cmake build
command: cmake-build-and-test.sh
- run:
name: Valgrind checks.
command: cmake-run-valgrind.sh
2023-10-18 11:21:32 +00:00
workflows:
ctest:
2023-10-18 11:21:32 +00:00
jobs:
- ctest