cleanup
parent
0374e9c3f4
commit
b4e953ac86
|
|
@ -390,8 +390,8 @@ class AWS {
|
||||||
yield this.run(buildUid, buildParameters.awsStackName, 'amazon/aws-cli', ['/bin/sh'], [
|
yield this.run(buildUid, buildParameters.awsStackName, 'amazon/aws-cli', ['/bin/sh'], [
|
||||||
'-c',
|
'-c',
|
||||||
`
|
`
|
||||||
aws s3 cp ./build-${buildUid}.zip s3://game-ci-storage/${buildUid}.zip
|
aws s3 cp ./build-${buildUid}.zip s3://game-ci-storage
|
||||||
aws s3 cp ./cache/${branchName}/lib-${buildUid}.zip s3://game-ci-storage/lib-${buildUid}.zip
|
aws s3 cp ./cache/${branchName}/lib-${buildUid}.zip s3://game-ci-storage
|
||||||
rm -r ${buildUid}
|
rm -r ${buildUid}
|
||||||
ls
|
ls
|
||||||
`,
|
`,
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -1,3 +1,5 @@
|
||||||
|
/* eslint-disable unicorn/prevent-abbreviations */
|
||||||
|
|
||||||
// Import these named export into your test file:
|
// Import these named export into your test file:
|
||||||
export const mockProjectPath = jest.fn().mockResolvedValue('mockProjectPath');
|
export const mockProjectPath = jest.fn().mockResolvedValue('mockProjectPath');
|
||||||
export const mockIsDirtyAllowed = jest.fn().mockResolvedValue(false);
|
export const mockIsDirtyAllowed = jest.fn().mockResolvedValue(false);
|
||||||
|
|
|
||||||
|
|
@ -209,8 +209,8 @@ class AWS {
|
||||||
[
|
[
|
||||||
'-c',
|
'-c',
|
||||||
`
|
`
|
||||||
aws s3 cp ./build-${buildUid}.zip s3://game-ci-storage/${buildUid}.zip
|
aws s3 cp ./build-${buildUid}.zip s3://game-ci-storage
|
||||||
aws s3 cp ./cache/${branchName}/lib-${buildUid}.zip s3://game-ci-storage/lib-${buildUid}.zip
|
aws s3 cp ./cache/${branchName}/lib-${buildUid}.zip s3://game-ci-storage
|
||||||
rm -r ${buildUid}
|
rm -r ${buildUid}
|
||||||
ls
|
ls
|
||||||
`,
|
`,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue