quiet zip
parent
d549dc4d68
commit
236229f983
|
|
@ -259,7 +259,7 @@ class AWS {
|
||||||
cd ../../
|
cd ../../
|
||||||
if [ ! -z $latest ]; then
|
if [ ! -z $latest ]; then
|
||||||
echo "Library cache exists from build $latest from $branchName"
|
echo "Library cache exists from build $latest from $branchName"
|
||||||
unzip "cache/${branchName}/$latest" ./${buildUid}/repo/Library/.
|
unzip -q "cache/${branchName}/$latest" ./${buildUid}/repo/Library/.
|
||||||
else
|
else
|
||||||
echo "Cache does not exist"
|
echo "Cache does not exist"
|
||||||
fi
|
fi
|
||||||
|
|
@ -378,8 +378,8 @@ class AWS {
|
||||||
apk update;
|
apk update;
|
||||||
apk add zip;
|
apk add zip;
|
||||||
ls;
|
ls;
|
||||||
zip -r lib-${buildUid}.zip Library -o /data/cache/${branchName}/
|
zip -r -q lib-${buildUid}.zip Library -o /data/cache/${branchName}/
|
||||||
zip -r build-${buildUid}.zip ${buildParameters.buildPath} -o /data/${buildUid}
|
zip -r -q build-${buildUid}.zip ${buildParameters.buildPath} -o /data/${buildUid}
|
||||||
`,
|
`,
|
||||||
], '/data', `/data/${buildUid}/repo/${buildParameters.projectPath}`, [
|
], '/data', `/data/${buildUid}/repo/${buildParameters.projectPath}`, [
|
||||||
{
|
{
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -47,7 +47,7 @@ class AWS {
|
||||||
cd ../../
|
cd ../../
|
||||||
if [ ! -z $latest ]; then
|
if [ ! -z $latest ]; then
|
||||||
echo "Library cache exists from build $latest from $branchName"
|
echo "Library cache exists from build $latest from $branchName"
|
||||||
unzip "cache/${branchName}/$latest" ./${buildUid}/repo/Library/.
|
unzip -q "cache/${branchName}/$latest" ./${buildUid}/repo/Library/.
|
||||||
else
|
else
|
||||||
echo "Cache does not exist"
|
echo "Cache does not exist"
|
||||||
fi
|
fi
|
||||||
|
|
@ -187,8 +187,8 @@ class AWS {
|
||||||
apk update;
|
apk update;
|
||||||
apk add zip;
|
apk add zip;
|
||||||
ls;
|
ls;
|
||||||
zip -r lib-${buildUid}.zip Library -o /data/cache/${branchName}/
|
zip -r -q lib-${buildUid}.zip Library -o /data/cache/${branchName}/
|
||||||
zip -r build-${buildUid}.zip ${buildParameters.buildPath} -o /data/${buildUid}
|
zip -r -q build-${buildUid}.zip ${buildParameters.buildPath} -o /data/${buildUid}
|
||||||
`,
|
`,
|
||||||
],
|
],
|
||||||
'/data',
|
'/data',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue