forked from HariSekhon/DevOps-Bash-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
49 lines (43 loc) · 1.18 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#
# Author: Hari Sekhon
# Date: 2020-02-23 23:30:14 +0000 (Sun, 23 Feb 2020)
# Original: H1 2016 (Circle CI 1.x)
#
# vim:ts=2:sts=2:sw=2:et
#
# https://github.com/HariSekhon/DevOps-Bash-tools
#
# 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
#
# https://www.linkedin.com/in/HariSekhon
#
# ============================================================================ #
# C i r c l e C I
# ============================================================================ #
# 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
version: 2.1
workflows:
version: 2
workflow:
jobs:
- build
jobs:
build:
docker:
- image: cimg/base:2024.12
resource_class: small
steps:
- checkout
- setup_remote_docker:
version: 20.10.11
- run: setup/ci_bootstrap.sh
- run: make init
- run: make
- run: make test