mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-04-27 14:57:41 +00:00
Cache rust artifacts
This commit is contained in:
parent
f8e65878d8
commit
0d3b028b17
2 changed files with 12 additions and 2 deletions
|
|
@ -5,7 +5,12 @@
|
||||||
"master"
|
"master"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"cache": "pip",
|
"cache": {
|
||||||
|
"directories": [
|
||||||
|
"./rust/target/"
|
||||||
|
],
|
||||||
|
"pip": true
|
||||||
|
},
|
||||||
"dist": "trusty",
|
"dist": "trusty",
|
||||||
"git": {
|
"git": {
|
||||||
"submodules": false
|
"submodules": false
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,12 @@ cfg = {}
|
||||||
cfg['sudo'] = True
|
cfg['sudo'] = True
|
||||||
cfg['dist'] = 'trusty'
|
cfg['dist'] = 'trusty'
|
||||||
cfg['language'] = 'python'
|
cfg['language'] = 'python'
|
||||||
cfg['cache'] = 'pip'
|
cfg['cache'] = {
|
||||||
|
'pip': True,
|
||||||
|
'directories': [
|
||||||
|
'./rust/target/'
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
cfg['git'] = {
|
cfg['git'] = {
|
||||||
'submodules': False
|
'submodules': False
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue