You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
993 B
YAML

5 years ago
#
# Author: Hari Sekhon
# Date: 2020-02-23 23:30:14 +0000 (Sun, 23 Feb 2020)
# Original: H1 2016 (Circle CI 1.x)
5 years ago
#
# vim:ts=2:sts=2:sw=2:et
#
2 years ago
# https://github.com/HariSekhon/DevOps-Bash-tools
5 years ago
#
# License: see accompanying Hari Sekhon LICENSE file
#
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help steer this or other code I publish
#
2 years ago
# https://www.linkedin.com/in/HariSekhon
5 years ago
#
# Master Template with more advanced config:
#
# https://github.com/HariSekhon/Templates/blob/master/circleci_config.yml
# Reference:
#
# https://circleci.com/docs/2.0/configuration-reference
5 years ago
version: 2.1
workflows:
version: 2
workflow:
jobs:
- build
5 years ago
jobs:
build:
docker:
- image: cimg/base:2021.04
resource_class: small
5 years ago
steps:
- checkout
- setup_remote_docker:
version: 20.10.11
- run: setup/ci_bootstrap.sh
- run: make init
- run: make
5 years ago
- run: make test