From df1065218325a6f14767558b967ecc66384db388 Mon Sep 17 00:00:00 2001 From: Thad House Date: Thu, 14 Nov 2019 12:15:36 -0800 Subject: [PATCH] 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 --- myRobot/build.gradle | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/myRobot/build.gradle b/myRobot/build.gradle index a1f9a92a30..2e548f556b 100644 --- a/myRobot/build.gradle +++ b/myRobot/build.gradle @@ -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'