This repository was archived by the owner on Nov 27, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
69 lines (54 loc) · 2.03 KB
/
build.gradle
File metadata and controls
69 lines (54 loc) · 2.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Groovy project to get you started.
* For more details take a look at the Groovy Quickstart chapter in the Gradle
* User Manual available at https://docs.gradle.org/6.0.1/userguide/tutorial_groovy_projects.html
*/
plugins {
// Apply the groovy plugin to add support for Groovy
id 'groovy'
// Apply the java-library plugin for API and implementation separation.
id 'java-library'
// aplication plugin for the CLI
id 'application'
}
repositories {
// Use jcenter for resolving dependencies.
// You can declare any Maven/Ivy/file repository here.
jcenter()
}
dependencies {
// Use the latest Groovy version for building this library
compileOnly 'org.codehaus.groovy:groovy:2.5.8'
testImplementation 'org.codehaus.groovy:groovy:2.5.8'
// Use the awesome Spock testing and specification framework
testImplementation 'org.spockframework:spock-core:1.3-groovy-2.5'
// env based test
testImplementation 'com.github.stefanbirkner:system-rules:1.19.0'
// loading enb properties
testImplementation 'com.agorapulse.testing:fixt:0.1.3'
// parsing stored env properties
testImplementation 'org.yaml:snakeyaml:1.25'
}
task printEnvs() {
doLast {
final List<String> SKIP_WORDS = ['TOKEN', 'KEY', 'PASSWORD', 'SECRET']
System.getenv().each {
String value = it.value
if (SKIP_WORDS.any { word -> it.key.contains(word) }) {
value = UUID.randomUUID().toString()
}
println "${it.key.padRight(30)}: $value"
}
if (System.getenv('GITHUB_EVENT_PATH')) {
println 'github event:'
println new File(System.getenv('GITHUB_EVENT_PATH')).text
}
if (System.getenv('TEAMCITY_BUILD_PROPERTIES_FILE')) {
println 'teamcity properties:'
println new File(System.getenv('TEAMCITY_BUILD_PROPERTIES_FILE')).text
}
}
}
build.dependsOn printEnvs