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'