2022-11-07 20:41:00 +00:00
|
|
|
import CloudRunner from '../cloud-runner';
|
|
|
|
import { BuildParameters, ImageTag } from '../..';
|
|
|
|
import UnityVersioning from '../../unity-versioning';
|
|
|
|
import { Cli } from '../../cli/cli';
|
|
|
|
import CloudRunnerLogger from '../services/cloud-runner-logger';
|
|
|
|
import { v4 as uuidv4 } from 'uuid';
|
|
|
|
import CloudRunnerOptions from '../cloud-runner-options';
|
|
|
|
import setups from './cloud-runner-suite.test';
|
|
|
|
import { CloudRunnerSystem } from '../services/cloud-runner-system';
|
|
|
|
|
|
|
|
async function CreateParameters(overrides) {
|
|
|
|
if (overrides) {
|
|
|
|
Cli.options = overrides;
|
|
|
|
}
|
|
|
|
|
|
|
|
return await BuildParameters.create();
|
|
|
|
}
|
|
|
|
|
|
|
|
describe('Cloud Runner pre-built S3 steps', () => {
|
|
|
|
it('Responds', () => {});
|
|
|
|
setups();
|
|
|
|
if (CloudRunnerOptions.cloudRunnerDebug && CloudRunnerOptions.cloudRunnerCluster !== `local-docker`) {
|
|
|
|
it('Run build and prebuilt s3 cache pull, cache push and upload build', async () => {
|
|
|
|
const overrides = {
|
|
|
|
versioning: 'None',
|
|
|
|
projectPath: 'test-project',
|
|
|
|
unityVersion: UnityVersioning.determineUnityVersion('test-project', UnityVersioning.read('test-project')),
|
|
|
|
targetPlatform: 'StandaloneLinux64',
|
|
|
|
cacheKey: `test-case-${uuidv4()}`,
|
|
|
|
customStepFiles: `aws-s3-pull-cache,aws-s3-upload-cache,aws-s3-upload-build`,
|
|
|
|
};
|
|
|
|
const buildParameter2 = await CreateParameters(overrides);
|
|
|
|
const baseImage2 = new ImageTag(buildParameter2);
|
|
|
|
const results2 = await CloudRunner.run(buildParameter2, baseImage2.toString());
|
|
|
|
CloudRunnerLogger.log(`run 2 succeeded`);
|
|
|
|
|
|
|
|
const build2ContainsBuildSucceeded = results2.includes('Build succeeded');
|
|
|
|
expect(build2ContainsBuildSucceeded).toBeTruthy();
|
|
|
|
|
|
|
|
const results = await CloudRunnerSystem.RunAndReadLines(
|
Cloud runner develop - better parameterization of s3 usage, improved async workflow and GC, github checks early integration (#479)
* custom steps may leave value undefined, will be pulled from env vars
* custom steps may leave value undefined, will be pulled from env vars
* custom steps may leave value undefined, will be pulled from env vars
* add 3 new premade steps, steam-deploy-client, steam-deploy-project, aws-s3-pull-build
* fix
* fix
* fix
* continue building async-workflow support
* test checks
* test checks
* test checks
* move github checks within build workflow
* async workflow test
* async workflow test
* async workflow test
* async workflow test
* async workflow test
* async workflow test
* async workflow test
* async workflow test for aws only
* async workflow test for aws only
* async workflow test for aws only
* async workflow test for aws only
* cleanup logging
* disable lz4 compression by default
* disable lz4 compression by default
* AWS BASE STACK for tests
* AWS BASE STACK for tests
* AWS BASE STACK for tests
* AWS BASE STACK for tests
* AWS BASE STACK for tests
* AWS BASE STACK for tests
* disable lz4 compression by default
* disable lz4 compression by default
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* Update github check with aws log
* kinesis and subscription filter for logs creation skipped when watchToEnd false
* kinesis and subscription filter for logs creation skipped when watchToEnd false
* kinesis and subscription filter for logs creation skipped when watchToEnd false
* kinesis and subscription filter for logs creation skipped when watchToEnd false
* kinesis and subscription filter for logs creation skipped when watchToEnd false
* kinesis and subscription filter for logs creation skipped when watchToEnd false
* kinesis and subscription filter for logs creation skipped when watchToEnd false
* kinesis and subscription filter for logs creation skipped when watchToEnd false
* kinesis and subscription filter for logs creation skipped when watchToEnd false
* kinesis and subscription filter for logs creation skipped when watchToEnd false
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* cleanup local pipeline, log aws formation
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* async pipeline
* workflow
* workflow
* workflow
* workflow
* workflow
* workflow
* workflow
* workflow
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
* parameterize s3
2023-01-20 17:40:57 +00:00
|
|
|
`aws s3 ls s3://${CloudRunner.buildParameters.awsBaseStackName}/cloud-runner-cache/${buildParameter2.cacheKey}/`,
|
2022-11-07 20:41:00 +00:00
|
|
|
);
|
|
|
|
CloudRunnerLogger.log(results.join(`,`));
|
|
|
|
}, 1_000_000_000);
|
|
|
|
}
|
|
|
|
});
|