-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathairgap.gradle
32 lines (28 loc) · 2.08 KB
/
airgap.gradle
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
final String airGapFolder = "${buildDir}/airgap"
final String airGapZipName = "${project.name}-${version}-air-gap.zip"
final String artifactoryIntegrationPath = "com/blackduck/integration"
task pullSaveInspectorImages() {
doLast {
exec { commandLine 'mkdir', '-p', "${airGapFolder}" }
exec { commandLine 'docker', 'pull', "blackducksoftware/${project.ext.inspectorImageFamily}-ubuntu:${project.ext.inspectorImageVersion}" }
exec { commandLine 'docker', 'save', '-o', "${airGapFolder}/${project.ext.inspectorImageFamily}-ubuntu.tar", "blackducksoftware/${project.ext.inspectorImageFamily}-ubuntu:${project.ext.inspectorImageVersion}" }
exec { commandLine 'docker', 'pull', "blackducksoftware/${project.ext.inspectorImageFamily}-centos:${project.ext.inspectorImageVersion}" }
exec { commandLine 'docker', 'save', '-o', "${airGapFolder}/${project.ext.inspectorImageFamily}-centos.tar", "blackducksoftware/${project.ext.inspectorImageFamily}-centos:${project.ext.inspectorImageVersion}" }
exec { commandLine 'docker', 'pull', "blackducksoftware/${project.ext.inspectorImageFamily}-alpine:${project.ext.inspectorImageVersion}" }
exec { commandLine 'docker', 'save', '-o', "${airGapFolder}/${project.ext.inspectorImageFamily}-alpine.tar", "blackducksoftware/${project.ext.inspectorImageFamily}-alpine:${project.ext.inspectorImageVersion}" }
}
}
task createAirGapZip(type: Zip, dependsOn: [build, pullSaveInspectorImages]) {
from("${buildDir}/libs") { include "${project.name}-${version}.jar" }
from("${airGapFolder}") { include '*.tar' }
archiveName("${airGapZipName}")
destinationDir(file("${airGapFolder}"))
}
task publishAirGapZip() {
dependsOn createAirGapZip
doLast {
exec {
commandLine 'curl', '--insecure','-u', "${project.ext.artifactoryDeployerUsername}:${project.ext.artifactoryDeployerPassword}", '-X', 'PUT', "${project.ext.deployArtifactoryUrl}/${project.ext.artifactoryRepo}/${artifactoryIntegrationPath}/${project.name}/${version}/${airGapZipName}", '-T', "${airGapFolder}/${airGapZipName}", '-f'
}
}
}