Skip to content

Commit db55c96

Browse files
committed
shorten max runtime to 2 hours
1 parent 8bc1a3e commit db55c96

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

cdk-project/lib/images/codebuild-image/python/src/sagemakerci/run_notebook.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ def execute_notebook(
195195
"VolumeSizeInGB": 40,
196196
}
197197
},
198-
"StoppingCondition": {"MaxRuntimeInSeconds": 28800},
198+
"StoppingCondition": {"MaxRuntimeInSeconds": 7200},
199199
"AppSpecification": {
200200
"ImageUri": image,
201201
"ContainerArguments": [

cdk-project/lib/projects.ts

+3-2
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ export const projects: Project[] = [
99
new Project({
1010
repo: Constants.exampleNotebooksRepo,
1111
computeType: codebuild.ComputeType.LARGE,
12-
timeout: Duration.minutes(480),
12+
timeout: Duration.minutes(120),
1313
releaseBuildSpec: buildspecs.createFullRepoScanBuildSpec(),
1414
deployBuildSpec: buildspecs.createRepoScanResultsBuildSpec(),
15+
enableAutomaticRelease: true,
1516
releasePipelineScheduleExpression: "cron(0 0 ? * SUN *)",
1617
additionalBuildProjects: [
1718
// new Build({
@@ -30,7 +31,7 @@ export const projects: Project[] = [
3031
new Project({
3132
repo: "amazon-sagemaker-examples-staging",
3233
computeType: codebuild.ComputeType.LARGE,
33-
timeout: Duration.minutes(480),
34+
timeout: Duration.minutes(120),
3435
enableReleaseBuild: false,
3536
additionalBuildProjects: [
3637
// new Build({

0 commit comments

Comments
 (0)