fix
parent
b663c25ec1
commit
bf8de86954
|
|
@ -2343,9 +2343,9 @@ class RemoteBuilder {
|
||||||
core.info('Starting step 4/4 upload build to s3');
|
core.info('Starting step 4/4 upload build to s3');
|
||||||
yield this.RemoteBuilderProviderPlatform.runBuildTask(this.buildId, 'amazon/aws-cli', [
|
yield this.RemoteBuilderProviderPlatform.runBuildTask(this.buildId, 'amazon/aws-cli', [
|
||||||
`
|
`
|
||||||
aws s3 cp ${this.buildId}/build-${this.buildId}.zip s3://game-ci-storage/
|
aws s3 cp ${this.buildId}/build-${this.buildId}.zip "s3://${this.buildParams.awsBaseStackName}/"
|
||||||
# no need to upload Library cache for now
|
# no need to upload Library cache for now
|
||||||
# aws s3 cp "/${buildVolumeFolder}/${cacheFolder}/$branch/lib-${this.buildId}.zip" "s3://game-ci-storage/"
|
# aws s3 cp "/${buildVolumeFolder}/${cacheFolder}/$branch/lib-${this.buildId}.zip" "s3://${this.buildParams.awsBaseStackName}/"
|
||||||
${this.SteamDeploy ? '#' : ''} rm -r ${this.buildId}
|
${this.SteamDeploy ? '#' : ''} rm -r ${this.buildId}
|
||||||
`,
|
`,
|
||||||
], `/${buildVolumeFolder}`, `/${buildVolumeFolder}/`, RemoteBuilder.readUploadArtifactEnvironmentVariables(), RemoteBuilder.readUploadArtifactsSecrets());
|
], `/${buildVolumeFolder}`, `/${buildVolumeFolder}/`, RemoteBuilder.readUploadArtifactEnvironmentVariables(), RemoteBuilder.readUploadArtifactsSecrets());
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -206,9 +206,11 @@ class RemoteBuilder {
|
||||||
'amazon/aws-cli',
|
'amazon/aws-cli',
|
||||||
[
|
[
|
||||||
`
|
`
|
||||||
aws s3 cp ${this.buildId}/build-${this.buildId}.zip s3://game-ci-storage/
|
aws s3 cp ${this.buildId}/build-${this.buildId}.zip "s3://${this.buildParams.awsBaseStackName}/"
|
||||||
# no need to upload Library cache for now
|
# no need to upload Library cache for now
|
||||||
# aws s3 cp "/${buildVolumeFolder}/${cacheFolder}/$branch/lib-${this.buildId}.zip" "s3://game-ci-storage/"
|
# aws s3 cp "/${buildVolumeFolder}/${cacheFolder}/$branch/lib-${this.buildId}.zip" "s3://${
|
||||||
|
this.buildParams.awsBaseStackName
|
||||||
|
}/"
|
||||||
${this.SteamDeploy ? '#' : ''} rm -r ${this.buildId}
|
${this.SteamDeploy ? '#' : ''} rm -r ${this.buildId}
|
||||||
`,
|
`,
|
||||||
],
|
],
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue