19 lines
401 B
YAML
19 lines
401 B
YAML
version: 2.1
|
|
|
|
jobs:
|
|
latest-clang-autotools:
|
|
docker:
|
|
- image: silkeh/clang:latest
|
|
environment:
|
|
BUILD: autotools
|
|
CXX: clang
|
|
CPPUTEST_BUILD_DIR: ./cpputest_build
|
|
steps:
|
|
- checkout
|
|
# - run: mkdir -p $CPPUTEST_BUILD_DIR && cd $CPPUTEST_BUILD_DIR && ../scripts/travis_ci_build.sh
|
|
|
|
workflows:
|
|
basic-build-and-test:
|
|
jobs:
|
|
- latest-clang-autotools
|