forked from HariSekhon/DevOps-Bash-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.concourse.yml
58 lines (55 loc) · 1.38 KB
/
.concourse.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
50
51
52
53
54
55
56
57
58
#
# Author: Hari Sekhon
# Date: 2020-03-21 11:06:48 +0000 (Sat, 21 Mar 2020)
#
# 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
#
resources:
- name: github
icon: github-circle
type: git
source:
uri: https://github.com/HariSekhon/DevOps-Bash-tools
branch: master
#- name: daily
# type: time
# source:
# interval: 1d
# https://concourse-ci.org/golang-library-example.html
jobs:
- name: build
public: false
plan:
- get: github # from resource above
trigger: true
#version: every # build every git commit, default: latest
- task: build
config:
platform: linux
image_resource:
type: docker-image
source:
repository: ubuntu
tag: latest
inputs:
- name: github
path: code
params:
CONCOURSE: 1
run:
path: /bin/bash
args:
- -c
- |
cd code &&
setup/ci_bootstrap.sh &&
make init &&
make ci test