cleanup
parent
3030015938
commit
1721529981
|
@ -43,16 +43,16 @@ jobs:
|
||||||
test:
|
test:
|
||||||
#- 'cloud-runner-async-workflow'
|
#- 'cloud-runner-async-workflow'
|
||||||
- 'cloud-runner-caching'
|
- 'cloud-runner-caching'
|
||||||
- 'cloud-runner-end2end-caching'
|
# - 'cloud-runner-end2end-caching'
|
||||||
- 'cloud-runner-end2end-retaining'
|
# - 'cloud-runner-end2end-retaining'
|
||||||
- 'cloud-runner-environment'
|
- 'cloud-runner-environment'
|
||||||
#- 'cloud-runner-hooks'
|
#- 'cloud-runner-hooks'
|
||||||
- 'cloud-runner-local-persistence'
|
- 'cloud-runner-local-persistence'
|
||||||
- 'cloud-runner-locking'
|
# - 'cloud-runner-locking'
|
||||||
cloudRunnerCluster:
|
cloudRunnerCluster:
|
||||||
- aws
|
- aws
|
||||||
- local-docker
|
- local-docker
|
||||||
#- k8s
|
- k8s
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout (default)
|
- name: Checkout (default)
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
|
|
@ -4972,7 +4972,7 @@ class CloudRunnerCustomSteps {
|
||||||
catch (error) {
|
catch (error) {
|
||||||
remote_client_logger_1.RemoteClientLogger.log(`Failed Getting: ${hookLifecycle} \n ${JSON.stringify(error, undefined, 4)}`);
|
remote_client_logger_1.RemoteClientLogger.log(`Failed Getting: ${hookLifecycle} \n ${JSON.stringify(error, undefined, 4)}`);
|
||||||
}
|
}
|
||||||
remote_client_logger_1.RemoteClientLogger.log(`Active Steps From Files: \n ${JSON.stringify(results, undefined, 4)}`);
|
// RemoteClientLogger.log(`Active Steps From Files: \n ${JSON.stringify(results, undefined, 4)}`);
|
||||||
const builtInCustomSteps = CloudRunnerCustomSteps.ParseSteps(`- name: aws-s3-upload-build
|
const builtInCustomSteps = CloudRunnerCustomSteps.ParseSteps(`- name: aws-s3-upload-build
|
||||||
image: amazon/aws-cli
|
image: amazon/aws-cli
|
||||||
hook: after
|
hook: after
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -7,7 +7,6 @@ import path from 'path';
|
||||||
import * as fs from 'fs';
|
import * as fs from 'fs';
|
||||||
import Input from '../../input';
|
import Input from '../../input';
|
||||||
import CloudRunnerOptions from '../cloud-runner-options';
|
import CloudRunnerOptions from '../cloud-runner-options';
|
||||||
import CloudRunnerLogger from './cloud-runner-logger';
|
|
||||||
import { CustomStep } from './custom-step';
|
import { CustomStep } from './custom-step';
|
||||||
|
|
||||||
export class CloudRunnerCustomSteps {
|
export class CloudRunnerCustomSteps {
|
||||||
|
@ -34,7 +33,8 @@ export class CloudRunnerCustomSteps {
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
RemoteClientLogger.log(`Failed Getting: ${hookLifecycle} \n ${JSON.stringify(error, undefined, 4)}`);
|
RemoteClientLogger.log(`Failed Getting: ${hookLifecycle} \n ${JSON.stringify(error, undefined, 4)}`);
|
||||||
}
|
}
|
||||||
RemoteClientLogger.log(`Active Steps From Files: \n ${JSON.stringify(results, undefined, 4)}`);
|
|
||||||
|
// RemoteClientLogger.log(`Active Steps From Files: \n ${JSON.stringify(results, undefined, 4)}`);
|
||||||
|
|
||||||
const builtInCustomSteps: CustomStep[] = CloudRunnerCustomSteps.ParseSteps(
|
const builtInCustomSteps: CustomStep[] = CloudRunnerCustomSteps.ParseSteps(
|
||||||
`- name: aws-s3-upload-build
|
`- name: aws-s3-upload-build
|
||||||
|
|
Loading…
Reference in New Issue