-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdodo.py
78 lines (67 loc) · 1.93 KB
/
dodo.py
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
import os
pjoin = os.path.join
from shutil import rmtree
from doit import get_var
import pytest
import requests
from scripts.tagger import tagging_main
from scripts.wiki import update_Stable, update_Home
DOIT_CONFIG = dict(
verbosity=2
)
# get_var(<key>, <default_val>)
USE_STACK = get_var('stack_dir', 'images')
def task_prep():
"""Prep directory for logs and artifacts"""
def _prep():
if not os.path.exists('artifacts'):
os.mkdir('artifacts')
open(pjoin('artifacts', '.empty'), 'a').close()
if not os.path.exists('logs'):
os.mkdir('logs')
open(pjoin('logs', '.empty'), 'a').close()
if not os.path.exists('manifests'):
os.mkdir('manifests')
open(pjoin('manifests', '.empty'), 'a').close()
return {
'actions': [_prep],
'targets': ['artifacts/.empty', 'logs/.empty', 'manifests/.empty']
}
def task_tag():
"""Tag and push images with new tags"""
return {
'actions': [tagging_main],
'uptodate': [False],
'file_dep': ['artifacts/.empty', 'logs/.empty'],
'targets': ['artifacts/IMAGES_TAGGED'],
'params':[
{
'name': 'original_tag',
'long': 'original_tag',
'type': str,
'default': None
},
{
'name': 'dry_run',
'long': 'dry_run',
'type': bool,
'default': False
},
{
'name': 'global_stable',
'long': 'global_stable',
'type': bool,
'default': False
},
],
}
def task_stable():
"""Build image manifests for all stable tagged images"""
return {
'actions': [update_Stable]
}
def task_home():
"""Build image manifests for all stable tagged images"""
return {
'actions': [update_Home]
}