scsl/.circleci/config.yml

28 lines
521 B
YAML
Raw Normal View History

2023-10-19 00:57:19 +00:00
version: 2.1
jobs:
ctest:
docker:
2023-10-20 10:06:04 +00:00
- image: git.wntrmute.dev/sc/dev:main
2023-10-19 00:57:19 +00:00
steps:
- checkout
- run:
name: Setup cmake build
command: cmake-build-and-test.sh
static_analysis:
docker:
2023-10-20 10:06:04 +00:00
- image: git.wntrmute.dev/sc/dev:main
steps:
- checkout
- run:
2023-10-20 09:59:36 +00:00
name: Trunk check
command: ./trunk check --upstream=remotes/origin/${CIRCLE_BRANCH}
2023-10-19 00:57:19 +00:00
workflows:
ctest:
jobs:
- ctest
2023-10-20 09:59:36 +00:00
static_analysis:
jobs:
- static_analysis