mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-25 08:55:50 +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"
|
||||
]
|
||||
},
|
||||
"cache": "pip",
|
||||
"cache": {
|
||||
"directories": [
|
||||
"./rust/target/"
|
||||
],
|
||||
"pip": true
|
||||
},
|
||||
"dist": "trusty",
|
||||
"git": {
|
||||
"submodules": false
|
||||
|
|
|
|||
|
|
@ -10,7 +10,12 @@ cfg = {}
|
|||
cfg['sudo'] = True
|
||||
cfg['dist'] = 'trusty'
|
||||
cfg['language'] = 'python'
|
||||
cfg['cache'] = 'pip'
|
||||
cfg['cache'] = {
|
||||
'pip': True,
|
||||
'directories': [
|
||||
'./rust/target/'
|
||||
]
|
||||
}
|
||||
|
||||
cfg['git'] = {
|
||||
'submodules': False
|
||||
|
|
|
|||
Loading…
Reference in a new issue