This repository has been archived by the owner on May 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuddy.yml
64 lines (64 loc) · 1.76 KB
/
buddy.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
59
60
61
62
63
64
- pipeline: "Build and deploy"
trigger_mode: "ON_EVERY_PUSH"
ref_name: "master"
actions:
- action: "Execute: make dockerfile"
type: "BUILD"
docker_image_name: "library/ubuntu"
docker_image_tag: "16.04"
execute_commands:
- "make dockerfile"
setup_commands:
- "apt-get update"
- "apt-get install -qq -y make m4"
- action: "Build Docker image"
type: "DOCKERFILE"
login: "merlinnot"
password: ${DOCKER_HUB_PASSWORD}
docker_image_tag: "latest"
dockerfile_path: "Dockerfile"
build_args:
- "version=${execution.start_date}"
repository: "merlinnot/devver"
- pipeline: "Rebuild to stay latest and greatest"
auto_clear_cache: true
trigger_mode: "SCHEDULED"
ref_name: "master"
start_date: "2017-02-28T23:00:00.000Z"
delay: 10080
run_always: true
actions:
- action: "Execute: make dockerfile"
type: "BUILD"
docker_image_name: "library/ubuntu"
docker_image_tag: "16.04"
execute_commands:
- "make dockerfile"
setup_commands:
- "apt-get update"
- "apt-get install -qq -y make m4"
- action: "Build Docker image"
type: "DOCKERFILE"
login: "merlinnot"
password: ${DOCKER_HUB_PASSWORD}
docker_image_tag: "latest"
dockerfile_path: "Dockerfile"
build_args:
- "version=${execution.start_date}"
repository: "merlinnot/devver"
- pipeline: "Build"
trigger_mode: "ON_EVERY_PUSH"
ref_name: "(^(?!.*^(master)$).*)"
actions:
- action: "Execute: make dockerfile"
type: "BUILD"
docker_image_name: "library/ubuntu"
docker_image_tag: "16.04"
execute_commands:
- "make dockerfile"
setup_commands:
- "apt-get update"
- "apt-get install -qq -y make m4"
- action: "Build Docker image"
type: "DOCKERFILE"
dockerfile_path: "Dockerfile"