mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-06 03:31:43 +00:00
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:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user