mirror of
https://github.com/KjellKod/g3log.git
synced 2025-01-07 09:48:06 +01:00
a248f6a930
* Create config.yml * Updated config.yml
16 lines
443 B
YAML
16 lines
443 B
YAML
version: 2.1
|
|
executors: #(1)
|
|
exectr:
|
|
docker:
|
|
- image: dockerben/cpptemplate:latest
|
|
# example, maybe setup my own image later
|
|
# https://thoughts-on-coding.com/2020/04/20/a-cpp-github-template-repository-utilizing-circleci-cmake-docker-and-doxygen/
|
|
jobs:
|
|
build:
|
|
executor: exectr #(1)
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: build_and_run
|
|
command: |
|
|
./scripts/buildAndRunTests.sh |