This repository was archived by the owner on Mar 14, 2023. It is now read-only.
File tree 2 files changed +16
-4
lines changed
packages/shipit-deploy/src/tasks/deploy
2 files changed +16
-4
lines changed Original file line number Diff line number Diff line change @@ -135,9 +135,11 @@ const updateTask = shipit => {
135
135
}
136
136
137
137
async function removeWorkspace ( ) {
138
- shipit . log ( `Removing workspace "${ shipit . workspace } "` )
139
- await rmfr ( shipit . workspace )
140
- shipit . log ( chalk . green ( 'Workspace removed.' ) )
138
+ if ( shipit . config . shallowClone ) {
139
+ shipit . log ( `Removing workspace "${ shipit . workspace } "` )
140
+ await rmfr ( shipit . workspace )
141
+ shipit . log ( chalk . green ( 'Workspace removed.' ) )
142
+ }
141
143
}
142
144
143
145
await setPreviousRelease ( )
Original file line number Diff line number Diff line change @@ -226,11 +226,21 @@ describe('deploy:update task', () => {
226
226
} )
227
227
} )
228
228
229
- it ( 'should remove workspace' , async ( ) => {
229
+ it ( 'should remove workspace when shallow cloning' , async ( ) => {
230
+ shipit . config . shallowClone = true
230
231
stubShipit ( shipit )
231
232
rmfr . mockClear ( )
232
233
expect ( rmfr ) . not . toHaveBeenCalled ( )
233
234
await start ( shipit , 'deploy:update' )
234
235
expect ( rmfr ) . toHaveBeenCalledWith ( '/tmp/workspace' )
235
236
} )
237
+
238
+ it ( 'should keep workspace when not shallow cloning' , async ( ) => {
239
+ shipit . config . shallowClone = false
240
+ stubShipit ( shipit )
241
+ rmfr . mockClear ( )
242
+ expect ( rmfr ) . not . toHaveBeenCalled ( )
243
+ await start ( shipit , 'deploy:update' )
244
+ expect ( rmfr ) . not . toHaveBeenCalledWith ( '/tmp/workspace' )
245
+ } )
236
246
} )
You can’t perform that action at this time.
0 commit comments