Remove release configs of deploy in MyRobot (#2082)

Bug in lower level library causes having both be broken. So for now just removed release.

Issue created in low level library to fix
This commit is contained in:
Thad House
2019-11-14 12:15:36 -08:00
committed by GitHub
parent bf5388393e
commit df10652183

View File

@@ -69,16 +69,6 @@ deploy {
}
nativeArtifact('myRobotCppRelease') {
component = 'myRobotCpp'
targetPlatform = nativeUtils.wpi.platforms.roborio
libraryDirectory = '/usr/local/frc/third-party/lib'
buildType = 'release'
postdeploy << { ctx ->
ctx.execute('chmod +x myRobotCpp')
}
}
nativeArtifact('myRobotCppStatic') {
component = 'myRobotCppStatic'
targetPlatform = nativeUtils.wpi.platforms.roborio
@@ -88,15 +78,6 @@ deploy {
ctx.execute('chmod +x myRobotCppStatic')
}
}
nativeArtifact('myRobotCppStaticRelease') {
component = 'myRobotCppStatic'
targetPlatform = nativeUtils.wpi.platforms.roborio
buildType = 'release'
postdeploy << { ctx ->
ctx.execute('chmod +x myRobotCppStatic')
}
}
}
}
@@ -114,15 +95,6 @@ tasks.register('deployStatic') {
dependsOn tasks.named('deployMyRobotCppStaticRoborio')
}
tasks.register('deployReleaseShared') {
dependsOn tasks.named('deployMyRobotCppReleaseLibrariesRoborio')
dependsOn tasks.named('deployMyRobotCppReleaseRoborio')
}
tasks.register('deployReleaseStatic') {
dependsOn tasks.named('deployMyRobotCppReleaseStaticRoborio')
}
mainClassName = 'Main'
apply plugin: 'com.github.johnrengelman.shadow'