scsl/.circleci/config.yml

20 lines
337 B
YAML
Raw Normal View History

2023-10-19 00:57:19 +00:00
version: 2.1
jobs:
ctest:
docker:
- image: git.wntrmute.dev/sc/dev:alpine
2023-10-19 00:57:19 +00:00
steps:
- checkout
- run:
name: Setup cmake build
command: cmake-build-and-test.sh
- run:
name: Valgrind checks.
command: cmake-run-valgrind.sh
2023-10-19 00:57:19 +00:00
workflows:
ctest:
jobs:
- ctest