@@ -21,7 +21,7 @@ import java.lang.annotation.RetentionPolicy
21
21
/* *
22
22
* @return target directory of CloudGradle-report (this defaults to 'target' directory)
23
23
*/
24
- val reportTargetDir : String = " " ,
24
+ val reportTargetDir : String = " build/cloudgradle " ,
25
25
/* *
26
26
* @return the Cucumber options
27
27
*/
@@ -30,7 +30,7 @@ import java.lang.annotation.RetentionPolicy
30
30
/* *
31
31
* @return the name of the CodeBuild project
32
32
*/
33
- val projectName : String = " " ,
33
+ val projectName : String = " cloudgradle-runners " ,
34
34
35
35
/* *
36
36
* @return the arn to the AWS IAM service role to run the codebuild jobs
@@ -40,12 +40,12 @@ import java.lang.annotation.RetentionPolicy
40
40
/* *
41
41
* @return the name of the docker image to run the job on (/aws/codebuild or docker hub or ECR)
42
42
*/
43
- val image : String = " " ,
43
+ val image : String = " albelli/aws-codebuild-docker-images:java-openjdk-8-chromedriver " ,
44
44
45
45
/* *
46
46
* @return the type of the CodeBuild instance to use
47
47
*/
48
- val computeType : String = " " ,
48
+ val computeType : String = " BUILD_GENERAL1_SMALL " ,
49
49
50
50
/* *
51
51
* @return the name of the bucket to put the jar and artifacts in
@@ -54,15 +54,15 @@ import java.lang.annotation.RetentionPolicy
54
54
/* *
55
55
* @return the folder within the bucket to put the jar in
56
56
*/
57
- val bucketSourceFolder : String = " " ,
57
+ val bucketSourceFolder : String = " cloudgradle/source-dir/ " ,
58
58
/* *
59
59
* @return the folder within the bucket to put artifacts in
60
60
*/
61
- val bucketOutputFolder : String = " " ,
61
+ val bucketOutputFolder : String = " cloudgradle/artifacts/ " ,
62
62
/* *
63
63
* @return the name of the zipped artifacts file
64
64
*/
65
- val outputFileName : String = " "
65
+ val outputFileName : String = " runResults.zip "
66
66
67
67
)
68
68
{
0 commit comments